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

screen related query

Former Member
0 Likes
703

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.

5 REPLIES 5
Read only

Former Member
Read only

Former Member
0 Likes
686

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

Read only

0 Likes
686

Hi,

How to create a tcode for this vairant?

Thanks,

Kavitha

Read only

Former Member
0 Likes
686

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.

Read only

Former Member
0 Likes
686

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