I have set up a repeat region in a BOM table and need to generate a 'customised' QTY column.
I need to show the following:
Bulk item quantities must be able to be shown as either:
"A/R" or BOM_REPORT_QUANTITY (user input value)
All other parts/assembles must show as:
rpt_qty
I have tried to create a repeat parameter called my_qty based on the following relation but it isn't doing what I need. Any help would be greatfully recieved.
-----------------------------------------------------
Notes:
BLANKQTYis a YES/NO parameter set in the bulk item
BOM_REPORT_QUANTITY parameter is set in the bulk item as user input
-----------------------------------------------------
IF asm_mbr_type == "BULK ITEM"
IF BLANKQTY==yes
my_qty="a/r"
ELSE
my_qty=rpt_qty
ENDIF
ELSE
my_qty=rpt_qty
ENDIF
------------------------------------------------
I need to show the following:
Bulk item quantities must be able to be shown as either:
"A/R" or BOM_REPORT_QUANTITY (user input value)
All other parts/assembles must show as:
rpt_qty
I have tried to create a repeat parameter called my_qty based on the following relation but it isn't doing what I need. Any help would be greatfully recieved.
-----------------------------------------------------
Notes:
BLANKQTYis a YES/NO parameter set in the bulk item
BOM_REPORT_QUANTITY parameter is set in the bulk item as user input
-----------------------------------------------------
IF asm_mbr_type == "BULK ITEM"
IF BLANKQTY==yes
my_qty="a/r"
ELSE
my_qty=rpt_qty
ENDIF
ELSE
my_qty=rpt_qty
ENDIF
------------------------------------------------