SAP ISM_SD_SET_MEMORY_ART_BAPI Function Module for
ISM_SD_SET_MEMORY_ART_BAPI is a standard ism sd set memory art bapi 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 ism sd set memory art bapi FM, simply by entering the name ISM_SD_SET_MEMORY_ART_BAPI into the relevant SAP transaction such as SE37 or SE38.
Function Group: JKSD_ARTICLE_MAPPING
Program Name: SAPLJKSD_ARTICLE_MAPPING
Main Program: SAPLJKSD_ARTICLE_MAPPING
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISM_SD_SET_MEMORY_ART_BAPI 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 'ISM_SD_SET_MEMORY_ART_BAPI'".
EXPORTING
IV_MATNR = "
IMPORTING
ES_RETURN_MESSAGE = "
CHANGING
CT_BAPI_CLIENTEXT = "
CT_BAPI_CLIENTEXTX = "
CT_BAPI_PLANTEXT = "
CT_BAPI_PLANTEXTX = "
CT_BAPI_SALESEXT = "
CT_BAPI_SALESEXTX = "
IMPORTING Parameters details for ISM_SD_SET_MEMORY_ART_BAPI
IV_MATNR -
Data type: MATNROptional: No
Call by Reference: Yes
EXPORTING Parameters details for ISM_SD_SET_MEMORY_ART_BAPI
ES_RETURN_MESSAGE -
Data type: BAPIRETURN1Optional: No
Call by Reference: Yes
CHANGING Parameters details for ISM_SD_SET_MEMORY_ART_BAPI
CT_BAPI_CLIENTEXT -
Data type: BAPIE1MARAEXTRT_TABOptional: No
Call by Reference: Yes
CT_BAPI_CLIENTEXTX -
Data type: BAPIE1MARAEXTRTX_TABOptional: No
Call by Reference: Yes
CT_BAPI_PLANTEXT -
Data type: BAPIE1MARCEXTRT_TABOptional: No
Call by Reference: Yes
CT_BAPI_PLANTEXTX -
Data type: BAPIE1MARCEXTRTX_TABOptional: No
Call by Reference: Yes
CT_BAPI_SALESEXT -
Data type: BAPIE1MVKEEXTRT_TABOptional: No
Call by Reference: Yes
CT_BAPI_SALESEXTX -
Data type: BAPIE1MVKEEXTRTX_TABOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISM_SD_SET_MEMORY_ART_BAPI 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_iv_matnr | TYPE MATNR, " | |||
| lv_ct_bapi_clientext | TYPE BAPIE1MARAEXTRT_TAB, " | |||
| lv_es_return_message | TYPE BAPIRETURN1, " | |||
| lv_ct_bapi_clientextx | TYPE BAPIE1MARAEXTRTX_TAB, " | |||
| lv_ct_bapi_plantext | TYPE BAPIE1MARCEXTRT_TAB, " | |||
| lv_ct_bapi_plantextx | TYPE BAPIE1MARCEXTRTX_TAB, " | |||
| lv_ct_bapi_salesext | TYPE BAPIE1MVKEEXTRT_TAB, " | |||
| lv_ct_bapi_salesextx | TYPE BAPIE1MVKEEXTRTX_TAB. " |
|   CALL FUNCTION 'ISM_SD_SET_MEMORY_ART_BAPI' " |
| EXPORTING | ||
| IV_MATNR | = lv_iv_matnr | |
| IMPORTING | ||
| ES_RETURN_MESSAGE | = lv_es_return_message | |
| CHANGING | ||
| CT_BAPI_CLIENTEXT | = lv_ct_bapi_clientext | |
| CT_BAPI_CLIENTEXTX | = lv_ct_bapi_clientextx | |
| CT_BAPI_PLANTEXT | = lv_ct_bapi_plantext | |
| CT_BAPI_PLANTEXTX | = lv_ct_bapi_plantextx | |
| CT_BAPI_SALESEXT | = lv_ct_bapi_salesext | |
| CT_BAPI_SALESEXTX | = lv_ct_bapi_salesextx | |
| . " ISM_SD_SET_MEMORY_ART_BAPI | ||
ABAP code using 7.40 inline data declarations to call FM ISM_SD_SET_MEMORY_ART_BAPI
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.Search for further information about these or an SAP related objects