‎2007 Jun 07 7:15 AM
HOW TO ENABLE / DISABLE THE TEXT BOX BY CODING HAS BEEN CREATED IN SCREEN PAINTER WITH THE PROPERTY CONDITION "NOT POSSIBALE " IN THE LAYOUT IN SCREEN PAINTER AND I NEED TO ENABLE THAT TEXT BOX WHILE RUN TIME. PLS GIVE AN EXAMPLE CODING.......
‎2007 Jun 07 7:18 AM
‎2007 Jun 07 7:25 AM
hi,
We can do Screen modifications in Module pool program which is processed during the PBO Event.
process before output.
module modify_screen output.
module modify_screen. "this we write in module pool program.
loop at screen.
if screen-name = <field name which is going to disable>.
here u write logic for condition based on we can change
screen-input =0/1. "0->disable for input . 1->for enabling
screen-output =0/1. "0->disable for input . 1->for enabling
endif.
modify screen.
endloop.
the screen is the system genarated internal table it holds the attributes of each and every screen fields.
regards,
sudheer.