<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Function modules to display graph in a container in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-modules-to-display-graph-in-a-container/m-p/2899517#M681831</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;P&gt;Bhushanam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Oct 2007 13:27:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-15T13:27:34Z</dc:date>
    <item>
      <title>Function modules to display graph in a container</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-modules-to-display-graph-in-a-container/m-p/2899517#M681831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;P&gt;Bhushanam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Oct 2007 13:27:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-modules-to-display-graph-in-a-container/m-p/2899517#M681831</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-15T13:27:34Z</dc:date>
    </item>
    <item>
      <title>Re: Function modules to display graph in a container</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-modules-to-display-graph-in-a-container/m-p/2899518#M681832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To add a graphics functionality to ALV Grid;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Additionaly, you can have a look at this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP Graphics Help&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_46c/helpdata/en/a1/d9883672d57c73e10000009b38f889/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_46c/helpdata/en/a1/d9883672d57c73e10000009b38f889/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of i_tab occurs 0,&lt;/P&gt;&lt;P&gt;       name(5) type c,&lt;/P&gt;&lt;P&gt;       value   type p,&lt;/P&gt;&lt;P&gt;      end of i_tab.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;i_tab-name = 'SAP'.&lt;/P&gt;&lt;P&gt;i_tab-value = '40'.&lt;/P&gt;&lt;P&gt;append i_tab.&lt;/P&gt;&lt;P&gt;clear  i_tab.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;i_tab-name = 'MSN'.&lt;/P&gt;&lt;P&gt;i_tab-value = '30'.&lt;/P&gt;&lt;P&gt;append i_tab.&lt;/P&gt;&lt;P&gt;clear  i_tab.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;i_tab-name = 'CNN'.&lt;/P&gt;&lt;P&gt;i_tab-value = '27'.&lt;/P&gt;&lt;P&gt;append i_tab.&lt;/P&gt;&lt;P&gt;clear  i_tab.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;i_tab-name = 'ABC'.&lt;/P&gt;&lt;P&gt;i_tab-value = '56'.&lt;/P&gt;&lt;P&gt;append i_tab.&lt;/P&gt;&lt;P&gt;clear  i_tab.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;call function 'GRAPH_2D'&lt;/P&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;P&gt;    TYPE                     = 'PI'&lt;/P&gt;&lt;P&gt;    TITL                     = 'My Graph'&lt;/P&gt;&lt;P&gt;  tables&lt;/P&gt;&lt;P&gt;    data                     = i_tab&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   GUI_REFUSE_GRAPHIC       = 1&lt;/P&gt;&lt;P&gt;   OTHERS                   = 2&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also,Check the fun modules&lt;/P&gt;&lt;P&gt;GRAPH_2D Calling up the 2D business graphics&lt;/P&gt;&lt;P&gt;GRAPH_2D_MENUE DO NOT USE (use 'GRAPH_2D' and 'GRAPH_BUSG_MENU_SET')&lt;/P&gt;&lt;P&gt;GRAPH_3D Calling up the 3D presentation graphics&lt;/P&gt;&lt;P&gt;GRAPH_BUSG_COLOR_SET Definition of color pallets for business graphics&lt;/P&gt;&lt;P&gt;GRAPH_BUSG_MENU_SET Pushbutton menu (tool bar) for all BUSG modules&lt;/P&gt;&lt;P&gt;GRAPH_MATRIX Calling up SAP Business Graphics (2D, 3D and 4D)&lt;/P&gt;&lt;P&gt;GRAPH_MATRIX_2D Calling up the 2D graphics (user-friendly version)&lt;/P&gt;&lt;P&gt;GRAPH_MATRIX_3D Structure of 3D graphics (user-friendly version)&lt;/P&gt;&lt;P&gt;GRAPH_MATRIX_4D Calling up a 3D graphic (4th dimension stacked representation)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Padmam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Oct 2007 13:39:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-modules-to-display-graph-in-a-container/m-p/2899518#M681832</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-15T13:39:23Z</dc:date>
    </item>
  </channel>
</rss>

