2008 Dec 18 4:00 AM
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.
2008 Dec 20 6:21 AM
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.
2008 Dec 20 6:25 AM
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
2008 Dec 20 6:43 AM
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.
2008 Dec 20 6:50 AM
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
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |