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: 

Add New groups in Screen (All groups are utilised)

former_member194669
Active Contributor
0 Kudos

Hi All,

I know this is not possible , I am expecting some other possible solution.

I have module pool screen with 5 fields. For all these five field i have maintained group values ( screen field parameter screen) , I have already utilitised all 4 group values Right now i need to assign 7 more group values to all fields in the screen. ( each i have to assign 7 more)

How could i do this?

aRs

1 ACCEPTED SOLUTION

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

This is simply not possible and the work around or solution is a better UI design, not much else.

Regards,

Rich Heilman

3 REPLIES 3

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

This is simply not possible and the work around or solution is a better UI design, not much else.

Regards,

Rich Heilman

Former Member
0 Kudos

Hi

U can create an internal table with two fields:

- One for the group number

- One for the fieldname

So u can fill this table in order to manage new groups:

So in PBO:

  MODULE LOOP_SCREEN.
    LOOP AT SCREEN.
       LOOP AT T_GROUP WHERE NAME = SCREEN-NAME.
          IF T_GROUP-GROUP = ......
             SCREEN-INPUT = 0.
          ENDIF.
       ENDLOOP.
      MODIFY SCREEN. 
   ENDLOOP.

Max

former_member194669
Active Contributor
0 Kudos

No stright solution. I will take roundaway solution as suggested by MAX