SAP Function Modules

EXIT_SAPLOIDA_001 SAP Function module - MCOE Call Customer Function Modules







EXIT_SAPLOIDA_001 is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.

See here to view full function module documentation and code listing, simply by entering the name EXIT_SAPLOIDA_001 into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: XOID
Released Date: Not Released
Processing type: Normal fucntion module
Normal function module settings


Pattern for FM EXIT_SAPLOIDA_001 - EXIT SAPLOIDA 001





CALL FUNCTION 'EXIT_SAPLOIDA_001' "MCOE Call Customer Function Modules
  EXPORTING
    document_level =            "
    display_only =              "
    name =                      "               Value from system table screen
    group1 =                    "               Value from system table screen
    group2 =                    "               Value from system table screen
    group3 =                    "               Value from system table screen
    group4 =                    "               Value from system table screen
    length =                    "               Value from system table screen
  CHANGING
    indicator_changed =         "
    required =                  "               Value from system table screen
    input =                     "               Value from system table screen
    output =                    "               Value from system table screen
    intensified =               "               Value from system table screen
    invisible =                 "               Value from system table screen
    active =                    "               Value from system table screen
    .  "  EXIT_SAPLOIDA_001

ABAP code example for Function Module EXIT_SAPLOIDA_001





The ABAP code below is a full code listing to execute function module EXIT_SAPLOIDA_001 including all data declarations. The code uses 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 original method of declaring data variables up front. 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).


DATA(ld_indicator_changed) = 'some text here'.
DATA(ld_required) = 'some text here'.
DATA(ld_input) = 'some text here'.
DATA(ld_output) = 'some text here'.
DATA(ld_intensified) = 'some text here'.
DATA(ld_invisible) = 'some text here'.
DATA(ld_active) = 'some text here'.
DATA(ld_document_level) = 'some text here'.
DATA(ld_display_only) = 'some text here'.
DATA(ld_name) = 'some text here'.
DATA(ld_group1) = 'some text here'.
DATA(ld_group2) = 'some text here'.
DATA(ld_group3) = 'some text here'.
DATA(ld_group4) = 'some text here'.
DATA(ld_length) = 'some text here'. . CALL FUNCTION 'EXIT_SAPLOIDA_001' EXPORTING document_level = ld_document_level display_only = ld_display_only name = ld_name group1 = ld_group1 group2 = ld_group2 group3 = ld_group3 group4 = ld_group4 length = ld_length CHANGING indicator_changed = ld_indicator_changed required = ld_required input = ld_input output = ld_output intensified = ld_intensified invisible = ld_invisible active = ld_active . " EXIT_SAPLOIDA_001
IF SY-SUBRC EQ 0. "All OK ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.

DATA:
ld_indicator_changed  TYPE STRING ,
ld_document_level  TYPE STRING ,
ld_required  TYPE STRING ,
ld_display_only  TYPE STRING ,
ld_input  TYPE STRING ,
ld_name  TYPE STRING ,
ld_output  TYPE STRING ,
ld_group1  TYPE STRING ,
ld_intensified  TYPE STRING ,
ld_group2  TYPE STRING ,
ld_invisible  TYPE STRING ,
ld_group3  TYPE STRING ,
ld_active  TYPE STRING ,
ld_group4  TYPE STRING ,
ld_length  TYPE STRING .

ld_indicator_changed = 'some text here'.
ld_document_level = 'some text here'.
ld_required = 'some text here'.
ld_display_only = 'some text here'.
ld_input = 'some text here'.
ld_name = 'some text here'.
ld_output = 'some text here'.
ld_group1 = 'some text here'.
ld_intensified = 'some text here'.
ld_group2 = 'some text here'.
ld_invisible = 'some text here'.
ld_group3 = 'some text here'.
ld_active = 'some text here'.
ld_group4 = 'some text here'.
ld_length = 'some text here'.

Contribute (Add Comments)

Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name EXIT_SAPLOIDA_001 or its description.