Application Development 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: 

Report using Set parameter & get parameters.

Former Member
0 Kudos

Hi,

My requirement is from select query the list of PO will be display. Now i want when i click on one of the purchase order .

i want to diaplay PO using CALL TRANSACTION 'ME23N' with the help of set and get parameters . or can i do it with interactive report.

Regards,

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

U can do this using call transaction 'ME23N' using set parameter id as

SET PARAMETER ID 'BES' FIELD <wa_collect>-po_no

CALL TRANSACTION 'ME23N' .

Thanks & Regards,

Anagha Deshmukh

5 REPLIES 5

Former Member
0 Kudos

HI Khusi,

you can use interactive report and pass parameter id to the fields.

You will get the display of PO.

Hope this will help .

Regards,

Vijay

Former Member
0 Kudos

Hi,

U can do this using call transaction 'ME23N' using set parameter id as

SET PARAMETER ID 'BES' FIELD <wa_collect>-po_no

CALL TRANSACTION 'ME23N' .

Thanks & Regards,

Anagha Deshmukh

sreeramkumar_madisetty
Active Contributor
0 Kudos

Hi

Interactive Report using the Event :

SELECTION-SCREEN

AT LINE SELECTION

USING SY-LSIND.

WILL SUFFICE YOUR REQUIREMENT.

Regards,

Sreeram

Former Member
0 Kudos

Hi,

1) Write a Report to show the Output(Use HIDE statment for PO filed while outputing the list).

2) In the event AT LINE-SELECTION write logic.

GET CURSOR FIELD field VALUE val.

SET PARAMETER ID 'BES' FIELD dobj.

CALL TRANSACTION ME23N.

Regards,

J.

Former Member
0 Kudos

Hi again,

Try like this.

SET PARAMETER ID 'BES' FIELD wa-field.

CALL TRANSACTION 'ME23N' AND SKIP FIRST SCREEN.

Hope this will resolve your problem.

Regards,

Vijay