SAP EXIT_SAPMJGWWWIU1_015 Function Module for IS-M: IAC Create Internet User, Further Checks









EXIT_SAPMJGWWWIU1_015 is a standard exit sapmjgwwwiu1 015 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IS-M: IAC Create Internet User, Further Checks processing and below is the pattern details for this FM, 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 exit sapmjgwwwiu1 015 FM, simply by entering the name EXIT_SAPMJGWWWIU1_015 into the relevant SAP transaction such as SE37 or SE38.

Function Group: XJKWWW
Program Name: SAPLXJKWWW
Main Program: SAPLXJKWWW
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function EXIT_SAPMJGWWWIU1_015 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 'EXIT_SAPMJGWWWIU1_015'"IS-M: IAC Create Internet User, Further Checks
EXPORTING
PV_KEY_USER = "IS-M: WWW, Key for Control Settings for Create Internet User
PV_OKCODE = "Function Code
* PV_PRE_CHECK = ' ' "Indicator: Check Before Standard Checks

CHANGING
PS_RJGWWWIU1 = "IS-M: Structure for IAC Create Internet User
PS_CHECK = "IS-M/SD: Structure for WWW; Data for Identification Check
PS_ADDRESS = "IS-M: Structure for WWW, BP Address Data
PS_TEXTS = "IS-M: WWW, Texts for Addresses

EXCEPTIONS
CHECK_FAILED = 1
.



IMPORTING Parameters details for EXIT_SAPMJGWWWIU1_015

PV_KEY_USER - IS-M: WWW, Key for Control Settings for Create Internet User

Data type: JWWWKEY_USER
Optional: No
Call by Reference: Yes

PV_OKCODE - Function Code

Data type: T185-FCODE
Optional: No
Call by Reference: Yes

PV_PRE_CHECK - Indicator: Check Before Standard Checks

Data type: XFELD
Default: SPACE
Optional: Yes
Call by Reference: Yes

CHANGING Parameters details for EXIT_SAPMJGWWWIU1_015

PS_RJGWWWIU1 - IS-M: Structure for IAC Create Internet User

Data type: RJGWWWIU1
Optional: No
Call by Reference: Yes

PS_CHECK - IS-M/SD: Structure for WWW; Data for Identification Check

Data type: RJKWWW_CHECK
Optional: No
Call by Reference: Yes

PS_ADDRESS - IS-M: Structure for WWW, BP Address Data

Data type: RJKWWW_ADDRESS
Optional: No
Call by Reference: Yes

PS_TEXTS - IS-M: WWW, Texts for Addresses

Data type: RJGWWW_TEXTS
Optional: No
Call by Reference: Yes

EXCEPTIONS details

CHECK_FAILED - Errors found

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for EXIT_SAPMJGWWWIU1_015 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_pv_key_user  TYPE JWWWKEY_USER, "   
lv_check_failed  TYPE JWWWKEY_USER, "   
lv_ps_rjgwwwiu1  TYPE RJGWWWIU1, "   
lv_ps_check  TYPE RJKWWW_CHECK, "   
lv_pv_okcode  TYPE T185-FCODE, "   
lv_ps_address  TYPE RJKWWW_ADDRESS, "   
lv_pv_pre_check  TYPE XFELD, "   SPACE
lv_ps_texts  TYPE RJGWWW_TEXTS. "   

  CALL FUNCTION 'EXIT_SAPMJGWWWIU1_015'  "IS-M: IAC Create Internet User, Further Checks
    EXPORTING
         PV_KEY_USER = lv_pv_key_user
         PV_OKCODE = lv_pv_okcode
         PV_PRE_CHECK = lv_pv_pre_check
    CHANGING
         PS_RJGWWWIU1 = lv_ps_rjgwwwiu1
         PS_CHECK = lv_ps_check
         PS_ADDRESS = lv_ps_address
         PS_TEXTS = lv_ps_texts
    EXCEPTIONS
        CHECK_FAILED = 1
. " EXIT_SAPMJGWWWIU1_015




ABAP code using 7.40 inline data declarations to call FM EXIT_SAPMJGWWWIU1_015

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 FCODE FROM T185 INTO @DATA(ld_pv_okcode).
 
 
DATA(ld_pv_pre_check) = ' '.
 
 


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!