Entering content frameBackground documentation Design Solution Locate the document in its SAP Library structure

After analyzing the page before.htm, you need a set of elements that are easy to use and which can be used for the outlined task area. As a result, this is not a universal solution, but a solution for a clearly delimited application area.

Starting with the example, the initial situation is as follows:

The format of the layout can be specified with BSP elements as follows:

        <sf:SimpleForm id = "sf" >

          <sf:SimpleFormItem id = "name"
                    label = "Name:"
                    value = "<%=name%>" />

 

          <sf:SimpleFormItem id = "password"
                    label = "Password:"
                    value = "<%=password%>"
                    password = "TRUE" />

          <sf:SimpleFormItem id = "email"
                    label = "Email:"
                    value = "<%=email%>" />

        </sf:SimpleForm>

Here you require a new BSP extension, which contains all of the necessary elements. You also need a test page, of course. Finally, you also need to implement the elements.

Procedure

The following describes the procedure for implementing this solution:

  1. Create the new BSP extension
  2. Create the elements for the new BSP extension
    1. Element <SimpleForm>
    2. Element <SimpleFormItem>
  1. Generate your new BSP extension
  2. Create the page after.htm
  3. Specify that the BSP elements are processed dynamically

 

 

Leaving content frame