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

selection screen with 4 input

Former Member
0 Likes
734

HI experts,

Currently i am worlking with aging report where in the selection screen i should give

4 input fields where i cant do with parameters or select-options.

Is the any way i can do this.

example :

date : | first input box | | second input box | | third input box | | fourth input box |

Thank you in advanced

4 REPLIES 4
Read only

Former Member
0 Likes
696

HI,

Declare the parameters using SELECTION-SCREEN BEGIN OF LINE & END OF LINE.

text-s02 holds value 'Date :'.

SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-s01.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(10) text-s02 for FIELD field1.
PARAMETER field1 type char10.
PARAMETER field2 type char10.
PARAMETER field3 type char10.
PARAMETER field4 type char10.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK b1.

Read only

Former Member
0 Likes
696

Hi.

You can use SELECTION-SCREEN BEGIN OF LINE.

try this out

REPORT ZSAYC_TEST2.

TABLES: mara.

SELECTION-SCREEN BEGIN OF BLOCK blk1 WITH FRAME TITLE text-001.

SELECTION-SCREEN BEGIN OF LINE.

PARAMETERS: p_matnr like mara-matnr,

p_matnr1 like mara-matnr,

p_matnr2 like mara-matnr,

p_matnr3 like mara-matnr.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN END OF BLOCK blk1.

Hope it helps.

Sayan

Read only

Former Member
0 Likes
696

thanks a lot and i solved..

Read only

Former Member
0 Likes
696

Hi,

You can achieve with the screen painter se51. Goto se51 and give your program name and screen no as 1000 and goto the layout editor where you can do what ever modifications you want to do for that report.