cancel
Showing results for 
Search instead for 
Did you mean: 

Hide fields of standard infotype using T588M .

Former Member
0 Kudos

Dear Experts  ,

In a standard infotype screen i have two fields in same group , Now when i go to T588M to hide one of these fileds  , i am not able to .

In t588m there are no radio buttons in front of one of the fields which i want to hide , but its there for the other one which belongs to the same group .

Is there  any way to hide one of the field while display the other one ,both belonging to same  group ??

Regards~

Gaurav

Accepted Solutions (0)

Answers (1)

Answers (1)

JonathanM
Contributor
0 Kudos

Hi,

This depends on which screen/module pool you're working on but on standard ones, you should not change the groupings because this means that those fields are "working/acting" together...

If you're working on customer enhancement, you can change the grouping.

The workaround would be to program in the ZXPADU01, some logic defaulting the requested screen elements. But the pay attention if you're in edition, display etc

Something like:

LOOP AT SCREEN.

     IF SCREEN-GROUP3 = "XXX" AND SCREEN-NAME = "YYY".

          SCREEN-INPUT = 0.

          SCREEN INVISIBLE = 1.

          ...

          MODIFY SCREEN.

     ENDIF.

ENDLOOP.

Best regards,

Jonathan