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

ABAP QUERY

Former Member
0 Likes
374

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.......

2 REPLIES 2
Read only

Former Member
0 Likes
349

Hi Krishna Moorthy,

Check this link,

Thanks.

Read only

Former Member
0 Likes
349

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.