
Creating Page after.htm
Use
Once you have created your new
BSP extension with the two new elements, you can use this new extension already in a new page in your BSP application.All elements are defined, and empty standard implementations were generated by the system for each element. As a result, the elements can be used already, even if they do not create any tasks.
Procedure
|
<%@page language="abap"%> <%@extension name = "HTMLB" prefix = "htmlb" %> <%@extension name = "BSP_TUTORIAL_COMPLEX" prefix = "sf" %> <htmlb:content> <sf:SimpleFormItem id = "password" label = "Password:" value = "<%=password%>" password = "TRUE" /> <sf:SimpleFormItem id = "email" label = "Email:" value = "<%=email%>" /> </sf:SimpleForm> </htmlb:form> </htmlb:page> </htmlb:content> |
Result
Everything runs as usual, although there is no output.
In the next step, implement
dynamic BSP element processing