Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Graphical Representation in Abap

Former Member
0 Likes
1,087

Hi Abappers,

How to show Graphical Representation in Abap.If is possible plz send by showing examples.

Regards,

vani.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
874

Hi,

The following FM's are used to create graphs in SAP...

You can execute them and check the paramters to be passed

BUSG SAP Business Graphics

GRAPH_2D Calling up the 2D business graphics

GRAPH_2D_MENUE DO NOT USE (use 'GRAPH_2D' and 'GRAPH_BUSG_MENU_SET')

GRAPH_3D Calling up the 3D presentation graphics

GRAPH_BUSG_COLOR_SET Definition of color pallets for business graphics

GRAPH_BUSG_MENU_SET Pushbutton menu (tool bar) for all BUSG modules

GRAPH_MATRIX Calling up SAP Business Graphics (2D, 3D and 4D)

GRAPH_MATRIX_2D Calling up the 2D graphics (user-friendly version)

GRAPH_MATRIX_3D Structure of 3D graphics (user-friendly version)

GRAPH_MATRIX_4D Calling up a 3D graphic (4th dimension stacked representation)

Regards

Sk

Hi Abappers,

How to show Graphical Representation in Abap.If is possible plz send by showing examples.

Regards,

vani.

4 REPLIES 4
Read only

Former Member
0 Likes
875

Hi,

The following FM's are used to create graphs in SAP...

You can execute them and check the paramters to be passed

BUSG SAP Business Graphics

GRAPH_2D Calling up the 2D business graphics

GRAPH_2D_MENUE DO NOT USE (use 'GRAPH_2D' and 'GRAPH_BUSG_MENU_SET')

GRAPH_3D Calling up the 3D presentation graphics

GRAPH_BUSG_COLOR_SET Definition of color pallets for business graphics

GRAPH_BUSG_MENU_SET Pushbutton menu (tool bar) for all BUSG modules

GRAPH_MATRIX Calling up SAP Business Graphics (2D, 3D and 4D)

GRAPH_MATRIX_2D Calling up the 2D graphics (user-friendly version)

GRAPH_MATRIX_3D Structure of 3D graphics (user-friendly version)

GRAPH_MATRIX_4D Calling up a 3D graphic (4th dimension stacked representation)

Regards

Sk

Read only

Former Member
0 Likes
874

using the Class CL_IGS_DATA you can display the Grpah.

Check this program GRAPHICS_IGS_CHART_TEST

Read only

kai_gutenkunst
Product and Topic Expert
Product and Topic Expert
0 Likes
874

Hi,

if you are sure to use the Windows SAPGUI it's simpler to use class CL_GUI_CHART_ENGINE. See report GRAPHICS_GUI_CE_DEMO.

However, both classes and reports use the same chart engine as it runs as a SAPGUI control and as part of the IGS.

Regards, Kai