cancel
Showing results for 
Search instead for 
Did you mean: 

Reg: BDC error

Former Member
0 Kudos

Hi Experts,

I am facing issue in BDC call transaction for SU01_OLD.

There is an existing report to upload users through Call transaction.

Attached is the error.

Kindly help me.

Regards,

Rajendra.

Accepted Solutions (0)

Answers (2)

Answers (2)

Jelena
Active Contributor
0 Kudos

Why are you not using BAPI?

Florian
Active Contributor
0 Kudos

Hi Rajendra,

it seems you are not familiar with the scn-search. Please have a look here:

additional to that I recommend you to work through the getting started documents located upper right corner.

Your problem is, that you want to create users without an initial password. This is what the sy-subrc is returning

CALL FUNCTION 'SUSR_USER_BUFFERS_TO_DB' "

* EXPORTING

* back_distribution = SPACE "

* message_out = SPACE "

* distribution = 'X' " char01

* TABLES

* office_users = " ussokey

  EXCEPTIONS

  NO_LOGONDATA_FOR_NEW_USER = 1 "

  NO_INIT_PASSWORD = 2 "

  INTERNAL_ERROR = 11 "

  . " SUSR_USER_BUFFERS_TO_DB

~Florian