SAP ISM_JGBP_MEM_007_PARAM_GET Function Module for IS-M: BAPI BP: Read BAPI Parameters in Global Memory
ISM_JGBP_MEM_007_PARAM_GET is a standard ism jgbp mem 007 param get 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: Read 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 get FM, simply by entering the name ISM_JGBP_MEM_007_PARAM_GET 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_GET 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_GET'"IS-M: BAPI BP: Read BAPI Parameters in Global Memory.
EXPORTING
PV_PARTNER = "Business Partner Number
IMPORTING
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
PS_ENQUEUE = "IS-M: Business Partner Lock Attributes
EXCEPTIONS
NOT_FOUND_IN_LUW = 1
IMPORTING Parameters details for ISM_JGBP_MEM_007_PARAM_GET
PV_PARTNER - Business Partner Number
Data type: BU_PARTNEROptional: No
Call by Reference: Yes
EXPORTING Parameters details for ISM_JGBP_MEM_007_PARAM_GET
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
PS_ENQUEUE - IS-M: Business Partner Lock Attributes
Data type: RJGBUSISM007_PARAMS_ENQUEUEOptional: No
Call by Reference: Yes
EXCEPTIONS details
NOT_FOUND_IN_LUW -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISM_JGBP_MEM_007_PARAM_GET 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_ps_ism007 | TYPE RJGBUSISM007_ALL_STR, " | |||
| lv_pv_partner | TYPE BU_PARTNER, " | |||
| lv_not_found_in_luw | TYPE BU_PARTNER, " | |||
| lv_ps_ism007x | TYPE RJGBUSISM007_ALL_X_STR, " | |||
| lv_ps_central_rel | TYPE RJGBUSISM007_BUS006_CENTRAL, " | |||
| lv_ps_addresses_rel | TYPE RJGBUSISM007_BUS006_ADDR, " | |||
| lv_ps_enqueue | TYPE RJGBUSISM007_PARAMS_ENQUEUE. " |
|   CALL FUNCTION 'ISM_JGBP_MEM_007_PARAM_GET' "IS-M: BAPI BP: Read BAPI Parameters in Global Memory |
| EXPORTING | ||
| PV_PARTNER | = lv_pv_partner | |
| IMPORTING | ||
| PS_ISM007 | = lv_ps_ism007 | |
| PS_ISM007X | = lv_ps_ism007x | |
| PS_CENTRAL_REL | = lv_ps_central_rel | |
| PS_ADDRESSES_REL | = lv_ps_addresses_rel | |
| PS_ENQUEUE | = lv_ps_enqueue | |
| EXCEPTIONS | ||
| NOT_FOUND_IN_LUW = 1 | ||
| . " ISM_JGBP_MEM_007_PARAM_GET | ||
ABAP code using 7.40 inline data declarations to call FM ISM_JGBP_MEM_007_PARAM_GET
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