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

Process code for Message type PORDCR

Former Member
0 Likes
4,904

Hi all,

What is the Process code for Message type PORDCR?

Regards,

Balavardhan.K

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
2,364

Hi,

Goto WE64 Transaction, there u can find Process code for any Message type.

For inbound

ED00

ED00_XML

ED08

BAPI.

6 REPLIES 6
Read only

Former Member
0 Likes
2,365

Hi,

Goto WE64 Transaction, there u can find Process code for any Message type.

For inbound

ED00

ED00_XML

ED08

BAPI.

Read only

0 Likes
2,364

Thanks a lot. Problem is solved.

Read only

Former Member
0 Likes
2,364

hi,

chk process code - BAPI

check this thread also

it might be helpful to you.

thanks

Sachin

Read only

Former Member
0 Likes
2,364

Hi,

For Inbound

From the Table EDP21 we can get the corresponding process codes of a message type

EDP21 - Table-Inbound Partner Profile

EVCODE - Process code

MESTYP - Message type


SELECT     evcode  "process code
            mestyp  "Message type
            FROM edp21 INTO <itab>
            WHERE
            mestyp = 'PORDCR'.

MESTYP EVCODE

PORCDR BAPI

If you want to find for Outbound

From table TEDE1 we can get the corresponding process codes of a message type

TEDE1 - Edi Process types (Outbound)

EVCODE - Process code for outbound processing

MESTYP - Message type

SELECT evcode "process code

mestyp "Message type

FROM tede1 INTO <itab>

WHERE

mestyp = <message type>.

Edited by: Marcelo Ramos on Jan 6, 2009 11:32 AM

Read only

Former Member
0 Likes
2,364

Hi,

For PORDCR

process codes

BAPI

ED08

ED00_XML

ED00

ABI_AIDN_IN

For PORDCR1

ABI_AIDN_IN

ED08

ED00_XML

Regards

Vasavi

Read only

Former Member
0 Likes
2,364

Hi,

You can find the description for each process code in:

we41 - outbound process code ( used when generating idocs using message control)

we42 - inbound process code

In we64 u can find outbound as well as inbound process codes for all meassge types.

Regards

Vinod