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

INVOIC customer conversion

former_member610150
Participant
0 Likes
1,037

Hello,

For IDoc type INVOIC, how can I convert the customer number in the sender system to the customer number in the receiver system (or vice versa)? For IDoc type ORDERS I can use transaction VOE4 but this transaction cannot be used for INVOIC.

Regards, Jan

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
927

The outbound process code that you assign should invoke the function module 'SD_INT_TO_EXT_PARTNER_NUMBER'

at some point. Thatu2019s where the conversion to external partner number happens.

For example, process code SD09 calls FM IDOC_OUTPUT_INVOIC, which uses 'SD_INT_TO_EXT_PARTNER_NUMBER' to populate the IDOC field E1EDKA1-LIFNR with the external partner number when the partner functions match up properly.

Regards,

Ken

Hello,

For IDoc type INVOIC, how can I convert the customer number in the sender system to the customer number in the receiver system (or vice versa)? For IDoc type ORDERS I can use transaction VOE4 but this transaction cannot be used for INVOIC.

Regards, Jan

4 REPLIES 4
Read only

Former Member
0 Likes
927

you can use the same VOE4 for INVOIC as well.

at present how you are converting internal cusotmer to external cusotmer for orders?

in our case we have XI and calling table(EDPAR i guess).

Regds,

Suresh

Read only

0 Likes
927

We are converting external to internal number using VOE4 for ORDERS, but this doesn't seem to work for INVOIC? The description of customizing transaction VOE4 is 'Convert External To Internal Partner Numbers'.

Read only

Former Member
0 Likes
928

The outbound process code that you assign should invoke the function module 'SD_INT_TO_EXT_PARTNER_NUMBER'

at some point. Thatu2019s where the conversion to external partner number happens.

For example, process code SD09 calls FM IDOC_OUTPUT_INVOIC, which uses 'SD_INT_TO_EXT_PARTNER_NUMBER' to populate the IDOC field E1EDKA1-LIFNR with the external partner number when the partner functions match up properly.

Regards,

Ken

Read only

0 Likes
927

Thanks. I think this will help.