Application Development 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: 

Changing the PF-Status of a standard report

Former Member
0 Kudos

Hi folks,

Can anyone guide me in how to change the default Application Toolbar of a report. I want to add new buttons into the existing toolbar. I tried setting up a new PF-status bar but it changed the standard menu and application bar.

Looking forward to your input,

TIA

ZAM

Message was edited by: ZAMUser

1 ACCEPTED SOLUTION

Former Member
0 Kudos

write for example :

set pf-status '100'.

for changing it double click on '100'.

--> from the menu select extras

--> Adjust template

--> Select list viewer, selection screen or the one applies.

-->modify it.

-


If it helps please give points

Message was edited by: Fuat Ulugay

2 REPLIES 2

Former Member
0 Kudos

write for example :

set pf-status '100'.

for changing it double click on '100'.

--> from the menu select extras

--> Adjust template

--> Select list viewer, selection screen or the one applies.

-->modify it.

-


If it helps please give points

Message was edited by: Fuat Ulugay

Former Member
0 Kudos

Hi,

You can set it as written in the previous post.Use command SET PF-STATUS before your list is called.

Example:

DATA: lt_sflight TYPE TABLE OF sflight,

ls_sflight TYPE sflight.

SELECT * FROM sflight

INTO TABLE lt_sflight.

SET PF-STATUS '0100'.

LOOP AT lt_sflight INTO ls_sflight.

WRITE:/ ls_sflight-carrid,

ls_sflight-connid,

ls_sflight-fldate.

ENDLOOP.