2009 Jan 12 10:02 AM
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
2009 Jan 12 11:26 AM
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
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |