<?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: Regarding graph in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-graph/m-p/5777693#M1307771</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, did you try to pass the Tables parameter with the following values:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2 column table with color keys and color values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Column 1: Color key&lt;/P&gt;&lt;P&gt;Column 2: Color values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF PALETTE OCCURS 0,&lt;/P&gt;&lt;P&gt;             KEY(20), &lt;/P&gt;&lt;P&gt;             VAL(20),&lt;/P&gt;&lt;P&gt;           END OF PALETTE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PALETTE-KEY = 'GENBACK'. &lt;/P&gt;&lt;P&gt;PALETTE-VAL = 'BLACK'.&lt;/P&gt;&lt;P&gt;APPEND PALETTE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GRAPH_BUSG_COLOR_SET'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;  PALETTE_ID = '1'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;  PALETTE = PALETTE.&lt;/P&gt;&lt;P&gt;please check the Tables long text for the possible values&lt;/P&gt;&lt;P&gt;Then call your FM for the graph.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Jun 2009 13:28:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-06-22T13:28:13Z</dc:date>
    <item>
      <title>Regarding graph</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-graph/m-p/5777690#M1307768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hav used GFW_PRES_SHOW this RFC for getting the graph its working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used presentation type as  -  gfw_prestype_vertical_bars &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Default bar color is Yellow , blue , green . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If any function module avail for change color? or plz give the solution for change the color.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2009 11:47:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-graph/m-p/5777690#M1307768</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-22T11:47:12Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding graph</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-graph/m-p/5777691#M1307769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try FM 'GRAPH_BUSG_COLOR_SET'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2009 11:51:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-graph/m-p/5777691#M1307769</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-22T11:51:45Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding graph</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-graph/m-p/5777692#M1307770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried but color is not getting changed.. Plz give any other solution&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2009 12:11:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-graph/m-p/5777692#M1307770</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-22T12:11:29Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding graph</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-graph/m-p/5777693#M1307771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, did you try to pass the Tables parameter with the following values:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2 column table with color keys and color values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Column 1: Color key&lt;/P&gt;&lt;P&gt;Column 2: Color values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF PALETTE OCCURS 0,&lt;/P&gt;&lt;P&gt;             KEY(20), &lt;/P&gt;&lt;P&gt;             VAL(20),&lt;/P&gt;&lt;P&gt;           END OF PALETTE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PALETTE-KEY = 'GENBACK'. &lt;/P&gt;&lt;P&gt;PALETTE-VAL = 'BLACK'.&lt;/P&gt;&lt;P&gt;APPEND PALETTE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GRAPH_BUSG_COLOR_SET'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;  PALETTE_ID = '1'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;  PALETTE = PALETTE.&lt;/P&gt;&lt;P&gt;please check the Tables long text for the possible values&lt;/P&gt;&lt;P&gt;Then call your FM for the graph.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2009 13:28:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-graph/m-p/5777693#M1307771</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-22T13:28:13Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding graph</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-graph/m-p/5777694#M1307772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear sir&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried this function module also..but color is not getting changed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2009 04:05:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-graph/m-p/5777694#M1307772</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-23T04:05:44Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding graph</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-graph/m-p/5777695#M1307773</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;U can copy the function module "GFW_PRES_SHOW_MULT " .  Do the following change to get the color what u want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;changes:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;Tables:&lt;/U&gt; add  the &amp;lt;colors_table&amp;gt; as a table.&lt;/P&gt;&lt;P&gt;so_ure code_:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before the code "  color = index + 2.&lt;/P&gt;&lt;P&gt;              if color = 65. color = 1.&lt;/P&gt;&lt;P&gt;              elseif color &amp;gt; 65. color = 2."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write a own code to take the color value from table&amp;lt;colors_table&amp;gt; and assign the value to the color.&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;Rani.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2009 10:48:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-graph/m-p/5777695#M1307773</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-23T10:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding graph</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-graph/m-p/5777696#M1307774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Rani&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its working fine...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2009 03:00:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-graph/m-p/5777696#M1307774</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-24T03:00:02Z</dc:date>
    </item>
  </channel>
</rss>

