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: 

greying out fields added to Customer Screen when calling CO03

Former Member
0 Kudos

I have added a custom field to the Customer Screen of CO01/02/03 using the the User Exits available in Enhancement PPCO0012.

However no matter where or how I try to modify SCREEN-INPUT to grey out the field in Display mode it does not work.

Has anybody any tips or tricks to do this ?

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Not sure if this will work. But: check the modification ID (group 1..4 ) of other fields and apply that to your own field.

Edit: and maybe you're forgetting the modify screen?

Edited by: Maen Anachronos on Oct 15, 2008 12:49 PM

5 REPLIES 5

Former Member
0 Kudos

Not sure if this will work. But: check the modification ID (group 1..4 ) of other fields and apply that to your own field.

Edit: and maybe you're forgetting the modify screen?

Edited by: Maen Anachronos on Oct 15, 2008 12:49 PM

0 Kudos

Good suggestions, however modify is not the problem and I have tried various tinkering with the Groups 1 to 4 but no joy so far !

0 Kudos

in the PBO of the screen include a module to modify the screen elements properties based on the Tcode. this will work.

former_member15255
Active Participant
0 Kudos

Hello,

First go to the PBO module of the customer subscreen check for the data in aktyp and follow the below code.

CASE aktyp.

WHEN 'V' OR 'H'.

screen-input = '1'. "==> this will set to change

WHEN 'A'.

screen-input = '0'. "==> this will set to display

ENDCASE.

regards

Suresh Nair

0 Kudos

I can set screen-input = 0 in both a PBO module created as part of the screen exit ( INCLUDE ZXCO1O01 ) or in INCLUDE ZXCO1U11 which is also called pre screen display and in both cases the screen isn't greyed out.