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: 

Receiver type error in EDI_AGREE_PARTNER_INSERT

Former Member
0 Kudos

Hello all,

I'm using EDI_AGREE_PARTNER_INSERT to add entries to EDPP1. The parameters I am passing are as follows:

MANDT =

PARNUM = 200002

PARTYP = KU

CLASS=

MATLVL= A

TEST=

ARCHIV=

USRTYP = S

USRKEY=

USRLNG= E

Upon execution, I'm getting an error 426 - "Please enter a valid value for the receiver type."

Through my own investigation, I've deciphered this error message to mean that the receiver type I have provided is invalid. I believe that the message is in reference to the value in the USRTYP field.

Can anyone offer any additional insight, and maybe some tips about how to fix this?

I'm relatively new at this.

Thanks,

Jarrod

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

The error message is raised as there is no combination of USRTYP and USRKEY.

Check the below "PERFORM FAF_USER_CHECK ... " in the FM EDI_AGREE_PARTNER_INSERT .

USRTYP and USRKEY are passed to the FM RH_CHECK_ORG_OBJECT_EXISTS to check if the object exists.

Pass USRKEY as well .

Regards,

Srini.

2 REPLIES 2

Former Member
0 Kudos

Hi,

The error message is raised as there is no combination of USRTYP and USRKEY.

Check the below "PERFORM FAF_USER_CHECK ... " in the FM EDI_AGREE_PARTNER_INSERT .

USRTYP and USRKEY are passed to the FM RH_CHECK_ORG_OBJECT_EXISTS to check if the object exists.

Pass USRKEY as well .

Regards,

Srini.

0 Kudos

That got it. Thanks!