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: 

Parameterlist for 'Call transaction' with the transaction ME23N

Former Member
0 Kudos

Hello,

I want to call the transaction ME23N with 'call transaction'. But I don't know where to find the parameters settings before the transaction call,

example: SET PARAMETER ID 'EBELN' FIELD ebeln.

Can anybody give me the required parameterlist? Thanks.

Regards, Lars.

1 ACCEPTED SOLUTION

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

For purchase order number in transaction ME23 use

SET PARAMETER ID 'BES' FIELD EBELN.

You can find the parameter ids by going doing F1 on the field, then click technical information. Its right there.

Regards,

Rich Heilman

Message was edited by: Rich Heilman

6 REPLIES 6

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

For purchase order number in transaction ME23 use

SET PARAMETER ID 'BES' FIELD EBELN.

You can find the parameter ids by going doing F1 on the field, then click technical information. Its right there.

Regards,

Rich Heilman

Message was edited by: Rich Heilman

manuel_bassani
Contributor
0 Kudos

Hi,

set parameter id 'BES' field ebeln.

Regards, Manuel

former_member181962
Active Contributor
0 Kudos

Hi Lars,

I think setting the parameter id for PO alone would suffice

SET PARAMETER ID 'BES' FIELD ebeln.

However, I'm a bit wary about using call transaction me23n since it is a SAP Enjoy transaction.

I am confident about using it in me23 though.

Regards,

Ravi

0 Kudos

Interesting, I am very surprised that it worked with transaction ME23N. Cool.



report zrich_0001 .


parameters: p_ebeln type ekko-ebeln.


start-of-selection.

  set parameter id 'BES' field p_ebeln.
  call transaction 'ME23N'.

Regards,

Rich HEilman

Former Member
0 Kudos

Sternbergg,

For currency use the prameter id <b>FWS</b>.

Thanks

Kam

Note: Allot points for all worthfull postings

Former Member
0 Kudos

Hello,

thank you very much for your helpful answers. IT worked very well with the parameter BES.

Regards. Lars.