SAP COM_PRODUCT_LOGSYS_MAP2R3 Function Module for









COM_PRODUCT_LOGSYS_MAP2R3 is a standard com product logsys map2r3 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 com product logsys map2r3 FM, simply by entering the name COM_PRODUCT_LOGSYS_MAP2R3 into the relevant SAP transaction such as SE37 or SE38.

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



Function COM_PRODUCT_LOGSYS_MAP2R3 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 'COM_PRODUCT_LOGSYS_MAP2R3'"
EXPORTING
IV_RELEASE = "R/3 System, system release
IV_LOGSYS = "Name of a Logical System
IV_MANDT = "R/3 System, Client Number from Logon
IV_SYSID = "Name of SAP R/3 System
IV_USER = "SAP System, User Logon Name

TABLES
IT_CONV = "
ET_CONV = "
CT_MSGLIST = "Structure of Message Variables
IT_NAMETAB_SRC = "Nametab of View or Table for Nametab Comparison
IT_NAMETAB_TRG = "Nametab of View or Table for Nametab Comparison
.



IMPORTING Parameters details for COM_PRODUCT_LOGSYS_MAP2R3

IV_RELEASE - R/3 System, system release

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

IV_LOGSYS - Name of a Logical System

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

IV_MANDT - R/3 System, Client Number from Logon

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

IV_SYSID - Name of SAP R/3 System

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

IV_USER - SAP System, User Logon Name

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

TABLES Parameters details for COM_PRODUCT_LOGSYS_MAP2R3

IT_CONV -

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

ET_CONV -

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

CT_MSGLIST - Structure of Message Variables

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

IT_NAMETAB_SRC - Nametab of View or Table for Nametab Comparison

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

IT_NAMETAB_TRG - Nametab of View or Table for Nametab Comparison

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

Copy and paste ABAP code example for COM_PRODUCT_LOGSYS_MAP2R3 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:
lt_it_conv  TYPE STANDARD TABLE OF SCDTCNVFLD, "   
lv_iv_release  TYPE SYSAPRL, "   
lt_et_conv  TYPE STANDARD TABLE OF SCDTCNVFLD, "   
lv_iv_logsys  TYPE SCDTLOGSYS, "   
lv_iv_mandt  TYPE SYMANDT, "   
lt_ct_msglist  TYPE STANDARD TABLE OF SYMSG, "   
lv_iv_sysid  TYPE SYSYSID, "   
lt_it_nametab_src  TYPE STANDARD TABLE OF NTAB_CMP, "   
lv_iv_user  TYPE SYUNAME, "   
lt_it_nametab_trg  TYPE STANDARD TABLE OF NTAB_CMP. "   

  CALL FUNCTION 'COM_PRODUCT_LOGSYS_MAP2R3'  "
    EXPORTING
         IV_RELEASE = lv_iv_release
         IV_LOGSYS = lv_iv_logsys
         IV_MANDT = lv_iv_mandt
         IV_SYSID = lv_iv_sysid
         IV_USER = lv_iv_user
    TABLES
         IT_CONV = lt_it_conv
         ET_CONV = lt_et_conv
         CT_MSGLIST = lt_ct_msglist
         IT_NAMETAB_SRC = lt_it_nametab_src
         IT_NAMETAB_TRG = lt_it_nametab_trg
. " COM_PRODUCT_LOGSYS_MAP2R3




ABAP code using 7.40 inline data declarations to call FM COM_PRODUCT_LOGSYS_MAP2R3

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!