!--a11y-->
The layout for the page
order.htm, which you set using the tab page Layout, looks like this:|
<%@page language="abap" %> <%@include file="head.htm" %> <p> If you are already registered with mySAP Bookshop, please enter your e-mail address in the field below. <p> <font color="red"> <%= page->messages->assert_message( 'passwordincorrect' ) %></font><p> <font color="red"> <%= page->messages->assert_message( 'notregistered' ) %></font><p> <form method="POST"> <p> Your e-mail address: <input type="text" name="customerid" size="40"></p> <p> Your password: <input type="password" name="pwd" size="15"> </p> <center> <input type="submit" name="onInputProcessing(doorder)" value="Submit Order"> </center> </form> <p> <a href="newuser.htm">New customers: log on here!</a></p> </body> </html> |
Once a customer has registered (
Registration Page), he or she can log on using his or her e-mail address (key field of the customer table BSCUSTOMER) and password.The following errors can occur at this point:

In all error cases, the
The link to the Registration Page is included so that customers who have not yet registered can do so from here.
Once you can finished with the layout, you can move on to the Page Attributes and the Event Handlers.