2014 Sep 08 10:35 AM
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
2014 Sep 08 11:50 AM
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
2014 Sep 08 12:17 PM
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
2014 Sep 08 1:31 PM
2014 Sep 08 1:47 PM
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