Application Development 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: 

Function modules to display graph in a container

Former Member
0 Kudos

Hi,

Can anyone suggest me is there any other function module to display graph in a container other than "GFW_PRES_SHOW_MULT" why because when I am displaying the graph using that function module I am getting boxes in the graph display which is not needed so please send me other function module or tell me whether there is any way to remove the boxes in the graph at the time of display by using the same function module given above.

Thanks in Advance.

Bhushanam.

1 REPLY 1

Former Member
0 Kudos

Hi,

To add a graphics functionality to ALV Grid;

1. Add a user button on the ALV Grid control, utilizing "toolbar" event and "set_toolbar_interactive" methods of the class "cl_gui_alv_grid".

2. As the function of this button, your routine should use GFW objects or "GRAPH_MATRIX..." function modules to display your graph. You implement your routine at the event "user_command".

Additionaly, you can have a look at this

SAP Graphics Help

-


http://help.sap.com/saphelp_46c/helpdata/en/a1/d9883672d57c73e10000009b38f889/frameset.htm

data: begin of i_tab occurs 0,

name(5) type c,

value type p,

end of i_tab.

i_tab-name = 'SAP'.

i_tab-value = '40'.

append i_tab.

clear i_tab.

i_tab-name = 'MSN'.

i_tab-value = '30'.

append i_tab.

clear i_tab.

i_tab-name = 'CNN'.

i_tab-value = '27'.

append i_tab.

clear i_tab.

i_tab-name = 'ABC'.

i_tab-value = '56'.

append i_tab.

clear i_tab.

call function 'GRAPH_2D'

EXPORTING

TYPE = 'PI'

TITL = 'My Graph'

tables

data = i_tab

EXCEPTIONS

GUI_REFUSE_GRAPHIC = 1

OTHERS = 2

.

if sy-subrc <> 0.

endif.

Also,Check the fun modules

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,

Padmam.