SAP IWWO_GET_USER_DATA Function Module for









IWWO_GET_USER_DATA is a standard iwwo get user data SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for iwwo get user data FM, simply by entering the name IWWO_GET_USER_DATA into the relevant SAP transaction such as SE37 or SE38.

Function Group: IWWO
Program Name: SAPLIWWO
Main Program: SAPLIWWO
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function IWWO_GET_USER_DATA pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'IWWO_GET_USER_DATA'"
EXPORTING
* USER = SY-UNAME "
* COMP_CODE = "

IMPORTING
CUSTOMER = "
NAME = "
FIRSTNAME = "
LASTNAME = "
EMPLOYEENO = "
PROFILE = "
RETURN = "
.



IMPORTING Parameters details for IWWO_GET_USER_DATA

USER -

Data type: SY-UNAME
Default: SY-UNAME
Optional: Yes
Call by Reference: No ( called with pass by value option)

COMP_CODE -

Data type: BAPI2088_HEADER-COMP_CODE
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for IWWO_GET_USER_DATA

CUSTOMER -

Data type: BAPI2017_GM_ITEM_CREATE-CUSTOMER
Optional: No
Call by Reference: No ( called with pass by value option)

NAME -

Data type: ESS_EMP-NAME
Optional: No
Call by Reference: No ( called with pass by value option)

FIRSTNAME -

Data type: ESS_EMP-FIRSTNAME
Optional: No
Call by Reference: No ( called with pass by value option)

LASTNAME -

Data type: ESS_EMP-LASTNAME
Optional: No
Call by Reference: No ( called with pass by value option)

EMPLOYEENO -

Data type: ESS_EMP-EMPLOYEENUMBER
Optional: No
Call by Reference: No ( called with pass by value option)

PROFILE -

Data type: BAPICATS6-PROFILE
Optional: No
Call by Reference: No ( called with pass by value option)

RETURN -

Data type: BAPIRETURN
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for IWWO_GET_USER_DATA Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.

DATA:
lv_user  TYPE SY-UNAME, "   SY-UNAME
lv_customer  TYPE BAPI2017_GM_ITEM_CREATE-CUSTOMER, "   
lv_name  TYPE ESS_EMP-NAME, "   
lv_comp_code  TYPE BAPI2088_HEADER-COMP_CODE, "   
lv_firstname  TYPE ESS_EMP-FIRSTNAME, "   
lv_lastname  TYPE ESS_EMP-LASTNAME, "   
lv_employeeno  TYPE ESS_EMP-EMPLOYEENUMBER, "   
lv_profile  TYPE BAPICATS6-PROFILE, "   
lv_return  TYPE BAPIRETURN. "   

  CALL FUNCTION 'IWWO_GET_USER_DATA'  "
    EXPORTING
         USER = lv_user
         COMP_CODE = lv_comp_code
    IMPORTING
         CUSTOMER = lv_customer
         NAME = lv_name
         FIRSTNAME = lv_firstname
         LASTNAME = lv_lastname
         EMPLOYEENO = lv_employeeno
         PROFILE = lv_profile
         RETURN = lv_return
. " IWWO_GET_USER_DATA




ABAP code using 7.40 inline data declarations to call FM IWWO_GET_USER_DATA

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

"SELECT single UNAME FROM SY INTO @DATA(ld_user).
DATA(ld_user) = SY-UNAME.
 
"SELECT single CUSTOMER FROM BAPI2017_GM_ITEM_CREATE INTO @DATA(ld_customer).
 
"SELECT single NAME FROM ESS_EMP INTO @DATA(ld_name).
 
"SELECT single COMP_CODE FROM BAPI2088_HEADER INTO @DATA(ld_comp_code).
 
"SELECT single FIRSTNAME FROM ESS_EMP INTO @DATA(ld_firstname).
 
"SELECT single LASTNAME FROM ESS_EMP INTO @DATA(ld_lastname).
 
"SELECT single EMPLOYEENUMBER FROM ESS_EMP INTO @DATA(ld_employeeno).
 
"SELECT single PROFILE FROM BAPICATS6 INTO @DATA(ld_profile).
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!