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: 

Make a suppressed field appear on selection screen using Report Category

agnihotro_sinha2
Active Contributor
0 Kudos

hi all,

I am using an HR Report Category to display LDb selection on selection screen.

Now the requirement is to make 1 field appear on Selection screen which has been suppressed in HR Report category.

I am trying hard to make SCREEN Fields active in event AT SELECTION SCREEN OUTPUT.

But still this field is not coming up properly on the selection screen. Part of the Field is coming without text and Push button.

Main motif is to make a hidden field appear on selection screen. I saw in debugging that for this field SCREEN-INVISIBLE has been set to '1'. I made this as '0' but still its not showing up properly.

Is there any other parameters which i have to take care while modifying SCREEN ??

ags.

1 REPLY 1

Former Member
0 Kudos

Hi,

In the Screen, assign some group to the fields those you don't want to show initial.

in the PBO use below code to hide.

loop at screen.

if screen-group1 = 'XXXX'. "Group name

SCREEN-ACTIVE = '0' "1=Active, 0=Don't display

MODIFY screen.

endif.

endloop.

thanks,

Edited by: AD on Dec 16, 2009 12:03 PM