SAP CRS_MAP_PSOB_REL_TO_PROD_IOR Function Module for









CRS_MAP_PSOB_REL_TO_PROD_IOR is a standard crs map psob rel to prod ior 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 crs map psob rel to prod ior FM, simply by entering the name CRS_MAP_PSOB_REL_TO_PROD_IOR into the relevant SAP transaction such as SE37 or SE38.

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



Function CRS_MAP_PSOB_REL_TO_PROD_IOR 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 'CRS_MAP_PSOB_REL_TO_PROD_IOR'"
EXPORTING
IS_BAPICRMDH2 = "BAPI Structure for Downloading Header Data
IT_CONTRACTOBJECT = "Contract Object: Complex Structure for Up/Download
* IT_CONTRACTOBJECT_OLD = "Contract Object: Complex Structure for Up/Download

IMPORTING
EV_REL_NOT_CHANGED = "Indicator for IS-PS-CA Applications
ET_RETURN = "Table with BAPI Return Information
ET_INDOBJ_HEAD = "
ET_IOBJ_PSCBA = "
ET_IOBJ_PSCCO = "
ET_IOBJ_PSCCR = "
ET_IOBJ_PSCEX = "
ET_IOBJ_PSCIC = "
ET_IOBJ_PSCIP = "
ET_IOBJ_PSCOP = "
.



IMPORTING Parameters details for CRS_MAP_PSOB_REL_TO_PROD_IOR

IS_BAPICRMDH2 - BAPI Structure for Downloading Header Data

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

IT_CONTRACTOBJECT - Contract Object: Complex Structure for Up/Download

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

IT_CONTRACTOBJECT_OLD - Contract Object: Complex Structure for Up/Download

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

EXPORTING Parameters details for CRS_MAP_PSOB_REL_TO_PROD_IOR

EV_REL_NOT_CHANGED - Indicator for IS-PS-CA Applications

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

ET_RETURN - Table with BAPI Return Information

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

ET_INDOBJ_HEAD -

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

ET_IOBJ_PSCBA -

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

ET_IOBJ_PSCCO -

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

ET_IOBJ_PSCCR -

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

ET_IOBJ_PSCEX -

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

ET_IOBJ_PSCIC -

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

ET_IOBJ_PSCIP -

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

ET_IOBJ_PSCOP -

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

Copy and paste ABAP code example for CRS_MAP_PSOB_REL_TO_PROD_IOR 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_is_bapicrmdh2  TYPE BAPICRMDH2, "   
lv_ev_rel_not_changed  TYPE XFELD_PS, "   
lv_et_return  TYPE BAPIRETTAB, "   
lv_et_indobj_head  TYPE COMXIF_PRODUCT_INDOBJ_H_T_PI, "   
lv_it_contractobject  TYPE FMCA_PSOB_ALL_T, "   
lv_et_iobj_pscba  TYPE COMXIF_PR_REL_PSCBA_T_PI, "   
lv_it_contractobject_old  TYPE FMCA_PSOB_ALL_T, "   
lv_et_iobj_pscco  TYPE COMXIF_PR_REL_PSCCO_T_PI, "   
lv_et_iobj_psccr  TYPE COMXIF_PR_REL_PSCCR_T_PI, "   
lv_et_iobj_pscex  TYPE COMXIF_PR_REL_PSCEX_T_PI, "   
lv_et_iobj_pscic  TYPE COMXIF_PR_REL_PSCIC_T_PI, "   
lv_et_iobj_pscip  TYPE COMXIF_PR_REL_PSCIP_T_PI, "   
lv_et_iobj_pscop  TYPE COMXIF_PR_REL_PSCOP_T_PI. "   

  CALL FUNCTION 'CRS_MAP_PSOB_REL_TO_PROD_IOR'  "
    EXPORTING
         IS_BAPICRMDH2 = lv_is_bapicrmdh2
         IT_CONTRACTOBJECT = lv_it_contractobject
         IT_CONTRACTOBJECT_OLD = lv_it_contractobject_old
    IMPORTING
         EV_REL_NOT_CHANGED = lv_ev_rel_not_changed
         ET_RETURN = lv_et_return
         ET_INDOBJ_HEAD = lv_et_indobj_head
         ET_IOBJ_PSCBA = lv_et_iobj_pscba
         ET_IOBJ_PSCCO = lv_et_iobj_pscco
         ET_IOBJ_PSCCR = lv_et_iobj_psccr
         ET_IOBJ_PSCEX = lv_et_iobj_pscex
         ET_IOBJ_PSCIC = lv_et_iobj_pscic
         ET_IOBJ_PSCIP = lv_et_iobj_pscip
         ET_IOBJ_PSCOP = lv_et_iobj_pscop
. " CRS_MAP_PSOB_REL_TO_PROD_IOR




ABAP code using 7.40 inline data declarations to call FM CRS_MAP_PSOB_REL_TO_PROD_IOR

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!