Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Multiple Views in a single report

Former Member
0 Likes
434

How to display multiple views like (left one report and right side one report ) in a single execution.If is is possible please send me some sample code.

From Source | From SAP

-


1 | 1

2 | 2

-


How to display multiple views like (left one report and right side one report ) in a single execution.If is is possible please send me some sample code.

From Source | From SAP

-


1 | 1

2 | 2

-


2 REPLIES 2
Read only

Former Member
0 Likes
391

Hi,

plz check this url it might be useful to you.

<u>http://help.sap.com/search/search_overview.jsp.</u>

Read only

former_member386202
Active Contributor
0 Likes
391

Hi,

Use Back Satement for that.

ex.

DATA: TOWN(10) VALUE 'New York',

CUSTOMER1(10) VALUE 'Charly',

CUSTOMER2(10) VALUE 'Sam',

SALES1 TYPE I VALUE 1100,

SALES2 TYPE I VALUE 2200.

RESERVE 2 LINES.

WRITE: TOWN, CUSTOMER1,

/ CUSTOMER2 UNDER CUSTOMER1.

BACK.

WRITE: 50 SALES1,

/ SALES2 UNDER SALES1.

Reagrds,

prashant