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

output display

Former Member
0 Likes
863

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

7 REPLIES 7
Read only

Former Member
0 Likes
834

Murali,

U need to disply them manually on the list.

Regards,

Sujatha.

Read only

Former Member
0 Likes
834

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 list

Regards

Sudheer

Read only

Former Member
0 Likes
834

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.

Read only

0 Likes
834

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

Read only

Former Member
0 Likes
834

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

Read only

Former Member
0 Likes
834

Hi

Use write statement with input off option, then it will display the output in display mode.

Regards

Haritha.

Read only

Former Member
0 Likes
834

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

.