SAP SUSR_SUIM_API_RSUSR008_009_NEW Function Module for









SUSR_SUIM_API_RSUSR008_009_NEW is a standard susr suim api rsusr008 009 new 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 susr suim api rsusr008 009 new FM, simply by entering the name SUSR_SUIM_API_RSUSR008_009_NEW into the relevant SAP transaction such as SE37 or SE38.

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



Function SUSR_SUIM_API_RSUSR008_009_NEW 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 'SUSR_SUIM_API_RSUSR008_009_NEW'"
EXPORTING
* IV_AUTH_OR_COMB = "
* IV_VAR_NAME = "
* IV_VAL_USRS = ' ' "
* NO_ADDITIONAL_DATA = 'X' "

IMPORTING
ET_AUTH_OUTPUT = "
ET_COMB_OUTPUT = "
ET_AUTH_ADDR_OUTPUT = "
ET_COMB_ADDR_OUTPUT = "
RETURN = "

CHANGING
* IT_USER = "
* IT_GROUP = "
* IT_UGROUP = "
* IT_UREF = "
* IT_UALIAS = "
* IT_ACTGRPS = "
* IT_PROF = "
.



IMPORTING Parameters details for SUSR_SUIM_API_RSUSR008_009_NEW

IV_AUTH_OR_COMB -

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

IV_VAR_NAME -

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

IV_VAL_USRS -

Data type: BOOLE_D
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

NO_ADDITIONAL_DATA -

Data type: BOOLE_D
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for SUSR_SUIM_API_RSUSR008_009_NEW

ET_AUTH_OUTPUT -

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

ET_COMB_OUTPUT -

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

ET_AUTH_ADDR_OUTPUT -

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

ET_COMB_ADDR_OUTPUT -

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

RETURN -

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

CHANGING Parameters details for SUSR_SUIM_API_RSUSR008_009_NEW

IT_USER -

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

IT_GROUP -

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

IT_UGROUP -

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

IT_UREF -

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

IT_UALIAS -

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

IT_ACTGRPS -

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

IT_PROF -

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

Copy and paste ABAP code example for SUSR_SUIM_API_RSUSR008_009_NEW 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_it_user  TYPE SUSR_T_RANGE_4_XUBNAME, "   
lv_et_auth_output  TYPE USVCA_T, "   
lv_iv_auth_or_comb  TYPE COMB_AUTH_ID, "   
lv_it_group  TYPE SUSR_T_SEL_OPT_GROUP, "   
lv_iv_var_name  TYPE VARNAMECA, "   
lv_et_comb_output  TYPE USVCC_T, "   
lv_it_ugroup  TYPE SUSR_T_SEL_OPT_GROUP, "   
lv_iv_val_usrs  TYPE BOOLE_D, "   SPACE
lv_et_auth_addr_output  TYPE USVCA_ADDR_T, "   
lv_it_uref  TYPE SUSR_T_SEL_OPT_REF, "   
lv_no_additional_data  TYPE BOOLE_D, "   'X'
lv_et_comb_addr_output  TYPE USVCC_ADDR_T, "   
lv_return  TYPE BAPIRET2_T, "   
lv_it_ualias  TYPE SUSR_T_SEL_OPT_ALIAS, "   
lv_it_actgrps  TYPE SUSR_T_SEL_OPT_AGR, "   
lv_it_prof  TYPE SUSR_T_SEL_OPT_PROF. "   

  CALL FUNCTION 'SUSR_SUIM_API_RSUSR008_009_NEW'  "
    EXPORTING
         IV_AUTH_OR_COMB = lv_iv_auth_or_comb
         IV_VAR_NAME = lv_iv_var_name
         IV_VAL_USRS = lv_iv_val_usrs
         NO_ADDITIONAL_DATA = lv_no_additional_data
    IMPORTING
         ET_AUTH_OUTPUT = lv_et_auth_output
         ET_COMB_OUTPUT = lv_et_comb_output
         ET_AUTH_ADDR_OUTPUT = lv_et_auth_addr_output
         ET_COMB_ADDR_OUTPUT = lv_et_comb_addr_output
         RETURN = lv_return
    CHANGING
         IT_USER = lv_it_user
         IT_GROUP = lv_it_group
         IT_UGROUP = lv_it_ugroup
         IT_UREF = lv_it_uref
         IT_UALIAS = lv_it_ualias
         IT_ACTGRPS = lv_it_actgrps
         IT_PROF = lv_it_prof
. " SUSR_SUIM_API_RSUSR008_009_NEW




ABAP code using 7.40 inline data declarations to call FM SUSR_SUIM_API_RSUSR008_009_NEW

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.

 
 
 
 
 
 
 
DATA(ld_iv_val_usrs) = ' '.
 
 
 
DATA(ld_no_additional_data) = 'X'.
 
 
 
 
 
 


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!