on 2020 Dec 02 3:37 PM
Request clarification before answering.
Can you try this?
Data:ls_user_logondata type bapilogond,
ls_user_password type bapipwd,
ls_user_address type bapiaddr3,
ls_user_logondata-gltgv = sy-datum.
ls_user_logondata-gltgb = '99991231'.
ls_user_logondata-ustyp = 'A'.
ls_user_logondata-CODVN = 'X'.
ls_user_logondata-CODVC = 'X'.
ls_user_password-bapipwd = ''.
clear ls_user_password-bapipwd.
lv_alias-USERALIAS = lvusrnam.
ls_user_address-firstname = lvfname.
ls_user_address-lastname = lvlname.
PARAMETERS: lvusrnam type uname,
lvfname type bapiaddr3-firstname,
lvlname type bapiaddr3-lastname.
CALL FUNCTION 'BAPI_USER_CREATE1'
EXPORTING
USERNAME = lvusrnam
LOGONDATA = ls_user_logondata
PASSWORD = ls_user_password
ADDRESS = ls_user_address
ALIAS = lv_alias.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 17 | |
| 8 | |
| 8 | |
| 6 | |
| 4 | |
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.