‎2009 Jan 06 6:50 AM
Hi all,
What is the Process code for Message type PORDCR?
Regards,
Balavardhan.K
‎2009 Jan 06 7:15 AM
Hi,
Goto WE64 Transaction, there u can find Process code for any Message type.
For inbound
ED00
ED00_XML
ED08
BAPI.
‎2009 Jan 06 7:15 AM
Hi,
Goto WE64 Transaction, there u can find Process code for any Message type.
For inbound
ED00
ED00_XML
ED08
BAPI.
‎2009 Jan 06 12:36 PM
‎2009 Jan 06 7:23 AM
‎2009 Jan 06 7:55 AM
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
‎2009 Jan 06 12:28 PM
Hi,
For PORDCR
process codes
BAPI
ED08
ED00_XML
ED00
ABI_AIDN_IN
For PORDCR1
ABI_AIDN_IN
ED08
ED00_XML
Regards
Vasavi
‎2009 Jan 06 12:43 PM
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