SAP ISM_JGBP_MEM_007_PARAM_FILL Function Module for IS-M: BAPI BP: Enter BAPI Parameters in Global Memory
ISM_JGBP_MEM_007_PARAM_FILL is a standard ism jgbp mem 007 param fill 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: BAPI BP: Enter BAPI Parameters in Global Memory 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 ism jgbp mem 007 param fill FM, simply by entering the name ISM_JGBP_MEM_007_PARAM_FILL into the relevant SAP transaction such as SE37 or SE38.
Function Group: JGBP_MEM
Program Name: SAPLJGBP_MEM
Main Program: SAPLJGBP_MEM
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISM_JGBP_MEM_007_PARAM_FILL 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_JGBP_MEM_007_PARAM_FILL'"IS-M: BAPI BP: Enter BAPI Parameters in Global Memory.
EXPORTING
PV_PARTNER = "Business Partner Number
PV_UPDATEFLAG = "Change Indicator for Address Transfer Structures
PS_PARAMS = "IS-M: Business Partner Role Check Attributes
PS_PARAMS_ENQUEUE = "IS-M: Business Partner Lock Attributes
PS_ISM007 = "IS-M: Business Partner BAPI Parameter STR
PS_ISM007X = "IS-M: Business Partner BAPI Parameter STR
PS_CENTRAL_REL = "IS-M: Business Partner BAPI SAP BP Central STR
PS_ADDRESSES_REL = "IS-M: Business Partner BAPI SAP BP Address STR
CHANGING
PT_RETURN = "Return Table
IMPORTING Parameters details for ISM_JGBP_MEM_007_PARAM_FILL
PV_PARTNER - Business Partner Number
Data type: BU_PARTNEROptional: No
Call by Reference: Yes
PV_UPDATEFLAG - Change Indicator for Address Transfer Structures
Data type: AD_UPDFLAGOptional: No
Call by Reference: Yes
PS_PARAMS - IS-M: Business Partner Role Check Attributes
Data type: RJGBUSISM007_PARAMS_ROLESOptional: No
Call by Reference: Yes
PS_PARAMS_ENQUEUE - IS-M: Business Partner Lock Attributes
Data type: RJGBUSISM007_PARAMS_ENQUEUEOptional: No
Call by Reference: Yes
PS_ISM007 - IS-M: Business Partner BAPI Parameter STR
Data type: RJGBUSISM007_ALL_STROptional: No
Call by Reference: Yes
PS_ISM007X - IS-M: Business Partner BAPI Parameter STR
Data type: RJGBUSISM007_ALL_X_STROptional: No
Call by Reference: Yes
PS_CENTRAL_REL - IS-M: Business Partner BAPI SAP BP Central STR
Data type: RJGBUSISM007_BUS006_CENTRALOptional: No
Call by Reference: Yes
PS_ADDRESSES_REL - IS-M: Business Partner BAPI SAP BP Address STR
Data type: RJGBUSISM007_BUS006_ADDROptional: No
Call by Reference: Yes
CHANGING Parameters details for ISM_JGBP_MEM_007_PARAM_FILL
PT_RETURN - Return Table
Data type: BAPIRET2_TOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISM_JGBP_MEM_007_PARAM_FILL 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_pt_return | TYPE BAPIRET2_T, " | |||
| lv_pv_partner | TYPE BU_PARTNER, " | |||
| lv_pv_updateflag | TYPE AD_UPDFLAG, " | |||
| lv_ps_params | TYPE RJGBUSISM007_PARAMS_ROLES, " | |||
| lv_ps_params_enqueue | TYPE RJGBUSISM007_PARAMS_ENQUEUE, " | |||
| lv_ps_ism007 | TYPE RJGBUSISM007_ALL_STR, " | |||
| lv_ps_ism007x | TYPE RJGBUSISM007_ALL_X_STR, " | |||
| lv_ps_central_rel | TYPE RJGBUSISM007_BUS006_CENTRAL, " | |||
| lv_ps_addresses_rel | TYPE RJGBUSISM007_BUS006_ADDR. " |
|   CALL FUNCTION 'ISM_JGBP_MEM_007_PARAM_FILL' "IS-M: BAPI BP: Enter BAPI Parameters in Global Memory |
| EXPORTING | ||
| PV_PARTNER | = lv_pv_partner | |
| PV_UPDATEFLAG | = lv_pv_updateflag | |
| PS_PARAMS | = lv_ps_params | |
| PS_PARAMS_ENQUEUE | = lv_ps_params_enqueue | |
| PS_ISM007 | = lv_ps_ism007 | |
| PS_ISM007X | = lv_ps_ism007x | |
| PS_CENTRAL_REL | = lv_ps_central_rel | |
| PS_ADDRESSES_REL | = lv_ps_addresses_rel | |
| CHANGING | ||
| PT_RETURN | = lv_pt_return | |
| . " ISM_JGBP_MEM_007_PARAM_FILL | ||
ABAP code using 7.40 inline data declarations to call FM ISM_JGBP_MEM_007_PARAM_FILL
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