Chinaunix首页 | 论坛 | 博客
  • 博客访问: 668292
  • 博文数量: 194
  • 博客积分: 7067
  • 博客等级: 少将
  • 技术积分: 2008
  • 用 户 组: 普通用户
  • 注册时间: 2008-04-09 14:48
个人简介

我很好

文章分类

全部博文(194)

文章存档

2019年(1)

2018年(1)

2017年(3)

2015年(2)

2012年(2)

2011年(1)

2010年(27)

2009年(15)

2008年(142)

分类: WINDOWS

2008-05-23 16:30:59

 
图形报表,找了很久才找到。

在ABAP设计中,程序员经常需要用图形显示报表的统计结果,我们可以使用函数:GRAPH_MATRIX_3D来达到图形显示。
GRAPH_MATRIX_3D函数参数很多,但只有三个参数必须需要输入:
Table DATA
The first field of table DATA must be a C field of any length. The number values must then be passed in one or more numeric fields. These fields can have type P or F.
Table OPTS
Table OPTS is used to pass all the options which can be changed interactively. Table OPTS must always be passed to the function module, but you can pass an empty table. In this case the default settings are used.
One of the parameters COL1 to COL6
Parameters COL1 to COL6 are used to pass column titles and they also define whether the corresponding table columns should be represented graphically. If a value which is not equal to SPACE is passed, then the corresponding column is represented.
Make sure that at least one of these parameters is passed. A maximum of 6 columns can be represented.
All other paramters are optional.

样例代码:

REPORT ZPR_Graphs.

DATA: BEGIN OF ITAB_MAIN OCCURS 0,
      DATANAME(15),
      QUANTITY1 TYPE I,
      QUANTITY2 TYPE I,
      QUANTITY3 TYPE I,
      QUANTITY4 TYPE I,
   END OF ITAB_MAIN,
   BEGIN OF ITAB_OPTIONS OCCURS 0,
      OPTION(20),
   END OF ITAB_OPTIONS.

ITAB_MAIN-DATANAME = 'Gas'.
ITAB_MAIN-QUANTITY1 = 52.
ITAB_MAIN-QUANTITY2 = 66.
ITAB_MAIN-QUANTITY3 = 0.
ITAB_MAIN-QUANTITY4 = 93.
APPEND ITAB_MAIN.

ITAB_MAIN-DATANAME = 'Electricity'.
ITAB_MAIN-QUANTITY1 = 18.
ITAB_MAIN-QUANTITY2 = 22.
ITAB_MAIN-QUANTITY3 = 19.
ITAB_MAIN-QUANTITY4 = 92.
APPEND ITAB_MAIN.

ITAB_MAIN-DATANAME = 'Fuel'.
ITAB_MAIN-QUANTITY1 = 50.
ITAB_MAIN-QUANTITY2 = 65.
ITAB_MAIN-QUANTITY3 = 59.
ITAB_MAIN-QUANTITY4 = 99.
APPEND ITAB_MAIN.

CALL FUNCTION 'GRAPH_MATRIX_3D'
   EXPORTING
     COL1    = '2001'
     COL2    = '2002'
     COL3    = '2003'
     COL4    = '2004'
     TITL    = 'Expenses - India(INR).'
   TABLES
     DATA    = ITAB_MAIN
     OPTS    = ITAB_OPTIONS
   EXCEPTIONS
     OTHERS   = 1.

通过测试,满不错的。通过函数,找到相应的函数组的其他函数,举一反三了如图。

 

阅读(602) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~