‎2007 Aug 11 11:22 AM
how to include structures in a report to get data from that structure.
and also tell how to retrive data frm the structure
thanx
‎2007 Aug 11 11:25 AM
Hi..
Create a structure in SE11
In the Report you can declare a work area using the strcture like this
DATA: WA TYPE <Structure>.
You can declare Internal table using:
DATA: Itab TYPE Table of <Structure>.
Structure will not contain any data at the physical database.
Only Tables will contain data.
Using SELECT statement you can retreive data from DB Tables.
<b>Reward if Helpful</b>
‎2007 Aug 11 11:25 AM
Hi..
Create a structure in SE11
In the Report you can declare a work area using the strcture like this
DATA: WA TYPE <Structure>.
You can declare Internal table using:
DATA: Itab TYPE Table of <Structure>.
Structure will not contain any data at the physical database.
Only Tables will contain data.
Using SELECT statement you can retreive data from DB Tables.
<b>Reward if Helpful</b>