<?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 Re: Graph_matrix_2d in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/graph-matrix-2d/m-p/3357597#M805632</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you mean the GRAPH_MATRIX_2D. Could you gave me an excample how i get the push buttons.....&lt;/P&gt;&lt;P&gt;But i want all the graphs inplace.... that would be the best&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That would be awesome&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Gero&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Jul 2012 08:07:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2012-07-13T08:07:17Z</dc:date>
    <item>
      <title>Graph_matrix_2d</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/graph-matrix-2d/m-p/3357593#M805628</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;I'm able to display my pie chart using the above FM.....but my requirement is can i have the column name and its value also to be displayed in the pie chart......for eg i've got a data internal table like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;name        value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;x                10 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;y                 20 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now my pie chart has two slices with  name x and y.......i want the values of the x and y also to be displayed in the labels along with x and y(not in the pie but as labels for the individual slice.......)..........is it possible????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please come up with some solution.........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jan 2008 19:03:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/graph-matrix-2d/m-p/3357593#M805628</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-30T19:03:10Z</dc:date>
    </item>
    <item>
      <title>Re: Graph_matrix_2d</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/graph-matrix-2d/m-p/3357594#M805629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ytest_pie.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF data  OCCURS 1,&lt;/P&gt;&lt;P&gt;        text(36),&lt;/P&gt;&lt;P&gt;        feld1 TYPE p,&lt;/P&gt;&lt;P&gt;      END OF data,&lt;/P&gt;&lt;P&gt;      BEGIN OF opts OCCURS 1,&lt;/P&gt;&lt;P&gt;        c(80) TYPE c,&lt;/P&gt;&lt;P&gt;      END OF opts,&lt;/P&gt;&lt;P&gt;      BEGIN OF tyear OCCURS 1,&lt;/P&gt;&lt;P&gt;        c(20) TYPE c,&lt;/P&gt;&lt;P&gt;      END OF   tyear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;opts-c = 'P2TYPE = PI'.&lt;/P&gt;&lt;P&gt;APPEND opts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data-text = 'X 10'.&lt;/P&gt;&lt;P&gt;data-feld1 = '10'.&lt;/P&gt;&lt;P&gt;APPEND data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data-text = 'Y 20'.&lt;/P&gt;&lt;P&gt;data-feld1 = '20'.&lt;/P&gt;&lt;P&gt;APPEND data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GRAPH_MATRIX_2D'&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    data        = data&lt;/P&gt;&lt;P&gt;    opts        = opts&lt;/P&gt;&lt;P&gt;    tcol        = tyear&lt;/P&gt;&lt;P&gt;  EXCEPTIONS&lt;/P&gt;&lt;P&gt;    col_invalid = 1&lt;/P&gt;&lt;P&gt;    opt_invalid = 2&lt;/P&gt;&lt;P&gt;    OTHERS      = 3.&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jan 2008 19:42:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/graph-matrix-2d/m-p/3357594#M805629</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-30T19:42:25Z</dc:date>
    </item>
    <item>
      <title>Re: Graph_matrix_2d</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/graph-matrix-2d/m-p/3357595#M805630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello together,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i had another qustion. Is it possible to draw more then one chart with GRAPH_MATRIX_2D in one frame. So that the use can choose between an pie or a bar chart.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2012 09:16:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/graph-matrix-2d/m-p/3357595#M805630</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-07-12T09:16:54Z</dc:date>
    </item>
    <item>
      <title>Re: Graph_matrix_2d</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/graph-matrix-2d/m-p/3357596#M805631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gero,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want more than one 2d you can try with&lt;STRONG&gt; GRAPH_MATRIX &lt;/STRONG&gt;function module. In the same frame you will not get. but you will get the push buttons.&lt;/P&gt;&lt;P&gt;For more things you can refer the demo program&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;GRBUSG_4&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ramya R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2012 10:29:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/graph-matrix-2d/m-p/3357596#M805631</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-07-12T10:29:43Z</dc:date>
    </item>
    <item>
      <title>Re: Graph_matrix_2d</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/graph-matrix-2d/m-p/3357597#M805632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you mean the GRAPH_MATRIX_2D. Could you gave me an excample how i get the push buttons.....&lt;/P&gt;&lt;P&gt;But i want all the graphs inplace.... that would be the best&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That would be awesome&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Gero&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jul 2012 08:07:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/graph-matrix-2d/m-p/3357597#M805632</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-07-13T08:07:17Z</dc:date>
    </item>
    <item>
      <title>Re: Graph_matrix_2d</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/graph-matrix-2d/m-p/3357598#M805633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gero,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By using that function module you will get push buttons automatically.&lt;/P&gt;&lt;P&gt;so if you press 2d push button you will get 2D. if you press 3D you will get 3D frame,&lt;/P&gt;&lt;P&gt;If you press 4D you will get 4D frame display. please pass parameters to that function module&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; GRAPH_MATRIX &lt;/STRONG&gt;, you will come to know. or else please check that demo program which i mentioned in earlier conversation.&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;Ramya R&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jul 2012 08:20:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/graph-matrix-2d/m-p/3357598#M805633</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-07-13T08:20:19Z</dc:date>
    </item>
  </channel>
</rss>

