LineItemInputs: QuoteLineItemInputs | ContractLineItemInputs | RebateAgreementLineItemInputs | CompensationPlanLineItemInputs

Example: List of new items for a Quote in Groovy logic

targetPageItemsInputs: [
// Quote line items with input values
[
sku : "B-0001",
ProdClassAdj: "C" // Input type LOOKUP
],
[sku: "B-0003"],
[
sku : "B-0005",
Configuration: [ // Input type CONFIGURATOR
"How Many Input Blocks?": 1,
"String Default Value" : "Test targetPageItemsInputs",
"PRODUCT #0" : "B-0029"
]
]
]

Example: List of new items for Agreements & Promotions Condition Type in Groovy logic

targetPageItemsInputs: [
[
contractTermType: "PromotionDiscount",
inputName : "inputValue"
],
[
// another item
]

Generated using TypeDoc