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: 

how to modify subscreen in Main screen PBO

Former Member
0 Kudos

Hi,

i have to disable one of header fields in IW22 transaction. this is Priority field in Header Tab. actually i did not find any exit where i can modify this field. there are exits available where i can modify the main screen which is 7200 of program SAPLIQS0.

but my field is on subscreen 7330.

is there any way we can modify subscreen from main screen PBO or can we do dynamic modification of any screen outside its PBO.

thanks

Rajpal

3 REPLIES 3

Former Member
0 Kudos

Did you look at using SHDO?

There is a screen control in config as well.

0 Kudos

we cannot use SHDO because we have certain conditions based on which we want to disable the field. SHDO will disable the field globally.

sorry i did not mention it earlier.

thanks

Rajpal Sehrawat

0 Kudos

Hi,

The best possible solution is to use Implicit Enhancement options . Goto the subscreen flowlogic and find the PBO module where the screen properties are modified and by using Implicit enhancement options, hide the required field as follows .

loop at screen.
      if screen-name = ' FIELD' .
            SCREEN-INPUT = 0.
            MODIFY SCREEN.  
      ENDIF.
   ENDLOOP .

Regards,

S.Sivakumar