SAP Web Dynpro - SAP List Viewer(ALV)



SAP List Viewer is used to add an ALV component and provides a flexible environment to display lists and tabular structure. A standard output consists of header, toolbar, and an output table. The user can adjust the settings to add column display, aggregations, and sorting options using additional dialog boxes.

Following are the key features of ALV −

  • It supports many properties of the table element as it is based on Web Dynpro table UI element.

  • ALV output can be filtered, sorted, or you can apply calculations.

  • The user can perform application specific functions using UI elements in the toolbar.

  • Allows the user to save the setting in different views.

  • Allows to configure special areas above and below ALV output.

  • Allows to define the extent to which ALV output can be edited.

How to Create an ALV?

Following are the steps to create an ALV.

Step 1 − Use T-code: SE80. Select Web Dynpro comp/intf from the list and enter the name. Click on display. You will be prompted create the component. Click on Yes.

Promoted Component

Step 2 − Select type as Web Dynpro component. Enter the Window name and the View name.

Step 3 − Click the tick mark.

Create Interface ALV

Step 4 − In the change window, enter the component use as ALV, component as SALV_WD_TABLE and description as ALV component.

Change_component_alv

Step 5 − Go to Component Controller and right-click the context. Then select Create Node MAKT with the dictionary structure MAKT.

Change Controller ALV

Step 6 − Select the required attributes from MAKT by using Add Attribute from Structure.

Add Attribute

Required Attribute

Step 7 − Remove the dictionary structure MAKT from the node MAKT and set the properties as follows (Cardinality, Lead selection, etc.)

Deleted Element

Property

Step 8 − Right-click on Component usage in the Object tree → Create Controller Usage.

Create Controller Usage

Step 9 − Go to View → Context tab and drag MAKT node to the view.

Context Tab Makt

After mapping, it will appear as shown in the following screenshot.

Component Controller ALV

Step 10 − Go to Layout and right-click Insert Element.

Insert Element

Create Element

The layout will appear as shown in the following screenshot −

View Container

Step 11 − Go to Properties tab, click create controller usage to add the following to View.

Component Use

Properties ALV

Step 12 − Go to method, use WDDOINIT to write code.

Step 13 − Double-click on the method to enter the code. Enter the following code and initiate the used component ALV.

Code For Used Component

Use GET_MODEL method in the controller.

Method Call Controller

Step 14 − Bind the table to the context node using BIND_TABLE method as follows −

Methods

Step 15 − Go to Window in the Object tree and right-click C1 to embed ALV table to the view.

Main

Once you embed the ALV table, it will appear like this −

Main Table

Step 16 − The last step is to create a Web Dynpro application under the object tree. Enter the name of the application.

Application ALV

Object Name

Step 17 − To execute application, double-click and you will see the output.

Standard View

Using Filters in ALV Output

Using filters, you can limit the data in ALV output. You can create multiple number of filter conditions for each field. To create or delete a filter condition, you can use the method of interface class IF_SALV_WD_FILTER.

You can use the following methods for creating, getting, and deleting filter conditions −

Function Method
Get a specific filter condition GET_FILTER_RULE
Get all filter Conditions of a field GET_FILTER_RULES
Create filter condition CREATE_FILTER_RULE
Delete a specific filter condition DELETE_FILTER_RULE
Advertisements