‎2009 Apr 24 3:53 AM
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
‎2009 Apr 24 4:19 AM
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.
‎2009 Apr 24 4:19 AM
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
‎2009 Apr 24 4:58 AM
‎2009 Apr 24 5:04 AM
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.