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

GUI Status

Former Member
0 Likes
773

Hello Experts,

Can anybody please tell me how to create GUI status for a report?

1 ACCEPTED SOLUTION
Read only

Former Member

Hello Experts,

Can anybody please tell me how to create GUI status for a report?

5 REPLIES 5
Read only

Former Member
0 Likes
737

Hi Lope,

Use <b>SET PF-STATUS</b> statement in your report to create GUI status.

<b>SET PF-STAUS 'NEW_GUI'.</b>

Double click on NEW_GUI, it will navigate you to Menu Painter.

There are many of these statuses in the GUI of a program. Each one describes which functions are available and how you can select these via menus and menu bars or by pressing function keys or pushbuttons.

Just check this link for PF-STATUS

http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/set_pf_s.htm

Thanks,

Vinay

Read only

Former Member
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
737

Just type this into your code.

SET PF-STATUS 'LIST'.

Now, double click on the word, LIST. Foward navigation will take you to create the gui status, save and activate and return to your report program.

Regards,

Rich Heilman

Read only

0 Likes
737

Thnx all for your help.

Read only

Former Member
0 Likes
737

Hi,

START-OF-SELECTION.
  SET PF-STATUS 'STATUS'

.

Double Click the STATUS, it will take you another screen, there you can add your own Buttons, function keys by using <b>Menu bar</b>, <b>Appliation tool bar</b> and <b>Function keys.</b>

Regards

Sudheer