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

REG : Interactive Report

Former Member
0 Likes
491

If Parameter ID is not available for a particular feild then how to populate the data on to the screen.

Ex.

case ucomm.

when '&IC1'.

read table t_report into st_report index t_sel-tabindex.

if st_report-status ge 49.

set parameter id 'DCN' field st_report-docnum.

call transaction 'BD87' and skip first screen..

where DCN is not available in BD87(idoc number)/document number.

4 REPLIES 4
Read only

Former Member
0 Likes
453

double click on dcn and create that parameter id.

Regards

Read only

Former Member
0 Likes
453

Hi,

parameter id (DCN ) is not defined for this field so you cant attached DCN to this screen field. i think you can try some BAPI to set parameter ID in standard data element ALE_DOCNUM.

rgds

Deepak

Read only

Former Member
0 Likes
453

hi,

double click on dcn --> and create that parameter id.

helpful reward some points.

with regards,

suresh babu aluri.

Read only

Former Member
0 Likes
453

if there is no parameter id attached, why dont u try this.

SELTAB-SELNAME = 'SX_DOCNU'.

SELTAB-KIND = 'S'.

SELTAB-LOW = st_report-docnum.

APPEND SELTAB.

SUBMIT RBDMON00 WITH SELECTION-TABLE SELTAB AND

RETURN.