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

Problem in Drill Down Report

Former Member
0 Likes
423

Hi All,

I have an alv, which displays production order.

by double clicking on production order i am trying to call the trans code cor3, it's working fine.

But, it's not passing the order number into t-code cor3.

this is the code:

IF rs_selfield-fieldname = 'AUFNR'.

READ TABLE itab INDEX rs_selfield-tabindex.

SET PARAMETER ID 'AUFNR' FIELD itab-aufnr.

CALL TRANSACTION 'COR3' AND SKIP FIRST SCREEN.

ENDIF.

itab-aufnr contains the order number.

i fell some modifications is to be done in

SET PARAMETER ID 'AUFNR' FIELD itab-aufnr.

Thanks in advance.

rgards

Arun

3 REPLIES 3
Read only

Former Member
0 Likes
407

change it to following....

SET PARAMETER ID <b>'ANR'</b> FIELD itab-aufnr.

Read only

Former Member
0 Likes
407

You gave Parameter ID wrong..

change that to 'ANR'

regards

vijay

Read only

Former Member
0 Likes
407

hi,

Parameter ID is 'ANR'.

Please acknowledge if it works.

Regards,

Bikash