<?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: pie chart in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pie-chart/m-p/3525519#M848123</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;you can check this follwoing program and code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Report program: DEMO_GFW_PRES_SHOW&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:      VALUES TYPE TABLE OF GPRVAL WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;      COLUMN_TEXTS TYPE TABLE OF GPRTXT WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;data: gfw_prestype_lines           TYPE i VALUE 17,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REFRESH VALUES. REFRESH COLUMN_TEXTS.&lt;/P&gt;&lt;P&gt;    VALUES-ROWTXT = CO_GFW_PROG_ROW1. VALUES-VAL1 = 1. VALUES-VAL2 = 5.&lt;/P&gt;&lt;P&gt;    APPEND VALUES.&lt;/P&gt;&lt;P&gt;    VALUES-ROWTXT = CO_GFW_PROG_ROW2. VALUES-VAL1 = 2. VALUES-VAL2 = 6.&lt;/P&gt;&lt;P&gt;    APPEND VALUES.&lt;/P&gt;&lt;P&gt;    VALUES-ROWTXT = CO_GFW_PROG_ROW3. VALUES-VAL1 = 3. VALUES-VAL2 = 7.&lt;/P&gt;&lt;P&gt;    APPEND VALUES.&lt;/P&gt;&lt;P&gt;    COLUMN_TEXTS-COLTXT = CO_GFW_PROG_SAUSAGE. APPEND COLUMN_TEXTS.&lt;/P&gt;&lt;P&gt;    COLUMN_TEXTS-COLTXT = CO_GFW_PROG_CHEESE. APPEND COLUMN_TEXTS.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'GFW_PRES_SHOW'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;          CONTAINER         = 'CONTAINER'&lt;/P&gt;&lt;P&gt;          PRESENTATION_TYPE = GFW_PRESTYPE_LINES&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;         PRESENTATION_TYPE = GFW_PRESTYPE_PIE_CHART&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;         orientation       = gfw_orient_columns&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     TABLES&lt;/P&gt;&lt;P&gt;          VALUES            = VALUES&lt;/P&gt;&lt;P&gt;          COLUMN_TEXTS      = COLUMN_TEXTS&lt;/P&gt;&lt;P&gt;     EXCEPTIONS&lt;/P&gt;&lt;P&gt;          ERROR_OCCURRED    = 1&lt;/P&gt;&lt;P&gt;          OTHERS            = 2.&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;    ...add your error handling here&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    FIRST_CALL = 1.&lt;/P&gt;&lt;P&gt;  ENDIF. "//firstcall initial&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope you will get some idea to achieve your requirements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points, if its helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sekhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 Mar 2008 09:25:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-03T09:25:05Z</dc:date>
    <item>
      <title>pie chart</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pie-chart/m-p/3525515#M848119</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 want to display the Pie Chart in a report .&lt;/P&gt;&lt;P&gt;So Plz give me the details of it.&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>Mon, 03 Mar 2008 06:09:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pie-chart/m-p/3525515#M848119</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-03T06:09:02Z</dc:date>
    </item>
    <item>
      <title>Re: pie chart</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pie-chart/m-p/3525516#M848120</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;You can use FM 'GFW_PRES_SHOW' with PRESENTATION_TYPE = GFW_PRESTYPE_PIE_CHART. You can check documentation of the FM or the where-used list to see how to use it. Below is one sample code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS: GFW.&lt;/P&gt;&lt;P&gt;					&lt;/P&gt;&lt;P&gt;DATA: VALUES       TYPE TABLE OF GPRVAL WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;      COLUMN_TEXTS TYPE TABLE OF GPRTXT WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;					&lt;/P&gt;&lt;P&gt;					&lt;/P&gt;&lt;P&gt;    REFRESH VALUES.&lt;/P&gt;&lt;P&gt;    REFRESH COLUMN_TEXTS.&lt;/P&gt;&lt;P&gt;					&lt;/P&gt;&lt;P&gt;  	&lt;/P&gt;&lt;P&gt;    VALUES-ROWTXT = ''.&lt;/P&gt;&lt;P&gt;    VALUES-VAL1 = 10.&lt;/P&gt;&lt;P&gt;    VALUES-VAL2 = 35.&lt;/P&gt;&lt;P&gt;    VALUES-VAL3 = 45.&lt;/P&gt;&lt;P&gt;    VALUES-VAL4 = 8.&lt;/P&gt;&lt;P&gt;    VALUES-VAL5 = 2.&lt;/P&gt;&lt;P&gt;    APPEND VALUES.&lt;/P&gt;&lt;P&gt;					&lt;/P&gt;&lt;P&gt;    COLUMN_TEXTS-COLTXT = 'Test1'.&lt;/P&gt;&lt;P&gt;    APPEND COLUMN_TEXTS.&lt;/P&gt;&lt;P&gt;    COLUMN_TEXTS-COLTXT = 'Test2'.&lt;/P&gt;&lt;P&gt;    APPEND COLUMN_TEXTS.&lt;/P&gt;&lt;P&gt;    COLUMN_TEXTS-COLTXT = 'Test3'.&lt;/P&gt;&lt;P&gt;    APPEND COLUMN_TEXTS.&lt;/P&gt;&lt;P&gt;    COLUMN_TEXTS-COLTXT = 'Test4'.&lt;/P&gt;&lt;P&gt;    APPEND COLUMN_TEXTS.&lt;/P&gt;&lt;P&gt;    COLUMN_TEXTS-COLTXT = 'Test5'.&lt;/P&gt;&lt;P&gt;    APPEND COLUMN_TEXTS.&lt;/P&gt;&lt;P&gt;					&lt;/P&gt;&lt;P&gt;					&lt;/P&gt;&lt;P&gt;					&lt;/P&gt;&lt;P&gt;   CALL FUNCTION 'GFW_PRES_SHOW'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;          CONTAINER         = 'CONTAINER'&lt;/P&gt;&lt;P&gt;          PRESENTATION_TYPE = GFW_PRESTYPE_PIE_CHART&lt;/P&gt;&lt;P&gt;          X_AXIS_TITLE      = 'Pie1'&lt;/P&gt;&lt;P&gt;          Y_AXIS_TITLE      = 'Pie2'&lt;/P&gt;&lt;P&gt;     TABLES&lt;/P&gt;&lt;P&gt;          VALUES            = VALUES&lt;/P&gt;&lt;P&gt;          COLUMN_TEXTS      = COLUMN_TEXTS&lt;/P&gt;&lt;P&gt;     EXCEPTIONS&lt;/P&gt;&lt;P&gt;          ERROR_OCCURRED    = 1&lt;/P&gt;&lt;P&gt;          OTHERS            = 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Mar 2008 09:11:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pie-chart/m-p/3525516#M848120</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-03T09:11:43Z</dc:date>
    </item>
    <item>
      <title>Re: pie chart</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pie-chart/m-p/3525517#M848121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;To create a basic Excel pie chart from SAP data, you follow these steps:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.  Open any report output screen that displays an SAP report. It can be an SAP query, a custom ABAP report, an SAP standard-delivered report, or any other format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;2.  You have multiple options for how to get your SAP data into Excel, each of which varies depending on your installation version of SAP R/3 and your installation version of Excel. Because there are multiple options for different versions, the menu path and buttons vary for each. It is a good idea to save your SAP report output into an Excel worksheet, which you will use as your mail merge data file. The most popular way to do this is to click the Excel button on your report output toolbar. Excel launches and displays the SAP report in an Excel worksheet. Next, save the report in Excel (for example, as c:\employee_data_chart.xls). Close and exit SAP and Excel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is not required that you exit Excel to continue, but it is recommended that you do so from a resource perspective (how much memory your PC is using to run SAP and Excel simultaneously) and because, depending on your versions of SAP and Microsoft Office, it may be easier.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;3.  Launch Excel and open your saved data source file (for example, c:\employee_data_chart.xls). For this example, create a custom pie chart that charts each position and the annual salary associated with it. Use your mouse to highlight the appropriate columns (for example, Position and Annual Salary). With the columns selected, click the Chart Wizard button on the Application toolbar. A Chart Wizard dialog box appears, enabling you to create pictorial graphs of your SAP data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;4.  On the Chart Wizard - Step 1 of 4 dialog, select the Custom Types tab, and then select Pie Explosion from the Chart Type list (see Figure 21.12). Click Next.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5.  Click the Next button on each of the next two wizard dialogs without making any changes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;6.  In the Chart Wizard - Step 4 of 4 dialog, select the In a New Sheet option, and then click the Finish button. A new Microsoft worksheet is created, with your pie chart inserted in it (see Figure 21.13).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;vasavi.&lt;/P&gt;&lt;P&gt;kindly reward if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Mar 2008 09:19:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pie-chart/m-p/3525517#M848121</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-03T09:19:21Z</dc:date>
    </item>
    <item>
      <title>Re: pie chart</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pie-chart/m-p/3525518#M848122</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;Go to TCODE ---&amp;gt;SE83 &lt;DEL&gt;&amp;gt;expand Graphics&lt;/DEL&gt;&amp;gt; You will find lot programs on pie chart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(OR)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Below are the Fm to create pie chart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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;check the report GRAPHICS_IGS_CE_TEST&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Mar 2008 09:23:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pie-chart/m-p/3525518#M848122</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-03T09:23:42Z</dc:date>
    </item>
    <item>
      <title>Re: pie chart</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pie-chart/m-p/3525519#M848123</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;you can check this follwoing program and code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Report program: DEMO_GFW_PRES_SHOW&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:      VALUES TYPE TABLE OF GPRVAL WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;      COLUMN_TEXTS TYPE TABLE OF GPRTXT WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;data: gfw_prestype_lines           TYPE i VALUE 17,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REFRESH VALUES. REFRESH COLUMN_TEXTS.&lt;/P&gt;&lt;P&gt;    VALUES-ROWTXT = CO_GFW_PROG_ROW1. VALUES-VAL1 = 1. VALUES-VAL2 = 5.&lt;/P&gt;&lt;P&gt;    APPEND VALUES.&lt;/P&gt;&lt;P&gt;    VALUES-ROWTXT = CO_GFW_PROG_ROW2. VALUES-VAL1 = 2. VALUES-VAL2 = 6.&lt;/P&gt;&lt;P&gt;    APPEND VALUES.&lt;/P&gt;&lt;P&gt;    VALUES-ROWTXT = CO_GFW_PROG_ROW3. VALUES-VAL1 = 3. VALUES-VAL2 = 7.&lt;/P&gt;&lt;P&gt;    APPEND VALUES.&lt;/P&gt;&lt;P&gt;    COLUMN_TEXTS-COLTXT = CO_GFW_PROG_SAUSAGE. APPEND COLUMN_TEXTS.&lt;/P&gt;&lt;P&gt;    COLUMN_TEXTS-COLTXT = CO_GFW_PROG_CHEESE. APPEND COLUMN_TEXTS.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'GFW_PRES_SHOW'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;          CONTAINER         = 'CONTAINER'&lt;/P&gt;&lt;P&gt;          PRESENTATION_TYPE = GFW_PRESTYPE_LINES&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;         PRESENTATION_TYPE = GFW_PRESTYPE_PIE_CHART&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;         orientation       = gfw_orient_columns&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     TABLES&lt;/P&gt;&lt;P&gt;          VALUES            = VALUES&lt;/P&gt;&lt;P&gt;          COLUMN_TEXTS      = COLUMN_TEXTS&lt;/P&gt;&lt;P&gt;     EXCEPTIONS&lt;/P&gt;&lt;P&gt;          ERROR_OCCURRED    = 1&lt;/P&gt;&lt;P&gt;          OTHERS            = 2.&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;    ...add your error handling here&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    FIRST_CALL = 1.&lt;/P&gt;&lt;P&gt;  ENDIF. "//firstcall initial&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope you will get some idea to achieve your requirements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points, if its helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sekhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Mar 2008 09:25:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pie-chart/m-p/3525519#M848123</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-03T09:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: pie chart</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pie-chart/m-p/3525520#M848124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Refer program &lt;/P&gt;&lt;P&gt;GFW_PROG_PIE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Mar 2008 09:54:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pie-chart/m-p/3525520#M848124</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-03T09:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: pie chart</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pie-chart/m-p/3525521#M848125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Vijay,&lt;/P&gt;&lt;P&gt;Here I a using the same program fror printing the graph but i don't find the print option here to take the printout .Please help me if you have any solution for this .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance .&lt;/P&gt;&lt;P&gt;Dinakar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2008 10:06:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pie-chart/m-p/3525521#M848125</guid>
      <dc:creator>dinakar_rayasam</dc:creator>
      <dc:date>2008-05-13T10:06:02Z</dc:date>
    </item>
    <item>
      <title>Re: pie chart</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pie-chart/m-p/3525522#M848126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abapers,&lt;/P&gt;&lt;P&gt;Please help me to solve this issue.&lt;/P&gt;&lt;P&gt;Please treat it as urgent and replayme.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Dinakar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 06:54:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pie-chart/m-p/3525522#M848126</guid>
      <dc:creator>dinakar_rayasam</dc:creator>
      <dc:date>2008-05-16T06:54:56Z</dc:date>
    </item>
  </channel>
</rss>

