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

info abt table control

Former Member
0 Likes
333

hi

i had an iusse in TC.like there is a screen 100 called for 2-3 options, a TC is displyed for saving data with 3 fileds:matnr,maktx,mtart.but in one option,only on screen matnr & maktx are filled & saved,so i want during this option the 2 fileds shd disply in TC,1 field mtart shd be hidden,only for this selected option,rest to be displayed with other options.

please tell me how to do this?what shd i write in PBO to hide the particular field during this option only.

regds

hi

i had an iusse in TC.like there is a screen 100 called for 2-3 options, a TC is displyed for saving data with 3 fileds:matnr,maktx,mtart.but in one option,only on screen matnr & maktx are filled & saved,so i want during this option the 2 fileds shd disply in TC,1 field mtart shd be hidden,only for this selected option,rest to be displayed with other options.

please tell me how to do this?what shd i write in PBO to hide the particular field during this option only.

regds

1 REPLY 1
Read only

Former Member
0 Likes
312

You can write the below logic in PBO which we generally write in AT SELECTION-SCREEN OUTPUT event. Please write your own piece of business logic to make the fields input enabled, disabled, hidden.. etc..

loop at screen.

if screen-name eq 'XYZ'.

........

else.

........

endif.

modify screen.

endloop.

Hope this helps.

RSS