Start of Content Area

Procedure documentation Creating a Web Dynpro Application  Locate the document in its SAP Library structure

Use

For the simple Web Dynpro application with two input fields, a pushbutton, and a table as its result, as detailed in the example in Configuring the Front-End, you require an application-specific view and a standard navigation view.

You use the following procedure to define the appearance of the individual screens. You define how the individual components fit together and specify the sequence of the various views.

Prerequisites

     You have made the required settings in the front-end and back-end system.

     You have authorization for the self-service administrator area.

Procedure

...

       1.      Create the configuration component and add the required parameters.

Use a separate subpackage.

The simple Web Dynpro application given as an example does not require the following steps:

     The component does not use any other components. It is, however, used by other components.

     You can leave the component controller unchanged, since it is not required.

     No views are required in this component.

       2.      Add the IXssAppConf interface to the implemented interfaces.

The system automatically creates various methods.

       3.      Implement the following methods that were created in the previous step:

     Load configuration

     getCAPState

     getNextPerspective

     getStartPerspective

     getROPSTate

       4.      In the begin others section, insert the following local variables:

     private IFPM fpm;

     private NavigationGraph navigationGraph;

     private HashMap perspectives;

       5.      Add the missing import commands. To do so, execute the reorganize imports command.

       6.      Use the create application command to create the application.

Enter the properties and the application properties.

 

End of Content Area