SAP PI_BP_MAP_COMM_DATA_RD_VEND Function Module for NOTRANSL: CRM GP: Mappen der Kommunikationsdaten auf IDOC-Segmente (releas









PI_BP_MAP_COMM_DATA_RD_VEND is a standard pi bp map comm data rd vend SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: CRM GP: Mappen der Kommunikationsdaten auf IDOC-Segmente (releas 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 pi bp map comm data rd vend FM, simply by entering the name PI_BP_MAP_COMM_DATA_RD_VEND into the relevant SAP transaction such as SE37 or SE38.

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



Function PI_BP_MAP_COMM_DATA_RD_VEND 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 'PI_BP_MAP_COMM_DATA_RD_VEND'"NOTRANSL: CRM GP: Mappen der Kommunikationsdaten auf IDOC-Segmente (releas
EXPORTING
* IV_CLEAR_FIELDS = ' ' "

CHANGING
CS_E1LFA1M = "

TABLES
* IT_FAX_DATA = "
* IT_PRT_DATA = "
* IT_SSF_DATA = "
* IT_PAG_DATA = "
* IT_PHONE_DATA = "
* IT_TELEX_DATA = "
* IT_TELETEX_DATA = "
* IT_URI_DATA = "
* IT_SMTP_DATA = "
* IT_RML_DATA = "
* IT_X400_DATA = "
* IT_RFC_DATA = "
.



IMPORTING Parameters details for PI_BP_MAP_COMM_DATA_RD_VEND

IV_CLEAR_FIELDS -

Data type: C
Default: ' '
Optional: Yes
Call by Reference: Yes

CHANGING Parameters details for PI_BP_MAP_COMM_DATA_RD_VEND

CS_E1LFA1M -

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

TABLES Parameters details for PI_BP_MAP_COMM_DATA_RD_VEND

IT_FAX_DATA -

Data type: BUSEI_COM_BUPA_FAX_T
Optional: Yes
Call by Reference: No ( called with pass by value option)

IT_PRT_DATA -

Data type: BUSEI_COM_BUPA_PRT_T
Optional: Yes
Call by Reference: No ( called with pass by value option)

IT_SSF_DATA -

Data type: BUSEI_COM_BUPA_SSF_T
Optional: Yes
Call by Reference: No ( called with pass by value option)

IT_PAG_DATA -

Data type: BUSEI_COM_BUPA_PAG_T
Optional: Yes
Call by Reference: No ( called with pass by value option)

IT_PHONE_DATA -

Data type: BUSEI_COM_BUPA_TELEPHONE_T
Optional: Yes
Call by Reference: No ( called with pass by value option)

IT_TELEX_DATA -

Data type: BUSEI_COM_BUPA_TLX_T
Optional: Yes
Call by Reference: No ( called with pass by value option)

IT_TELETEX_DATA -

Data type: BUSEI_COM_BUPA_TTX_T
Optional: Yes
Call by Reference: No ( called with pass by value option)

IT_URI_DATA -

Data type: BUSEI_COM_BUPA_URI_T
Optional: Yes
Call by Reference: No ( called with pass by value option)

IT_SMTP_DATA -

Data type: BUSEI_COM_BUPA_SMTP_T
Optional: Yes
Call by Reference: No ( called with pass by value option)

IT_RML_DATA -

Data type: BUSEI_COM_BUPA_RML_T
Optional: Yes
Call by Reference: No ( called with pass by value option)

IT_X400_DATA -

Data type: BUSEI_COM_BUPA_X400_T
Optional: Yes
Call by Reference: No ( called with pass by value option)

IT_RFC_DATA -

Data type: BUSEI_COM_BUPA_RFC_T
Optional: Yes
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for PI_BP_MAP_COMM_DATA_RD_VEND 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_cs_e1lfa1m  TYPE E1LFA1M, "   
lt_it_fax_data  TYPE STANDARD TABLE OF BUSEI_COM_BUPA_FAX_T, "   
lv_iv_clear_fields  TYPE C, "   ' '
lt_it_prt_data  TYPE STANDARD TABLE OF BUSEI_COM_BUPA_PRT_T, "   
lt_it_ssf_data  TYPE STANDARD TABLE OF BUSEI_COM_BUPA_SSF_T, "   
lt_it_pag_data  TYPE STANDARD TABLE OF BUSEI_COM_BUPA_PAG_T, "   
lt_it_phone_data  TYPE STANDARD TABLE OF BUSEI_COM_BUPA_TELEPHONE_T, "   
lt_it_telex_data  TYPE STANDARD TABLE OF BUSEI_COM_BUPA_TLX_T, "   
lt_it_teletex_data  TYPE STANDARD TABLE OF BUSEI_COM_BUPA_TTX_T, "   
lt_it_uri_data  TYPE STANDARD TABLE OF BUSEI_COM_BUPA_URI_T, "   
lt_it_smtp_data  TYPE STANDARD TABLE OF BUSEI_COM_BUPA_SMTP_T, "   
lt_it_rml_data  TYPE STANDARD TABLE OF BUSEI_COM_BUPA_RML_T, "   
lt_it_x400_data  TYPE STANDARD TABLE OF BUSEI_COM_BUPA_X400_T, "   
lt_it_rfc_data  TYPE STANDARD TABLE OF BUSEI_COM_BUPA_RFC_T. "   

  CALL FUNCTION 'PI_BP_MAP_COMM_DATA_RD_VEND'  "NOTRANSL: CRM GP: Mappen der Kommunikationsdaten auf IDOC-Segmente (releas
    EXPORTING
         IV_CLEAR_FIELDS = lv_iv_clear_fields
    CHANGING
         CS_E1LFA1M = lv_cs_e1lfa1m
    TABLES
         IT_FAX_DATA = lt_it_fax_data
         IT_PRT_DATA = lt_it_prt_data
         IT_SSF_DATA = lt_it_ssf_data
         IT_PAG_DATA = lt_it_pag_data
         IT_PHONE_DATA = lt_it_phone_data
         IT_TELEX_DATA = lt_it_telex_data
         IT_TELETEX_DATA = lt_it_teletex_data
         IT_URI_DATA = lt_it_uri_data
         IT_SMTP_DATA = lt_it_smtp_data
         IT_RML_DATA = lt_it_rml_data
         IT_X400_DATA = lt_it_x400_data
         IT_RFC_DATA = lt_it_rfc_data
. " PI_BP_MAP_COMM_DATA_RD_VEND




ABAP code using 7.40 inline data declarations to call FM PI_BP_MAP_COMM_DATA_RD_VEND

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.

 
 
DATA(ld_iv_clear_fields) = ' '.
 
 
 
 
 
 
 
 
 
 
 
 


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!