Entering content frame

Procedure documentation Page Fragment for User Input Locate the document in its SAP Library structure

Use

The Registration Page includes the page fragment userdata.htm.

Procedure

Create the page fragment userdata.htm using the following layout:

<%@page language="abap" %>

<form method="POST">

  <p>

  Please enter your data in the form below:

<p>

<table>

<tr><td>Your e-mail address:</td>

        <td> <input type="text" name="customerid" size="80"></td></tr>

    <tr><td>Title:</td>

        <td> <input type="text" name="title" size="20"></td></tr>

<tr><td>First name:</td>

        <td> <input type="text" name="firstname" size="80"></td></tr>

    <tr><td>Last name:</td>

        <td><input type="text" name="lastname" size="80"></td></tr>

<tr><td>Company:</td>

        <td> <input type="text" name="company" size="80"></td></tr>

    <tr><td>Street:</td>

        <td>  <input type="text" name="street" size="80"></td></tr>

<tr><td>Zip code:</td>

        <td> <input type="text" name="zip" size="5"></td></tr>

    <tr><td>City: </td>

        <td> <input type="text" name="city" size="80"></td></tr>

<tr><td>Country:</td>

        <td> <input type="text" name="country" value=<%= country%> size="80"></td></tr>

</table>

<table>

    <tr><td>Please provide a password to protect your account:</td>

        <td> <input type="password" name="pwd" size="15"></td></tr>

    <tr><td>Please confirm your password: </td>

        <td> <input type="password" name="pwd2" size="15"></td></tr>

  </table>

  <p>

  <input type="submit" value="   Done   " name="onInputProcessing(newuser)">

                  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;

  <input type="reset" value="Reset" name="B2">

</form>

This is simply a table with HTML input fields for the user input.

The fields have the same names as the Page Attributes on the Registration Page. This ensures that the values can be transferred to the subsequent page.

This graphic is explained in the accompanying textGo on to the Page Attributes for the registration page.

 

 

Leaving content frame