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

Report using Set parameter & get parameters.

Former Member
0 Likes
1,082

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
Read only

Former Member
0 Likes
855

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
Read only

Former Member
0 Likes
855

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

Read only

Former Member
0 Likes
856

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

Read only

sreeramkumar_madisetty
Active Contributor
0 Likes
855

Hi

Interactive Report using the Event :

SELECTION-SCREEN

AT LINE SELECTION

USING SY-LSIND.

WILL SUFFICE YOUR REQUIREMENT.

Regards,

Sreeram

Read only

Former Member
0 Likes
855

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.

Read only

Former Member
0 Likes
855

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