2007 Nov 24 7:15 AM
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
-
2007 Nov 27 10:53 AM
Hi,
plz check this url it might be useful to you.
<u>http://help.sap.com/search/search_overview.jsp.</u>
2007 Nov 27 11:00 AM
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