‎2006 Jan 10 5:51 PM
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.
‎2006 Jan 10 5:55 PM
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
‎2006 Jan 10 6:00 PM
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
‎2006 Jan 10 6:03 PM
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
‎2006 Jan 10 6:13 PM
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