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.

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

  • 相关阅读:
    CSS和Js样式属性的对照关系
    CSS选择器
    主成分分析(PCA)核心思想
    线性变换的本质
    java 滤镜实现
    Spring Boot工程发布到Docker
    解决maven的报错
    spring boot初探
    WPF的Page介绍及Page Window Frame 之间的链接使用示例,嵌套问题
    浅谈WPF页间导航
  • 原文地址:https://www.cnblogs.com/ruingy/p/3453451.html
Copyright © 2011-2022 走看看