Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Condition on screen field

Former Member
0 Likes
690

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.

4 REPLIES 4
Read only

Former Member
0 Likes
570

Hi,

Find some user exist to acheive the requirement or let me know the transaction code?

Regards

Thirupathy

Read only

0 Likes
570

Tcodes for which changes need to be done are QM01, QM02, QM03.

Thanks.

Read only

Former Member
0 Likes
570

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

Read only

tarangini_katta
Active Contributor
0 Likes
570

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