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

REG:PF_Status

Former Member
0 Likes
540

Hi all ,

Iam copying standard pgm of IW38

After copying the program and exectuing iam missing Icon for All Selections in application tool bar Rest all re coming .

i debugging i got that pgm is calling logical database there is perform for setting Pf status .

this perfom is in pgm RSDBRUNT

SET PF-STATUS P_PFKEY OF PROGRAM CURRENT_SCR-GUI_PROG

EXCLUDING CURRENT_SCR-EXCL.

Internal table CURRENT_SCR-EXCL contains list of icons for excluding .This table contains Icon which i required

so icon is not displaying in the out put .

can any one suggest how to get Icon displayed.

thanks ,

kamlakar.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
507

Hi,

Before sending the funciton codes to the PERFORM, delete the required function codes from the internal table

Delete from <itab> where code = <Required Func code>

Now the function code which you have deleted will not be excluded.

Hope this helps

Regards

Shiva

Hi all ,

Iam copying standard pgm of IW38

After copying the program and exectuing iam missing Icon for All Selections in application tool bar Rest all re coming .

i debugging i got that pgm is calling logical database there is perform for setting Pf status .

this perfom is in pgm RSDBRUNT

SET PF-STATUS P_PFKEY OF PROGRAM CURRENT_SCR-GUI_PROG

EXCLUDING CURRENT_SCR-EXCL.

Internal table CURRENT_SCR-EXCL contains list of icons for excluding .This table contains Icon which i required

so icon is not displaying in the out put .

can any one suggest how to get Icon displayed.

thanks ,

kamlakar.

2 REPLIES 2
Read only

Former Member
0 Likes
508

Hi,

Before sending the funciton codes to the PERFORM, delete the required function codes from the internal table

Delete from <itab> where code = <Required Func code>

Now the function code which you have deleted will not be excluded.

Hope this helps

Regards

Shiva

Read only

Former Member
0 Likes
507

thanks my issue is resolved