‎2009 May 20 11:58 AM
Hi all,
I need to put a condition on screen field. If notification type is ZA (VIQMEL-QMART) then field-label for VIQMEL-BZMNG should be rej.qty and for others it should display del.qty. Please give me solution how can i acheive it. I can change screen layout.
Thanks in advance.
Sadhna Achhra.
‎2009 May 20 12:03 PM
Hi,
Find some user exist to acheive the requirement or let me know the transaction code?
Regards
Thirupathy
‎2009 May 20 12:06 PM
Tcodes for which changes need to be done are QM01, QM02, QM03.
Thanks.
‎2009 May 20 12:17 PM
HI Sadhna,
Add a module in the PBO. Create two lables like 'REJ_QTY' and DEL_QTY .
Inside the module use the following logic.
loop at screen.
if screen-name = 'REJ_QTY'.
if VIQMEL-QMART EQ 'ZA'.
screen-invisible = '0'.
else.
screen.invisible = '1'.
endif.
endif.
if screen-name = 'DEL_QTY'.
if VIQMEL-QMART EQ 'ZA'.
screen-invisible = '1'.
else.
screen.invisible = '0'.
endif.
endif.
endif.
modify screen.
endloop.
hope this will solve yopuir problem
regards
Amarendra
‎2009 May 20 12:26 PM
Hi sadhana,
use this exit.This may help u.
enahncement QQMA0014
EXIT_SAPMIWO0_020
Thanks
Edited by: tarangini katta on May 20, 2009 1:26 PM