2007 Apr 18 11:46 AM
hi,
i want some clarifiction in interactive reports. i want all entered inputs in selection screen appears with display in ouput screen.
Thanks,
Reddy
hi,
i want some clarifiction in interactive reports. i want all entered inputs in selection screen appears with display in ouput screen.
Thanks,
Reddy
2007 Apr 18 11:47 AM
Murali,
U need to disply them manually on the list.
Regards,
Sujatha.
2007 Apr 18 11:51 AM
HI Mulari,
Parameters: Date type Sy-datum,
matnr type MATNR.
Write: Date. " This will display in the list
Write:/ MATNR. " " This will display in the listRegards
Sudheer
2007 Apr 18 11:52 AM
Hi,
its possible.
U can just use WRITE statements to get those inputs in ur output display.
fo eg:
paramaters : pr_matnr type mara-matnr.
write : pr_matnr.
is this wat u asking for?
do u want to display the parameter in ur basic list or detailed list?
make ur question more clear.
All the best.
****reward points if useful.
2007 Apr 18 12:18 PM
i will give clear cut question,
suppose in selection screen i have two parameters are select-options, like
plant
material number
in second selection screen i have
storage location
i am getting the material descrption as a out put, so for taht
i want to display second selection screen at the same time i want the plant and materail numbers in display mode, and in output also i need to dispaly 1st selection screen details at the same time second selection screen details in display mode and then i want material description. but in interactive reports we get direct output but here i want second selection screen also.
thanks,
Reddy
2007 Apr 18 11:54 AM
Hi,
You have to write them using WRITE statement in the event TOP-OF-PAGE During LINE_SELECTION to display in the Interactive report.
reward if useful
regards,
ANJI
2007 Apr 18 11:54 AM
Hi
Use write statement with input off option, then it will display the output in display mode.
Regards
Haritha.
2007 Apr 18 12:14 PM
try this...
DATA: BEGIN OF INFO OCCURS 20,
FLAG,
OLENGTH TYPE X,
LINE LIKE RALDB-INFOLINE,
END OF INFO.
CALL FUNCTION 'RS_COVERPAGE_SELECTIONS'
EXPORTING
REPORT = sy-repid
VARIANT =
NO_IMPORT = ' '
TABLES
INFOTAB = info
EXCEPTIONS
ERROR_MESSAGE = 1
VARIANT_NOT_FOUND = 2
OTHERS = 3
.
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |