SAP 1119_TRANSL_INT_EXT Function Module for NOTRANSL: EHS: Umsetzen von externen nach interne Strukturen









1119_TRANSL_INT_EXT is a standard 1119 transl int ext 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: EHS: Umsetzen von externen nach interne Strukturen 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 1119 transl int ext FM, simply by entering the name 1119_TRANSL_INT_EXT into the relevant SAP transaction such as SE37 or SE38.

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



Function 1119_TRANSL_INT_EXT 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 '1119_TRANSL_INT_EXT'"NOTRANSL: EHS: Umsetzen von externen nach interne Strukturen
TABLES
* I_HAZSUB_HEADER_API = "EHS: API Hazardous Substance Basic Data
* I_HAZSUB_TEXTDATA_API = "EHS: API Hazardous Substance Addit. Data 1 (Text Type)
* I_HAZSUB_NUMDATA_API = "EHS: API Hazardous Substance Addit. Data 2 (Numeric Type)
* E_HAZSUB_HEADER = "EHS: Hazardous Substance Basic Data
* E_HAZSUB_TEXTDATA = "EHS: Hazardous Substance Additional Data 1 (Text Type)
* E_HAZSUB_NUMDATA = "EHS: Hazardous Substance Additional Data 2 (Numeric Type)
.



TABLES Parameters details for 1119_TRANSL_INT_EXT

I_HAZSUB_HEADER_API - EHS: API Hazardous Substance Basic Data

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

I_HAZSUB_TEXTDATA_API - EHS: API Hazardous Substance Addit. Data 1 (Text Type)

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

I_HAZSUB_NUMDATA_API - EHS: API Hazardous Substance Addit. Data 2 (Numeric Type)

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

E_HAZSUB_HEADER - EHS: Hazardous Substance Basic Data

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

E_HAZSUB_TEXTDATA - EHS: Hazardous Substance Additional Data 1 (Text Type)

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

E_HAZSUB_NUMDATA - EHS: Hazardous Substance Additional Data 2 (Numeric Type)

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

Copy and paste ABAP code example for 1119_TRANSL_INT_EXT 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_i_hazsub_header_api  TYPE STANDARD TABLE OF HSMS_MDAPI, "   
lt_i_hazsub_textdata_api  TYPE STANDARD TABLE OF HSMS_DTAPI, "   
lt_i_hazsub_numdata_api  TYPE STANDARD TABLE OF HSMS_DNAPI, "   
lt_e_hazsub_header  TYPE STANDARD TABLE OF BAPI_1119_MD, "   
lt_e_hazsub_textdata  TYPE STANDARD TABLE OF BAPI_1119_DT, "   
lt_e_hazsub_numdata  TYPE STANDARD TABLE OF BAPI_1119_DN. "   

  CALL FUNCTION '1119_TRANSL_INT_EXT'  "NOTRANSL: EHS: Umsetzen von externen nach interne Strukturen
    TABLES
         I_HAZSUB_HEADER_API = lt_i_hazsub_header_api
         I_HAZSUB_TEXTDATA_API = lt_i_hazsub_textdata_api
         I_HAZSUB_NUMDATA_API = lt_i_hazsub_numdata_api
         E_HAZSUB_HEADER = lt_e_hazsub_header
         E_HAZSUB_TEXTDATA = lt_e_hazsub_textdata
         E_HAZSUB_NUMDATA = lt_e_hazsub_numdata
. " 1119_TRANSL_INT_EXT




ABAP code using 7.40 inline data declarations to call FM 1119_TRANSL_INT_EXT

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!