fc.oms.mystique.inventory.search.virtual.position.stock.statuses
Changed on:
17 Jan 2025
Setting Area | UI component |
---|---|
Supported context levels: | ACCOUNT, RETAILER |
Overview
The `fc.oms.mystique.inventory.search.virtual.position.stock.statuses`
is a configuration that defines the available statuses for the Virtual Stock Status Filter on the Search page. This allows users to filter virtual positions based on predefined status options.
Values
Data Type | Values |
---|---|
JSON |
|
Detailed technical description
The statuses specified in the setting are tailored to the reference and serve as an example. These values should be updated to align with the specific requirements and workflows, ensuring the filter reflects relevant statuses in their operational context.
Configuration example
1POST {{fluentApiHost}}/graphql
2
3mutation CreateSetting {
4 createSetting(input: {
5 name: "fc.oms.mystique.inventory.search.virtual.position.stock.statuses",
6 valueType: "JSON",
7 lobValue:$lobValue ,
8 context: "RETAILER",
9 contextId:$retailerId}) {
10 id
11 name
12 }
13}
14
15GraphQL variables:
16{
17 "retailerId": {{retailer_id}},
18 "lobValue" : [
19 "CREATED",
20 "INACTIVE",
21 "ACTIVE",
22 "AT_RISK",
23 "OUT_OF_STOCK"
24]
25}
26