zoukankan      html  css  js  c++  java
  • ABAP

    在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.

    样例代码:

    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.

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

  • 相关阅读:
    SQL Server 2005 学习笔记之触发器简介[转]
    什么是BCD 码
    关于C# 中的Attribute 特性
    也谈Asp.net 中的身份验证
    SQL Server 2005 创建分区表
    使用SerialPort 对象实现串口拨号器通信[下]
    子角色权限的实现
    SQL Server 中,实现 varbinary 与 varchar 类型之间的数据转换
    TSQL 常用排名函数
    关于ASP.NET 将数据导出成Excel 的总结[中]
  • 原文地址:https://www.cnblogs.com/ruingy/p/3453451.html
Copyright © 2011-2022 走看看