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

about structures

Former Member
0 Likes
264

how to include structures in a report to get data from that structure.

and also tell how to retrive data frm the structure

thanx

1 ACCEPTED SOLUTION
Read only

varma_narayana
Active Contributor
0 Likes
251

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>

1 REPLY 1
Read only

varma_narayana
Active Contributor
0 Likes
252

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>