‎2006 Aug 22 8:20 AM
Hi SDN's,
i clear the value of field on my screen which is under chain endchain. the field is ZES_RFQ-ST_JOBNO, but it gets its old value when it executes the field statement.
chain.
field: ZES_RFQ-ST_EQUIP,
ZES_RFQ-ST_FUNCT_LOC,
<b> ZES_RFQ-ST_JOBNO.</b>
module GET_DATA_STEQ.
endchain.
y is it happening.
Thanks
Gopi
‎2006 Aug 22 10:14 AM
hi
good
clear that particular value before it use
ZES_RFQ-ST_EQUIP,
ZES_RFQ-ST_FUNCT_LOC,
CLEAR ZES_RFQ-ST_JOBNO.
ZES_RFQ-ST_JOBNO.
TRY WITH THIS , IT WILL WORK.
THANKS
MRUTYUN
‎2006 Aug 22 8:30 AM
Hello,
Change your statement like,
chain.
field: ZES_RFQ-ST_EQUIP,
ZES_RFQ-ST_FUNCT_LOC,
ZES_RFQ-ST_JOBNO.
module GET_DATA_STEQ <b>ON CHAIN-REQUEST</b>.
endchain.
‎2006 Aug 22 8:34 AM
i use tab strips and in sub screen, i have some fields to be displayed based on some validations, but if i chagne the values in main screen the sub screen values remain the same, how do i solve it? urgent please?
‎2006 Aug 22 8:41 AM
‎2006 Aug 22 10:14 AM
hi
good
clear that particular value before it use
ZES_RFQ-ST_EQUIP,
ZES_RFQ-ST_FUNCT_LOC,
CLEAR ZES_RFQ-ST_JOBNO.
ZES_RFQ-ST_JOBNO.
TRY WITH THIS , IT WILL WORK.
THANKS
MRUTYUN