SAP SCMA_READ_CUSTOMIZING Function Module for









SCMA_READ_CUSTOMIZING is a standard scma read customizing 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 scma read customizing FM, simply by entering the name SCMA_READ_CUSTOMIZING into the relevant SAP transaction such as SE37 or SE38.

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



Function SCMA_READ_CUSTOMIZING 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 'SCMA_READ_CUSTOMIZING'"
EXPORTING
PROFILE = "

TABLES
* T_SCMATREE = "
* T_SCMATREET = "
* T_TSCMA = "
* T_TSCMAT = "
* T_TEXTS = "
* T_SCMAOFFICE = "
.



IMPORTING Parameters details for SCMA_READ_CUSTOMIZING

PROFILE -

Data type: TSCMA-PROFILE
Optional: No
Call by Reference: Yes

TABLES Parameters details for SCMA_READ_CUSTOMIZING

T_SCMATREE -

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

T_SCMATREET -

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

T_TSCMA -

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

T_TSCMAT -

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

T_TEXTS -

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

T_SCMAOFFICE -

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

Copy and paste ABAP code example for SCMA_READ_CUSTOMIZING 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_profile  TYPE TSCMA-PROFILE, "   
lt_t_scmatree  TYPE STANDARD TABLE OF SCMATREE, "   
lt_t_scmatreet  TYPE STANDARD TABLE OF SCMATREET, "   
lt_t_tscma  TYPE STANDARD TABLE OF TSCMA, "   
lt_t_tscmat  TYPE STANDARD TABLE OF TSCMAT, "   
lt_t_texts  TYPE STANDARD TABLE OF THEAD, "   
lt_t_scmaoffice  TYPE STANDARD TABLE OF SCMAOFFICE. "   

  CALL FUNCTION 'SCMA_READ_CUSTOMIZING'  "
    EXPORTING
         PROFILE = lv_profile
    TABLES
         T_SCMATREE = lt_t_scmatree
         T_SCMATREET = lt_t_scmatreet
         T_TSCMA = lt_t_tscma
         T_TSCMAT = lt_t_tscmat
         T_TEXTS = lt_t_texts
         T_SCMAOFFICE = lt_t_scmaoffice
. " SCMA_READ_CUSTOMIZING




ABAP code using 7.40 inline data declarations to call FM SCMA_READ_CUSTOMIZING

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 PROFILE FROM TSCMA 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!