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

ALV Using FM

Former Member
0 Likes
534

Hi ALL,

Iam displaying the output by Using ALV grid display.

Now i want to add some more options in my application tool bar.

Now iam using SET-PF status, but its giving what are the push buttons we are giving that only it was displaying, but i need all the push buttons thst are coming inALV display as well as new push buttons, how to identify which PF status i have to use , please clarify

3 REPLIES 3
Read only

Former Member
0 Likes
507
1. goto SE80
2. Give function group as SALV , and click display button
3. now expand GUI STATUS below and right click on STANDARD and copy that to ur program
4. Activate that in ur program
5. now in ur ALV 
 
    I_CALLBACK_PFSTATUS = 'PF_STATUS'.

6. FORM PF_STATUS.
      set pf-status 'STANDARD' .  " double click on this and add ur buttons
   ENDFORM.
Read only

Former Member
0 Likes
507

Hi Sreedhar,

This requirement needs a round about process:

1. Open your program from SE38

2. Press <ctrl><shift>F5.

3. In the navigation pane on the left han side: right click and create PF-Status.

4. Create a dummy one, and activate it..

5. in the navigation pane u'll be seeing your dummy pf-status under GUI_STATUS.

6. Right click on this dummy pf Status and say copy.

7. Enter: SAPLSLVC_FULLSCREEN and STANDARD_FULLSCREEN in the from program and from pf-status input boxes.

8. in the to specify your program and the new final pf status name to be used in this program.

9. set this pf-status in your program.

10. The dummy pf-status you have created is no longer required.

Please let me know if further details are required.

Regards,

Goutham.

Read only

Former Member
0 Likes
507

hi

good

you can set your own PF STATUS , so you can assign the PF STATUS as per your requirement,so that the respective message ll display as well as you click on the buttons.

Thanks

mrutyun^