SAP RS_IGS_MAP_CREATE Function Module for Creates a map using the IGS BWXGIS interpreter
RS_IGS_MAP_CREATE is a standard rs igs map create SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Creates a map using the IGS BWXGIS interpreter 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 rs igs map create FM, simply by entering the name RS_IGS_MAP_CREATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: RS_IGS
Program Name: SAPLRS_IGS
Main Program: SAPLRS_IGS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function RS_IGS_MAP_CREATE 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 'RS_IGS_MAP_CREATE'"Creates a map using the IGS BWXGIS interpreter.
EXPORTING
I_PARAMETER_XML = "Parameter in XML
I_SHAPE_XML = "Shapefiles of Info-Objects in XML
I_DATA_XML = "Data in XML
* I_RFC_DESTINATION = 'IGS_RFC_DEST' "Logical Destination
IMPORTING
E_RESULT_MIME = "Result-Mime-Data
E_RESULT_XML = "Result XML
TABLES
* E_T_MESSAGE = "Message
* I_T_STATISTIC_INFO = "OLAP Statistics: Mass Insert of Event Data
EXCEPTIONS
INTERNAL_ERROR = 1 EXTERNAL_ERROR = 2
IMPORTING Parameters details for RS_IGS_MAP_CREATE
I_PARAMETER_XML - Parameter in XML
Data type: XSTRINGOptional: No
Call by Reference: No ( called with pass by value option)
I_SHAPE_XML - Shapefiles of Info-Objects in XML
Data type: XSTRINGOptional: No
Call by Reference: No ( called with pass by value option)
I_DATA_XML - Data in XML
Data type: XSTRINGOptional: No
Call by Reference: No ( called with pass by value option)
I_RFC_DESTINATION - Logical Destination
Data type: STRINGDefault: 'IGS_RFC_DEST'
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for RS_IGS_MAP_CREATE
E_RESULT_MIME - Result-Mime-Data
Data type: XSTRINGOptional: No
Call by Reference: No ( called with pass by value option)
E_RESULT_XML - Result XML
Data type: XSTRINGOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for RS_IGS_MAP_CREATE
E_T_MESSAGE - Message
Data type: BICS_PROV_MESSAGEOptional: Yes
Call by Reference: Yes
I_T_STATISTIC_INFO - OLAP Statistics: Mass Insert of Event Data
Data type: RSSTA_S_EVENTINPUTOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
INTERNAL_ERROR - Internal error
Data type:Optional: No
Call by Reference: Yes
EXTERNAL_ERROR - External Error
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for RS_IGS_MAP_CREATE 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_e_t_message | TYPE STANDARD TABLE OF BICS_PROV_MESSAGE, " | |||
| lv_e_result_mime | TYPE XSTRING, " | |||
| lv_internal_error | TYPE XSTRING, " | |||
| lv_i_parameter_xml | TYPE XSTRING, " | |||
| lv_i_shape_xml | TYPE XSTRING, " | |||
| lv_e_result_xml | TYPE XSTRING, " | |||
| lv_external_error | TYPE XSTRING, " | |||
| lt_i_t_statistic_info | TYPE STANDARD TABLE OF RSSTA_S_EVENTINPUT, " | |||
| lv_i_data_xml | TYPE XSTRING, " | |||
| lv_i_rfc_destination | TYPE STRING. " 'IGS_RFC_DEST' |
|   CALL FUNCTION 'RS_IGS_MAP_CREATE' "Creates a map using the IGS BWXGIS interpreter |
| EXPORTING | ||
| I_PARAMETER_XML | = lv_i_parameter_xml | |
| I_SHAPE_XML | = lv_i_shape_xml | |
| I_DATA_XML | = lv_i_data_xml | |
| I_RFC_DESTINATION | = lv_i_rfc_destination | |
| IMPORTING | ||
| E_RESULT_MIME | = lv_e_result_mime | |
| E_RESULT_XML | = lv_e_result_xml | |
| TABLES | ||
| E_T_MESSAGE | = lt_e_t_message | |
| I_T_STATISTIC_INFO | = lt_i_t_statistic_info | |
| EXCEPTIONS | ||
| INTERNAL_ERROR = 1 | ||
| EXTERNAL_ERROR = 2 | ||
| . " RS_IGS_MAP_CREATE | ||
ABAP code using 7.40 inline data declarations to call FM RS_IGS_MAP_CREATE
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_i_rfc_destination) | = 'IGS_RFC_DEST'. | |||
Search for further information about these or an SAP related objects