<?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: ALV Graph in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-graph/m-p/781409#M39285</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi CK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ALV displays the graph using GFW. So the graph has the capability to be displayed as line chart. But I do not know whether the ALV class gives the reference of the graph object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it doesn't, what about you make your own graphics? You can use "GRAPH_MATRIX&lt;STRONG&gt;" function modules or GFW classes. For GFW demos, inspect programs "GFW_DEMO&lt;/STRONG&gt;".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this can be some clue...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--Serdar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 24 Oct 2004 17:30:47 GMT</pubDate>
    <dc:creator>ssimsekler</dc:creator>
    <dc:date>2004-10-24T17:30:47Z</dc:date>
    <item>
      <title>ALV Graph</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-graph/m-p/781408#M39284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   I need to generate a graph for my statistical report, ALV do provide that option but the only graph format available is bar chart, and i need a line chart. Is that an option to change the graph format and do ALV has this kind of functionality.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions are welcome.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;CK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Oct 2004 15:03:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-graph/m-p/781408#M39284</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-10-24T15:03:33Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Graph</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-graph/m-p/781409#M39285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi CK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ALV displays the graph using GFW. So the graph has the capability to be displayed as line chart. But I do not know whether the ALV class gives the reference of the graph object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it doesn't, what about you make your own graphics? You can use "GRAPH_MATRIX&lt;STRONG&gt;" function modules or GFW classes. For GFW demos, inspect programs "GFW_DEMO&lt;/STRONG&gt;".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this can be some clue...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--Serdar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Oct 2004 17:30:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-graph/m-p/781409#M39285</guid>
      <dc:creator>ssimsekler</dc:creator>
      <dc:date>2004-10-24T17:30:47Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Graph</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-graph/m-p/781410#M39286</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I, now, remember a parameter &amp;lt;b&amp;gt;"IT_ALV_GRAPHICS"&amp;lt;/b&amp;gt; at the interface of the method &amp;lt;b&amp;gt;"set_table_for_first_display"&amp;lt;/b&amp;gt;. Using this parameter you can pass some settings. You pass an internal table of type &amp;lt;b&amp;gt;"DTC_T_TC"&amp;lt;/b&amp;gt;. The row type of the table has two fields (variables/value pairs):&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;PROP_ID :&amp;lt;/b&amp;gt; Assign a constant attribute of the class &amp;lt;b&amp;gt;CL_ALV_GRAPHICS_CU&amp;lt;/b&amp;gt; with prefix &amp;lt;b&amp;gt;CO_PROPID_&amp;lt;/b&amp;gt; to this field to determine the changes to be made to the graphic. Use the &amp;lt;b&amp;gt;CL_ALV_GRAPHICS_CU=&amp;gt;CO_PROPID_TITLE&amp;lt;/b&amp;gt; attribute, for example, to refer to the title of the diagram. &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;PROP_VAL :&amp;lt;/b&amp;gt; The value of the relevant topic, for example, 'My Title'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So check out the constant attributes of the class &amp;lt;b&amp;gt;CL_ALV_GRAPHICS_CU&amp;lt;/b&amp;gt; starting with &amp;lt;b&amp;gt;CO_PROPID_&amp;lt;/b&amp;gt; which may be relevant to your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--Serdar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Oct 2004 17:37:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-graph/m-p/781410#M39286</guid>
      <dc:creator>ssimsekler</dc:creator>
      <dc:date>2004-10-24T17:37:26Z</dc:date>
    </item>
  </channel>
</rss>

