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.

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

  • 相关阅读:
    程序员代码面试指南:IT名企算法与数据结构题目最优解
    经典排序算法
    Log4j输出格式控制--log4j的PatternLayout参数含义
    常用数据库4 mongodb
    常用数据库2 sqlite及SQL注入
    面试常问-数据库索引实现原理
    自定义web框架
    HTML|CSS之布局相关总结
    C++模板类练习题
    C++中的运算符重载练习题
  • 原文地址:https://www.cnblogs.com/ruingy/p/3453451.html
Copyright © 2011-2022 走看看