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

displaying output in table format

Former Member
0 Likes
1,400

hi experts,

data in my z table is like this.

01.06.2006 02.06.2006 03.06.2006 04.06.2006

-


01

-


001 23 32 90 43

002 32 09 48 43

004 42 34 34 23

005 76 45 67 93

now i want to generate a classical report to get the output in the same table format.

01.06.2006 is the date field

01 is the group field

001 - 004 is the subgroup field

23,32---- is the data

please help me regarding this issue.

hi experts,

data in my z table is like this.

01.06.2006 02.06.2006 03.06.2006 04.06.2006

-


01

-


001 23 32 90 43

002 32 09 48 43

004 42 34 34 23

005 76 45 67 93

now i want to generate a classical report to get the output in the same table format.

01.06.2006 is the date field

01 is the group field

001 - 004 is the subgroup field

23,32---- is the data

please help me regarding this issue.

4 REPLIES 4
Read only

Former Member
0 Likes
891

Hi harini ,

can u plz tell again the exact data in ur table with field names written on the header.

May be people didnt understand the exact data in ur table.its little confusing.

I m sure some one will solve ur problem.

Thanks n regards,

Chitra.

Read only

former_member585060
Active Contributor
0 Likes
891

Hi,

Use AT and ENDAT events in the LOOP and ENDLOOP of your output internal table, just clarrify which are the constant text of header, and which are the values from Ztable.

Regards

Bala Krishna

Read only

dev_parbutteea
Active Contributor
0 Likes
891

Hi,

You have to create an internal table with the following fields:

- date

- group

- subgroup

- additional data fields

Then you have to fill in your internal table and display the data using FM REUSE_ALV_GRID_DISPLAY. You have to have a grouping by date and group.

Regards,

Dev.

Read only

Former Member
0 Likes
891

hi , you can achieve this by using AT NEW key word, for every day u calculating the data so

AT NEW date field name .

write : / group field name.

ENDAT.

AT NEW groupname.

write : +sub groupname,

datafield+.

ENDAT.

hope this will help you.

regards

chinnaiya