Hi All.
I have two screen ,initial screen selection screen 1000 next screen dialogue screen 101.it (101) has one application tool bar like "ELECT",i want deactive application toolbar depending upon condition.example 4 input field in selection screen like 1,Name 2,Age,3Gender ,4Place. if user enter more then 18 old i will allow to active application tool bar in screen 101,if user enter input below 18 in selection screen ,i will deactive application tool bar.
please help me
regards.
Jay
declare itab
data : BEGIN OF iTAB occurs 0,
FCODE LIKE RSMPE-FUNC,
END OF iTAB.
append the fcodes you dont want to show in itab.
in PBO of your screen 101 just define
module status output.
if age ge 18.
set pf-status 'ELEC'.
else.
set pf-status 'ELEC' excluding itab.
endif.
endmodule.
regards
shiba dutta
or just create another pf status for lt 18 age.
Add a comment