zoukankan      html  css  js  c++  java
  • ABAP 3D Graphs with SAP

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

  • 相关阅读:
    前端开发--vue开发部分报错指南
    前端开发--Mongodb篇
    前端开发--nginx番外篇
    前端开发--nginx篇
    Mac笔记本使用小道解答集
    vue开发路由相关基础知识和笔记
    PostCSS的插件 -- 关于vue rem适配布局方案
    Nodejs -- 使用koa2搭建数据爬虫
    mac OSX 实用快捷键
    如何将自己的vue组件发布为npm包
  • 原文地址:https://www.cnblogs.com/xiaomaohai/p/6157081.html
Copyright © 2011-2022 走看看