SAP IATU_HTMLTEMPLATE_INSERT Function Module for
IATU_HTMLTEMPLATE_INSERT is a standard iatu htmltemplate insert 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 iatu htmltemplate insert FM, simply by entering the name IATU_HTMLTEMPLATE_INSERT into the relevant SAP transaction such as SE37 or SE38.
Function Group: SIAC_VERSION_MANAGEMENT
Program Name: SAPLSIAC_VERSION_MANAGEMENT
Main Program: SAPLSIAC_VERSION_MANAGEMENT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function IATU_HTMLTEMPLATE_INSERT 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 'IATU_HTMLTEMPLATE_INSERT'".
EXPORTING
TEMPLATE_NAME = "Template Name
* R3STATE = "ABAP: Program Status (Active, Saved, Transported...)
TABLES
* PIACHTML = "INDX file for HTML templates (language-independent)
* PIACFLOW = "INDX file for HTML templates (language-independent)
* PW3HTMLT = "WAB: Texts for HTML Files
* PIACTU = "
* PIACTUT = "
* PIACTU_C = "
IMPORTING Parameters details for IATU_HTMLTEMPLATE_INSERT
TEMPLATE_NAME - Template Name
Data type: E071-OBJ_NAMEOptional: No
Call by Reference: Yes
R3STATE - ABAP: Program Status (Active, Saved, Transported...)
Data type: D010SINF-R3STATEOptional: Yes
Call by Reference: Yes
TABLES Parameters details for IATU_HTMLTEMPLATE_INSERT
PIACHTML - INDX file for HTML templates (language-independent)
Data type: IACHTMLOptional: Yes
Call by Reference: Yes
PIACFLOW - INDX file for HTML templates (language-independent)
Data type: IACFLOWOptional: Yes
Call by Reference: Yes
PW3HTMLT - WAB: Texts for HTML Files
Data type: W3HTMLTOptional: Yes
Call by Reference: Yes
PIACTU -
Data type: IACTUOptional: Yes
Call by Reference: Yes
PIACTUT -
Data type: IACTUTOptional: Yes
Call by Reference: Yes
PIACTU_C -
Data type: IACTU_COptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for IATU_HTMLTEMPLATE_INSERT 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_piachtml | TYPE STANDARD TABLE OF IACHTML, " | |||
| lv_template_name | TYPE E071-OBJ_NAME, " | |||
| lv_r3state | TYPE D010SINF-R3STATE, " | |||
| lt_piacflow | TYPE STANDARD TABLE OF IACFLOW, " | |||
| lt_pw3htmlt | TYPE STANDARD TABLE OF W3HTMLT, " | |||
| lt_piactu | TYPE STANDARD TABLE OF IACTU, " | |||
| lt_piactut | TYPE STANDARD TABLE OF IACTUT, " | |||
| lt_piactu_c | TYPE STANDARD TABLE OF IACTU_C. " |
|   CALL FUNCTION 'IATU_HTMLTEMPLATE_INSERT' " |
| EXPORTING | ||
| TEMPLATE_NAME | = lv_template_name | |
| R3STATE | = lv_r3state | |
| TABLES | ||
| PIACHTML | = lt_piachtml | |
| PIACFLOW | = lt_piacflow | |
| PW3HTMLT | = lt_pw3htmlt | |
| PIACTU | = lt_piactu | |
| PIACTUT | = lt_piactut | |
| PIACTU_C | = lt_piactu_c | |
| . " IATU_HTMLTEMPLATE_INSERT | ||
ABAP code using 7.40 inline data declarations to call FM IATU_HTMLTEMPLATE_INSERT
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.| "SELECT single OBJ_NAME FROM E071 INTO @DATA(ld_template_name). | ||||
| "SELECT single R3STATE FROM D010SINF INTO @DATA(ld_r3state). | ||||
Search for further information about these or an SAP related objects