Show TOC

 Example: HTML Framework for HTML Templates

The framework of every HTML template for internal service requests should appear as follows:

`include(~service="sr_library", ~theme="99", ~language="", ~name="ISR_Template_Library.html")`

`SAP_TopInclude()`

<html>

<head>

`SAP_PageTitle()`

`SAP_Stylesheet()`

`SAP_JavaScript()`

<head>

<body `SAP_TemplateBodyAttributes()` onload="`SAP_OnloadJavaScript()`">

`SAP_LoadInfoTable()`

`SAP_TemplateHeader()`

`SAP_BodyContentBegin()`

`SAP_ISRFormBegin()`

…`SAP_TemplateFormEnd()`

…`SAP_BodyContentEnd()`

</body>

<html>

The part of the HTML template that is specific to the scenario begins after the statement ` SAP_ISRFormBegin()' .

In this specific part of the HTML template, you can define the form elements for the request.

See also:

Example of Specific Form Elements in HTML Templates