Application Development 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: 

Standard Program enhancement

Former Member
0 Kudos

Hi Experts,

I have a requirement where in i need to grey out a seelction screen field.

its a standard program, the first selection screen has few push buttons, the click on a push button calls a another selection screen, i need to grey out a field in second selection screen.

module pool programming is not used, submit is used to call the another program.

kindly guide me on this.

thanks in advance.

regards,

Kushala

2 REPLIES 2

SandySingh
Active Contributor
0 Kudos

Hello

You can use implicit enhancement in both programs. In first program just set the memory ID  and in second program read the memory ID and use the following code

AT SELECTION-SCREEN OUTPUT.

loop at screen.

IF screen-name = 'FIELD' .

screen-input = 0.

screen-output = 0.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

Regards

Sandy

0 Kudos

Hi Sandy,

I have tried at selection screen, it is not working.

the selection program has a weird name "GP4ACJBHYCXXLA0W26URPFYNJNB".