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

Interactive reports

Former Member
0 Likes
463

Hi all,

http://www.sapgenie.com/abap/ireports.htm

In the above there is a ptogram for interactive reports.

  • IN THE MENU PAINTER (SE41) CREATE A STATUS TO YOUR PROGRAM. HERE YOU CAN

*DEFINE THE PUSH-BUTTON

set pf-status 'basic'.

I cannot understand the above lines. can anyone please tell me how to define push button on the outlist list using se41.As i am new to ABAP i need detailed description.

Points wil be awarded.

Regards,

Vijay.

4 REPLIES 4
Read only

Former Member
0 Likes
443

In SE41, enter your program name and status name. Click on 'Create'.

In the next screen, open the tree under 'Application Toolbar'. In there, enter the code of your pushbutton in one of the empty fields and double click on it.

Keep the Function Type as blank so that you can handle it in your code. Enter some Function Text and choose an icon if you need one.

That is all.

Srinivas

Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
443

Lets not make it too complex. In the program, double click on the line of the source code.

SET PF-STATUS 'BASIC'.

The system will ask to create the gui status, say yes, Give a description, click green check, Now you will see the gui status, click the drop down for Function keys, enter "PICK" into the F2 function code(where the <..> is). Save and activate. Now run the program. Double click on any line, you will be taken to that requistion.

That's it.

Regards,

Rich Heilman

Read only

Former Member
0 Likes
443

Go to Se41 , give ur program name , click on status raio button , then click create

in the next screen assign FCODES to ur button and an icon for that

Read only

0 Likes
443

Also, in order for that program to work correctly, you must define the back button as well, Double click the same line of code. This will take you directly to the status. Click the drop down for "Function Keys" in the input box above the "Green Back Arrow" icon, enter the word "BACK". Save and activate. This will allow you exit the program.

Regards,

Rich Heilman