Application Development and Automation 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: 

Table control becomes invisible on screen when itab is empty

madhura_lobo
Product and Topic Expert
Product and Topic Expert
0 Kudos
292

Hi,

The table control used in a dynpro becomes invisible when the itab associated with it is empty. This was not happening before. Something has changed in system that is causing this behavior. But cannot figure out what that could be. Anybody else faced any issue like this, and was resolved, please help by giving some pointers.

Regards,

Madhura Lobo

4 REPLIES 4

Former Member
0 Kudos
248

There is some check in your system when the internal table is empty, are you sure that the table control appears when the table is not empty?

Try to find something like this:

loop at screen.

IF SCREEN-NAME = 'Table_control_name'.

SCREEN-ACTIVE = '0'.

SCREEN-INVISIBLE = '1'.

MODIFY SCREEN.

ENDIF.

Regards,

Felipe

madhura_lobo
Product and Topic Expert
Product and Topic Expert
0 Kudos
248

Hi,

Yes, when there is data in itab the tablecontrol appears.

Thanks for clue. but there is no such coding in the program I am looking at.

Regards,

Madhura Lobo

0 Kudos
248

Is it a standard or custom development?

Regards,

Felipe

former_member183072
Active Participant
0 Kudos
248

Hi,

Try to look in your screen(In your PBO module) to see a condition like:

If  itab is initial. 

.."Hide table control

endif.

If not.. no ideea..

Regards,

Hancila