You are on page 1of 10

Using Totals and Subtotals

Feature of ALV Component in


WD4A

Applies to:
Web Dynpro for ABAP For more information, visit the Web Dynpro ABAP homepage.

Summary
The tutorial describes how to configure ALV and how to make use of Totals and Subtotals feature provided
by ALV component in Web Dynpro for ABAP.

Author: Manas Dua


Company: SAP Labs India Pvt. Ltd
Created on: 26 June 2009

Author Bio
Author works as a developer for Insurance and Sales Force Management project in Bangalore.

SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com


© 2009 SAP AG 1
Using Totals and Subtotals Feature of ALV Component in WD4A

Table of Contents
Introduction .........................................................................................................................................................3
Getting Started ................................................................................................................................................3
Creating ALV Component Usage....................................................................................................................4
Binding Data to ALV........................................................................................................................................6
Creating Subtotals for ALV .............................................................................................................................6
Testing the Application....................................................................................................................................8
Related Content..................................................................................................................................................9
Copyright...........................................................................................................................................................10

SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com


© 2009 SAP AG 2
Using Totals and Subtotals Feature of ALV Component in WD4A

Introduction
SAP List Viewer (ALV) is a flexible tool used to display data in a tabular format. The tool provides common
list operations as standard functions and can be enhanced by self-defined options.
As the developer of the application, we have various methods at our disposal to define the appearance,
function, and run-time behavior of this ALV output.
One such behavior which most developers have to define is Summing up the numeric columns based on
some parameter like Currency.
In this particular article we’ll see how an ALV can be configured by code to create Total and Subtotal Rows
based on user requirements.
We’ll be using data of SFLIGHT table and we’ll be displaying total of Ticket Prices based on Ticket Currency

Getting Started
• Create a sample web dynpro component (let’s say ZTEST_ALV).
• Add a view to it (ALV_VIEW).
• In view ALV_VIEW create a view container UI element and assign a name to it (let’s say
ALV_CONT)
• Create a window (ALV_WINDOW) and embed ALV_VIEW to this window.
• Create a web dynpro application (ZTEST_WDA_ALV) for this newly created component
ZTEST_ALV and mention Interface View as ALV_WINDOW and plug name as DEFAULT.
• Create a node in component controller named as TABLE_DATA with Dictionary Structure as
SFLIGHT and cardinality as 0...n. Transfer all table columns in SFLIGHT so as to create attributes
for node.
• To fill data we’ve created method FILL_DATA which selects all data from SFLIGHT and then we
bind this fetched data to node TABLE_DATA. Call the method FILL_DATA in WDDOINIT of
component controller. Following is the code for FILL_DATA method
method FILL_DATA .

DATA lo_nd_table_data TYPE REF TO if_wd_context_node.


DATA lt_table_data TYPE wd_this->Elements_table_data.

* get node reference


lo_nd_table_data = wd_context->get_child_node( name = wd_this->wdctx_table_data ).

* select all data from SFLIGHT


select * from sflight into table lt_table_data.

* bind data to node


lo_nd_table_data-
>bind_table( new_items = lt_table_data set_initial_elements = abap_true ).

endmethod.

SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com


© 2009 SAP AG 3
Using Totals and Subtotals Feature of ALV Component in WD4A

Creating ALV Component Usage


With basic customizing in place, next step would be to create a Component Usage for ALV.
• First we’ll be defining a component usage for the ALV component SALV_WD_TABLE in our
application component. For this go to your component ZTEST_ALV and in Used Components tab
click on + button to create a component usage for type SALV_WD_TABLE. Give a name to your
component usage under Component Use column (let’s say MY_ALV).

Defining Usage of ALV Component


• Now we have to define the usage of this component in the properties of our view (ALV_VIEW). For
this click on ALV_VIEW and in Properties tab under Used Controllers/ Components section click on
Create button to select entries related to our defined component usage MY_ALV.

Defining Usage of MY_ALV component in View


• Once the component use is defined for view, next step would be to embed the ALV view into
window’s view container UI element. For this go to Window ALV_WINDOW and right click on view

SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com


© 2009 SAP AG 4
Using Totals and Subtotals Feature of ALV Component in WD4A

container UI element (ALV_CONT) to embed a view. Select declared ALV component MY_ALV and
with View\ Interface View entry as TABLE

Embedding the ALV view into View Container

SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com


© 2009 SAP AG 5
Using Totals and Subtotals Feature of ALV Component in WD4A

Binding Data to ALV


To bind the data to ALV, click on Component Usages and select our used ALV component MY_ALV and
expand it to view INTERFACECONTROLLER_USAGE node. To bind the data to ALV, drag the node
TABLE_DATA from component controller and map it to DATA node of ALV context. This action will map the
data from component controller context node to ALV Interface controller context node DATA.

Binding Data to ALV

Creating Subtotals for ALV


Once the data is bound, next step is to configure the ALV for creating subtotals.
For this create a method named as CREATE_SUBTOTAL and call it inside view WDDOINIT method.
Inside CREATE_SUBTOTAL we’ll be writing the code for creating subtotal of Price column based on
Currency.
Following are the steps performed in CREATE_SUBTOTAL method –
• Getting the instance of ALV
• Getting all columns
• Looping at columns and declaring aggregation rule for PRICE column.
• For creating subtotal based on Currency create a sort rule for currency column.

SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com


© 2009 SAP AG 6
Using Totals and Subtotals Feature of ALV Component in WD4A

Following is the code snipped for CREATE_SUBTOTAL method –


method CREATE_SUBTOTAL .
*This method creates subtotal for PRICE based on currency column
DATA: lo_cmp_usage TYPE ref to if_wd_component_usage.
DATA: lr_salv_wd_table TYPE REF TO iwci_salv_wd_table.
DATA: lr_column_settings TYPE REF TO if_salv_wd_column_settings,
lr_column TYPE REF TO cl_salv_wd_column,
lt_column TYPE salv_wd_t_column_ref,
ls_column TYPE salv_wd_s_column_ref.
DATA: lr_function_settings TYPE REF TO CL_SALV_WD_CONFIG_TABLE.
DATA: lr_field_settings TYPE REF TO IF_SALV_WD_FIELD_SETTINGS,
lr_field_curr TYPE REF TO CL_SALV_WD_FIELD,
lr_field_amnt TYPE REF TO CL_SALV_WD_FIELD.
DATA: lv_aggr_rule TYPE REF TO CL_SALV_WD_AGGR_RULE.
DATA: lr_sort_rule TYPE REF TO CL_SALV_WD_SORT_RULE.
*create an instance of ALV component
lo_cmp_usage = wd_this->wd_cpuse_MY_ALV( ).
* if not initialized, then initialize
if lo_cmp_usage->has_active_component( ) is initial.
lo_cmp_usage->create_component( ).
endif.
* get ALV component
lr_salv_wd_table = wd_this->wd_cpifc_MY_ALV( ).
lr_function_settings = lr_salv_wd_table->get_model( ).
* get reference to column settings
lr_column_settings ?= lr_function_settings.
* get all columns
lt_column = lr_column_settings->get_columns( ).
* loop at columns
loop at lt_column into ls_column.
CASE ls_column-id.
when 'PRICE'.
* for PRICE aggregate field
CALL METHOD LR_FUNCTION_SETTINGS->IF_SALV_WD_FIELD_SETTINGS~GET_FIELD
EXPORTING
FIELDNAME = 'PRICE'
RECEIVING
VALUE = lr_field_amnt.
* create aggregate rule as total
CALL METHOD LR_FIELD_AMNT->IF_SALV_WD_AGGR~CREATE_AGGR_RULE
EXPORTING
AGGREGATION_TYPE = IF_SALV_WD_C_AGGREGATION=>AGGRTYPE_TOTAL
RECEIVING
VALUE = lv_aggr_rule.
when 'CURRENCY'.
CALL METHOD LR_FUNCTION_SETTINGS->IF_SALV_WD_FIELD_SETTINGS~GET_FIELD
EXPORTING
FIELDNAME = 'CURRENCY'
RECEIVING
VALUE = lr_field_curr.
* sub totals based on contract currency.
CALL METHOD LR_FIELD_CURR->IF_SALV_WD_SORT~CREATE_SORT_RULE
EXPORTING
SORT_ORDER = IF_SALV_WD_C_SORT=>SORT_ORDER_ASCENDING
GROUP_AGGREGATION = ABAP_TRUE

SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com


© 2009 SAP AG 7
Using Totals and Subtotals Feature of ALV Component in WD4A

RECEIVING
VALUE = lr_sort_rule.
*hide others
when OTHERS.
ls_column-r_column->set_visible( if_wdl_core=>visibility_none ).
endcase.
endloop.
endmethod.

Testing the Application


Test the application created above ZTEST_WDA_ALV to see the subtotals of Price column based on
currency in ALV output.

ALV with Subtotals of Airfare based on Currency

SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com


© 2009 SAP AG 8
Using Totals and Subtotals Feature of ALV Component in WD4A

Related Content
For more information, visit the User Interface Technology homepage.
For more information, visit the Web Dynpro ABAP homepage.

SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com


© 2009 SAP AG 9
Using Totals and Subtotals Feature of ALV Component in WD4A

Copyright
© Copyright 2009 SAP AG. All rights reserved.
No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of SAP AG.
The information contained herein may be changed without prior notice.
Some software products marketed by SAP AG and its distributors contain proprietary software components of other software vendors.
Microsoft, Windows, Excel, Outlook, and PowerPoint are registered trademarks of Microsoft Corporation.
IBM, DB2, DB2 Universal Database, System i, System i5, System p, System p5, System x, System z, System z10, System z9, z10, z9,
iSeries, pSeries, xSeries, zSeries, eServer, z/VM, z/OS, i5/OS, S/390, OS/390, OS/400, AS/400, S/390 Parallel Enterprise Server,
PowerVM, Power Architecture, POWER6+, POWER6, POWER5+, POWER5, POWER, OpenPower, PowerPC, BatchPipes,
BladeCenter, System Storage, GPFS, HACMP, RETAIN, DB2 Connect, RACF, Redbooks, OS/2, Parallel Sysplex, MVS/ESA, AIX,
Intelligent Miner, WebSphere, Netfinity, Tivoli and Informix are trademarks or registered trademarks of IBM Corporation.
Linux is the registered trademark of Linus Torvalds in the U.S. and other countries.
Adobe, the Adobe logo, Acrobat, PostScript, and Reader are either trademarks or registered trademarks of Adobe Systems
Incorporated in the United States and/or other countries.
Oracle is a registered trademark of Oracle Corporation.
UNIX, X/Open, OSF/1, and Motif are registered trademarks of the Open Group.
Citrix, ICA, Program Neighborhood, MetaFrame, WinFrame, VideoFrame, and MultiWin are trademarks or registered trademarks of
Citrix Systems, Inc.
HTML, XML, XHTML and W3C are trademarks or registered trademarks of W3C®, World Wide Web Consortium, Massachusetts
Institute of Technology.
Java is a registered trademark of Sun Microsystems, Inc.
JavaScript is a registered trademark of Sun Microsystems, Inc., used under license for technology invented and implemented by
Netscape.
SAP, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign, SAP Business ByDesign, and other SAP products and services mentioned
herein as well as their respective logos are trademarks or registered trademarks of SAP AG in Germany and other countries.
Business Objects and the Business Objects logo, BusinessObjects, Crystal Reports, Crystal Decisions, Web Intelligence, Xcelsius, and
other Business Objects products and services mentioned herein as well as their respective logos are trademarks or registered
trademarks of Business Objects S.A. in the United States and in other countries. Business Objects is an SAP company.
All other product and service names mentioned are the trademarks of their respective companies. Data contained in this document
serves informational purposes only. National product specifications may vary.
These materials are subject to change without notice. These materials are provided by SAP AG and its affiliated companies ("SAP
Group") for informational purposes only, without representation or warranty of any kind, and SAP Group shall not be liable for errors or
omissions with respect to the materials. The only warranties for SAP Group products and services are those that are set forth in the
express warranty statements accompanying such products and services, if any. Nothing herein should be construed as constituting an
additional warranty.

SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com


© 2009 SAP AG 10

You might also like