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

SET PF STATUF SPACE - APPLICATION TOOLBAR

Former Member
0 Likes
583

hi friends,

I am writing interactive report in this report i have 6 buttons in application toolbar that i have created

using this statement

CASE SY-USOMM.
    WHEN 'A'.
    SET PF-STATUS SPACE.
                     WRITE: / 'A'
    WHEN 'B'.
    SET PF-STATUS SPACE.
                     WRITE: / 'B'
    WHEN 'C'.
    SET PF-STATUS SPACE.
                     WRITE: / 'C'
    WHEN 'D'.
                     WRITE: / 'A SORTED BY NAME ASCENDING'
    WHEN 'E'.
                     WRITE: / 'A SORTED BY NAME DESCENDING'
    WHEN 'F'.
                     WRITE: / 'A SORTED BY ID ASCENDING'
END CASE.

when i execute the report, all the six buttons are displayed on the main screen of the report,

what i want to achieve is display the last three buttons only when i press first button and when i press

first button first three buttons are invisible. what i want to achieve is hide last three buttons on execution and

display those last three button when i press first button.

any thoughts on that would be very helpful...

regards.

shiraz

1 REPLY 1
Read only

Former Member
0 Likes
337

STF!! (search the forum).... Don't know why you didn't, but start here, just for example:

[Sample Post: PF Status Excluding with Immediate|;

In your case one would usually write the function codes to be excluded to a table, then set the PF status excluding

(tablename). See also the usage of immediately, in your case you'd need that addition.

What you have written seems to be more screen titles (title bar) than PF status coding.