<?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: Two Graphs in a single screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/two-graphs-in-a-single-screen/m-p/6219367#M1378842</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Oct 2009 08:38:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-10-12T08:38:32Z</dc:date>
    <item>
      <title>Two Graphs in a single screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/two-graphs-in-a-single-screen/m-p/6219366#M1378841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;I want to display two graphs in a single screen. It should be a pie chart.&lt;/P&gt;&lt;P&gt;Currently I did one pie chart using GRAPH_MATRIX_2D. &lt;/P&gt;&lt;P&gt;It is working fine.&lt;/P&gt;&lt;P&gt;But i want to display another PIE Chart within the same screen.&lt;/P&gt;&lt;P&gt;Can anyone help me sort out?&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Oct 2009 08:29:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/two-graphs-in-a-single-screen/m-p/6219366#M1378841</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-12T08:29:30Z</dc:date>
    </item>
    <item>
      <title>Re: Two Graphs in a single screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/two-graphs-in-a-single-screen/m-p/6219367#M1378842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Oct 2009 08:38:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/two-graphs-in-a-single-screen/m-p/6219367#M1378842</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-12T08:38:32Z</dc:date>
    </item>
    <item>
      <title>Re: Two Graphs in a single screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/two-graphs-in-a-single-screen/m-p/6219368#M1378843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Harini,&lt;/P&gt;&lt;P&gt;The links which sent u is nice....&lt;/P&gt;&lt;P&gt;My requirement is to display two pie charts in a same screen.&lt;/P&gt;&lt;P&gt;As per ur suggession, one pie chart is coming with colors but another pie chart is not coming with colors. simply comes with white...&lt;/P&gt;&lt;P&gt;If i wants to display with BAR chart, i want the each beam value....&lt;/P&gt;&lt;P&gt;can you tell me how to do?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Oct 2009 03:25:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/two-graphs-in-a-single-screen/m-p/6219368#M1378843</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-13T03:25:52Z</dc:date>
    </item>
    <item>
      <title>Re: Two Graphs in a single screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/two-graphs-in-a-single-screen/m-p/6219369#M1378844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vimal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go throungh the following code. it will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT Z_3DGRAPH.*structure declaration for performance measurementTYPES: BEGIN OF ty_performance,&lt;/P&gt;&lt;P&gt;      company(15) TYPE c,&lt;/P&gt;&lt;P&gt;      q1 TYPE i,&lt;/P&gt;&lt;P&gt;      q2 TYPE i,&lt;/P&gt;&lt;P&gt;      q3 type i,&lt;/P&gt;&lt;P&gt;      q4 type i,&lt;/P&gt;&lt;P&gt;      END OF ty_performance.*structure declaration for options table&lt;/P&gt;&lt;P&gt;types : BEGIN OF ty_opttable,&lt;/P&gt;&lt;P&gt;        options(30) TYPE c,&lt;/P&gt;&lt;P&gt;        END OF ty_opttable.*Internal table and work area declarations&lt;/P&gt;&lt;P&gt;DATA: it_performance TYPE STANDARD TABLE OF ty_performance,&lt;/P&gt;&lt;P&gt;      wa_performance TYPE ty_performance.DATA : it_opttable type standard table of ty_opttable,&lt;/P&gt;&lt;P&gt;       wa_opttable type ty_opttable.*initialization event&lt;/P&gt;&lt;P&gt;INITIALIZATION.*start of selection event&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.*clearing the work areas&lt;/P&gt;&lt;P&gt;CLEAR WA_PERFORMANCE.&lt;/P&gt;&lt;P&gt;CLEAR wa_opttable.*appending values into the performance internal table&lt;/P&gt;&lt;P&gt;wa_performance-company = 'Company A'.&lt;/P&gt;&lt;P&gt;wa_performance-q1      = 78.&lt;/P&gt;&lt;P&gt;wa_performance-q2      = 68.&lt;/P&gt;&lt;P&gt;wa_performance-q3      = 79.&lt;/P&gt;&lt;P&gt;wa_performance-q4      = 80.append wa_performance to it_performance.wa_performance-company = 'Company B'.&lt;/P&gt;&lt;P&gt;wa_performance-q1      = 48.&lt;/P&gt;&lt;P&gt;wa_performance-q2      = 68.&lt;/P&gt;&lt;P&gt;wa_performance-q3      = 69.&lt;/P&gt;&lt;P&gt;wa_performance-q4      = 70.append wa_performance to it_performance.wa_performance-company = 'Company C'.&lt;/P&gt;&lt;P&gt;wa_performance-q1      = 78.&lt;/P&gt;&lt;P&gt;wa_performance-q2      = 48.&lt;/P&gt;&lt;P&gt;wa_performance-q3      = 79.&lt;/P&gt;&lt;P&gt;wa_performance-q4      = 85.append wa_performance to it_performance.*appending values into the options internal tablewa_opttable-options = 'P3TYPE = TO'.&lt;/P&gt;&lt;P&gt;APPEND wa_opttable TO it_opttable.wa_opttable-options = 'P2TYPE = VB'.&lt;/P&gt;&lt;P&gt;APPEND wa_opttable TO it_opttable.wa_opttable-options = 'TISIZE = 1'.&lt;/P&gt;&lt;P&gt;APPEND wa_opttable TO it_opttable.*calling the graph function module&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'GRAPH_MATRIX_3D'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      col1      = 'Quarter 1'&lt;/P&gt;&lt;P&gt;      col2      = 'Quarter 2'&lt;/P&gt;&lt;P&gt;      col3      = 'Quarter 3'&lt;/P&gt;&lt;P&gt;      col4      = 'Quarter 4'&lt;/P&gt;&lt;P&gt;       dim1      = 'In Percentage%'&lt;/P&gt;&lt;P&gt;      set_focus = 'X'&lt;/P&gt;&lt;P&gt;      titl      = 'Company Performances'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      data      = it_performance&lt;/P&gt;&lt;P&gt;      opts      = it_opttable&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      others    = 1.&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;Rajesh Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Oct 2009 04:46:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/two-graphs-in-a-single-screen/m-p/6219369#M1378844</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-13T04:46:33Z</dc:date>
    </item>
    <item>
      <title>Re: Two Graphs in a single screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/two-graphs-in-a-single-screen/m-p/6219370#M1378845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vimal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please have a look on the example program &lt;STRONG&gt;DEMO_GFW_PRES_SHOW_MULT&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also have a look on &lt;STRONG&gt;GRAL&lt;/STRONG&gt; T-Code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may have to use two different container in your screen and fill those with Graphs as per your requirement..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hope it will solve your problem..&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;ilesh 24x7&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ilesh Nandaniya&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Oct 2009 05:23:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/two-graphs-in-a-single-screen/m-p/6219370#M1378845</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-13T05:23:32Z</dc:date>
    </item>
    <item>
      <title>Re: Two Graphs in a single screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/two-graphs-in-a-single-screen/m-p/6219371#M1378846</link>
      <description>&lt;P&gt;Thank youuuuuuuu &amp;lt;3.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Mar 2023 19:57:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/two-graphs-in-a-single-screen/m-p/6219371#M1378846</guid>
      <dc:creator>rtyrt</dc:creator>
      <dc:date>2023-03-23T19:57:21Z</dc:date>
    </item>
  </channel>
</rss>

