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: 
Read only

picture visibility in module pool

Former Member
0 Likes
627

hello ppl.

i have developed a program using module pool. i have displayed a logo on the initial screen using the class CL_GUI_PICTURE. i require to hide this logo or make it invisible on the next screen, but should always be displayed on the initial screen. i tried using SET_VISIBLE method, but its not working.

pls gimme some suggestions .

thnks...

hello ppl.

i have developed a program using module pool. i have displayed a logo on the initial screen using the class CL_GUI_PICTURE. i require to hide this logo or make it invisible on the next screen, but should always be displayed on the initial screen. i tried using SET_VISIBLE method, but its not working.

pls gimme some suggestions .

thnks...

2 REPLIES 2
Read only

Former Member
0 Likes
590

Hi,

either use screen-group field value or

use as

loop at screen.

field-name[

screen-active = '0'.

screen-input = '0'.

screen-output = '0'.

screen-invisible = '0'.

]

endloop.

Regards

ricky

Read only

former_member182371
Active Contributor
0 Likes
590

Hi,

have a look at SAP standard program SAP_PICTURE_DEMO.

Here you´ll see you can use:

CALL METHOD PICTURE_CONTROL_1->CLEAR_PICTURE.

Best regards.