Ниже кусок кода который выводит диаграммы с помощью функционального модуля GRAPH_MATRIX_3D который выводит вот такой график
BEGIN OF ty_performance, company(15) TYPE c, q1 TYPE i, q2 TYPE i, q3 type i, q4 type i, END OF ty_performance, BEGIN OF ty_opttable, options(30) TYPE c, END OF ty_opttable. wa_performance TYPE ty_performance, it_opttable type standard table of ty_opttable, wa_opttable type ty_opttable. CLEAR WA_PERFORMANCE. CLEAR wa_opttable. wa_performance-company = 'Company A'. wa_performance-q1 = 78. wa_performance-q2 = 68. wa_performance-q3 = 79. wa_performance-q4 = 80. wa_performance-company = 'Company B'. wa_performance-q1 = 48. wa_performance-q2 = 68. wa_performance-q3 = 69. wa_performance-q4 = 70. wa_performance-company = 'Company C'. wa_performance-q1 = 78. wa_performance-q2 = 48. wa_performance-q3 = 79. wa_performance-q4 = 85. *appending values into the options internal table wa_opttable-options = 'P3TYPE = TO'. wa_opttable-options = 'P2TYPE = VB'. wa_opttable-options = 'TISIZE = 1'. CALL FUNCTION 'GRAPH_MATRIX_3D' EXPORTING col1 = 'Quarter 1' col2 = 'Quarter 2' col3 = 'Quarter 3' col4 = 'Quarter 4' dim1 = 'In Percentage%' set_focus = 'X' titl = 'Company Performances' data = it_performance opts = it_opttable EXCEPTIONS others = 1.