2008 Mar 05 4:41 AM
I have a report program which has a selection screen. my tl waqnts me to skip that screen and go to the output directly without calling or submitting this program from other program so that it can be run in tthe background
Plz help me experts regardin this.
I have a report program which has a selection screen. my tl waqnts me to skip that screen and go to the output directly without calling or submitting this program from other program so that it can be run in tthe background
Plz help me experts regardin this.
2008 Mar 05 4:48 AM
Hai.
check the links.
http://www.sap-img.com/ge001.htm
http://help.sap.com/saphelp_nw70/helpdata/en/9f/db9e0435c111d1829f0000e829fbfe/content.htm
regards.
sowjanya.b
2008 Mar 05 4:49 AM
Hi,
YOu can select the check box start using variant in the attributes screen of a report, then after create one variant to that report, then create one tcode (dont forget to give start with variant column) with your default variant name. Then the report wont call or give the selection-screen. I think this is your requirement.
Rgds,
Bujji
2008 Mar 05 5:12 AM
2008 Mar 05 4:56 AM
Supriyo,
1. Meaning of the selection screen is to enter some input and based on that need to extract the data and display output.If you don't want selection screen means comment slect-options and parameters OR DELETE.
2.
DATA: RANGE_LANGU TYPE RANGE OF SY-LANGU,
RANGE_LANGU_WA LIKE lINE OF RANGE_LANGU.
PARAMETERS: MSG_FR LIKE T100-MSGNR,
MSG_TO LIKE T100-MSGNR.
MOVE: 'I' TO RANGE_LANGU_WA-SIGN,
'BT' TO RANGE_LANGU_WA-OPTION,
'D' TO RANGE_LANGU_WA-LOW,
'I' TO RANGE_LANGU_WA-HIGH.
APPEND RANGE_LANGU_WA TO RANGE_LANGU.
MOVE: 'EQ' TO RANGE_LANGU_WA-OPTION,
'E' TO RANGE_LANGU_WA-LOW.
APPEND RANGE_LANGU_WA TO RANGE_LANGU.
SUBMIT REPORT01
VIA SELECTION-SCREEN
USING SELECTION-SET 'VARIANT1'
USING SELECTION-SETS OF PROGRAM 'REPORT00'
AND RETURN.
2008 Mar 05 5:16 AM
HI,
You can create tcode using SE93. Enter program name, selection screen number, and start with variant as your default variant which you created already.
Rgds,
Bujji
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |