SAP ISH_BP_OBJ_MAP_PARAM Function Module for Mapping Export Parameters Of GET Function Modules For All Roles









ISH_BP_OBJ_MAP_PARAM is a standard ish bp obj map param SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Mapping Export Parameters Of GET Function Modules For All Roles 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 ish bp obj map param FM, simply by entering the name ISH_BP_OBJ_MAP_PARAM into the relevant SAP transaction such as SE37 or SE38.

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



Function ISH_BP_OBJ_MAP_PARAM 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 'ISH_BP_OBJ_MAP_PARAM'"Mapping Export Parameters Of GET Function Modules For All Roles
EXPORTING
* IT_BUPA_HCROLES = "Standard Table for Structure RNBUPA_HCROLES
* IT_HCRELSHIPS = "Standard Table for Structure RNHCRELSHIPS
I_PARAM_SEL = "Fields Requiring Mapping

IMPORTING
ET_NGPA = "IS-H: Table Business Partner
ET_TNWCH94 = "Table of Fee Recipient Data
ET_TNWCH94K = "
ET_TNWCH94B = "
ET_TNWCH94R = "Table of Fee Recipient Data for Rank
ET_NPER_QLDI = "Table of Person Assignment qualitative Grade Data
ET_NPER_QTDI = "Table of Person Assignment quantitative Grade Data
ET_RC = "IS-H: Table Type for Structure BAPIRET2
ET_NADR = "IS-H: Table for Address Data
ETT_NADR_TELNR = "Telephone Numbers for More Than One Addresses(NADR)
ET_NABG = "Table of Employer Data
ET_NDEB = "Table of Customer Data
ET_NKRH = "Table of Customer Data
ET_NPER = "Table of Person Data
ET_NKTR = "Table of Insurance Provider Data
ET_TNREL = "Table of Insurance Provider Assignments
.



IMPORTING Parameters details for ISH_BP_OBJ_MAP_PARAM

IT_BUPA_HCROLES - Standard Table for Structure RNBUPA_HCROLES

Data type: ISH_T_BUPA_HCROLES
Optional: Yes
Call by Reference: Yes

IT_HCRELSHIPS - Standard Table for Structure RNHCRELSHIPS

Data type: ISH_T_HCRELSHIPS
Optional: Yes
Call by Reference: Yes

I_PARAM_SEL - Fields Requiring Mapping

Data type: RNBP_REQ_DATA
Optional: No
Call by Reference: Yes

EXPORTING Parameters details for ISH_BP_OBJ_MAP_PARAM

ET_NGPA - IS-H: Table Business Partner

Data type: ISH_YT_NGPA
Optional: No
Call by Reference: Yes

ET_TNWCH94 - Table of Fee Recipient Data

Data type: ISH_T_TNWCH94
Optional: No
Call by Reference: Yes

ET_TNWCH94K -

Data type: ISH_T_TNWCH94K
Optional: No
Call by Reference: Yes

ET_TNWCH94B -

Data type: ISH_T_TNWCH94B
Optional: No
Call by Reference: Yes

ET_TNWCH94R - Table of Fee Recipient Data for Rank

Data type: ISH_T_TNWCH94R
Optional: No
Call by Reference: Yes

ET_NPER_QLDI - Table of Person Assignment qualitative Grade Data

Data type: ISH_T_NPER_QLDI
Optional: No
Call by Reference: Yes

ET_NPER_QTDI - Table of Person Assignment quantitative Grade Data

Data type: ISH_T_NPER_QTDI
Optional: No
Call by Reference: Yes

ET_RC - IS-H: Table Type for Structure BAPIRET2

Data type: ISH_BAPIRET2_TAB_TYPE
Optional: No
Call by Reference: Yes

ET_NADR - IS-H: Table for Address Data

Data type: ISH_YT_NADR
Optional: No
Call by Reference: Yes

ETT_NADR_TELNR - Telephone Numbers for More Than One Addresses(NADR)

Data type: ISH_TT_NADR_TELNR
Optional: No
Call by Reference: Yes

ET_NABG - Table of Employer Data

Data type: ISH_T_NABG
Optional: No
Call by Reference: Yes

ET_NDEB - Table of Customer Data

Data type: ISH_T_NDEB
Optional: No
Call by Reference: Yes

ET_NKRH - Table of Customer Data

Data type: ISH_T_NKRH
Optional: No
Call by Reference: Yes

ET_NPER - Table of Person Data

Data type: ISH_T_NPER
Optional: No
Call by Reference: Yes

ET_NKTR - Table of Insurance Provider Data

Data type: ISH_T_NKTR
Optional: No
Call by Reference: Yes

ET_TNREL - Table of Insurance Provider Assignments

Data type: ISH_T_TNREL
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for ISH_BP_OBJ_MAP_PARAM 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_et_ngpa  TYPE ISH_YT_NGPA, "   
lv_it_bupa_hcroles  TYPE ISH_T_BUPA_HCROLES, "   
lv_et_tnwch94  TYPE ISH_T_TNWCH94, "   
lv_et_tnwch94k  TYPE ISH_T_TNWCH94K, "   
lv_et_tnwch94b  TYPE ISH_T_TNWCH94B, "   
lv_et_tnwch94r  TYPE ISH_T_TNWCH94R, "   
lv_et_nper_qldi  TYPE ISH_T_NPER_QLDI, "   
lv_et_nper_qtdi  TYPE ISH_T_NPER_QTDI, "   
lv_et_rc  TYPE ISH_BAPIRET2_TAB_TYPE, "   
lv_et_nadr  TYPE ISH_YT_NADR, "   
lv_it_hcrelships  TYPE ISH_T_HCRELSHIPS, "   
lv_i_param_sel  TYPE RNBP_REQ_DATA, "   
lv_ett_nadr_telnr  TYPE ISH_TT_NADR_TELNR, "   
lv_et_nabg  TYPE ISH_T_NABG, "   
lv_et_ndeb  TYPE ISH_T_NDEB, "   
lv_et_nkrh  TYPE ISH_T_NKRH, "   
lv_et_nper  TYPE ISH_T_NPER, "   
lv_et_nktr  TYPE ISH_T_NKTR, "   
lv_et_tnrel  TYPE ISH_T_TNREL. "   

  CALL FUNCTION 'ISH_BP_OBJ_MAP_PARAM'  "Mapping Export Parameters Of GET Function Modules For All Roles
    EXPORTING
         IT_BUPA_HCROLES = lv_it_bupa_hcroles
         IT_HCRELSHIPS = lv_it_hcrelships
         I_PARAM_SEL = lv_i_param_sel
    IMPORTING
         ET_NGPA = lv_et_ngpa
         ET_TNWCH94 = lv_et_tnwch94
         ET_TNWCH94K = lv_et_tnwch94k
         ET_TNWCH94B = lv_et_tnwch94b
         ET_TNWCH94R = lv_et_tnwch94r
         ET_NPER_QLDI = lv_et_nper_qldi
         ET_NPER_QTDI = lv_et_nper_qtdi
         ET_RC = lv_et_rc
         ET_NADR = lv_et_nadr
         ETT_NADR_TELNR = lv_ett_nadr_telnr
         ET_NABG = lv_et_nabg
         ET_NDEB = lv_et_ndeb
         ET_NKRH = lv_et_nkrh
         ET_NPER = lv_et_nper
         ET_NKTR = lv_et_nktr
         ET_TNREL = lv_et_tnrel
. " ISH_BP_OBJ_MAP_PARAM




ABAP code using 7.40 inline data declarations to call FM ISH_BP_OBJ_MAP_PARAM

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



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!