<?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: Editing data (created using I_OI_PIVOT interface) in Excel in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/editing-data-created-using-i-oi-pivot-interface-in-excel/m-p/3276039#M783280</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Abdul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the same problem, did you find the solution for editing the table pivot? (&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;column -&amp;gt; &lt;/SPAN&gt;&lt;STRONG style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;Field Settings&lt;/STRONG&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt; -&amp;gt; &lt;/SPAN&gt;&lt;STRONG style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;Subtotals&lt;/STRONG&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt; -&amp;gt; &lt;/SPAN&gt;&lt;EM style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;none)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;Thanks &amp;amp; regards&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;Javier&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Oct 2012 14:15:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2012-10-18T14:15:24Z</dc:date>
    <item>
      <title>Editing data (created using I_OI_PIVOT interface) in Excel</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editing-data-created-using-i-oi-pivot-interface-in-excel/m-p/3276035#M783276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am able to transfer my internal table data to Excel. By default for all the columns it is doing sum. For one of the column, I don't need that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Deleting the row entries is not possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can do that in Excel (manually) through selecting the column -&amp;gt; &lt;STRONG&gt;Field Settings&lt;/STRONG&gt; -&amp;gt; &lt;STRONG&gt;Subtotals&lt;/STRONG&gt; -&amp;gt; &lt;EM&gt;none&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is to do that in Abap Program itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried using Macro, but may be I am not using it properly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Abdul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 12:57:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editing-data-created-using-i-oi-pivot-interface-in-excel/m-p/3276035#M783276</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T12:57:58Z</dc:date>
    </item>
    <item>
      <title>Re: Editing data (created using I_OI_PIVOT interface) in Excel</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editing-data-created-using-i-oi-pivot-interface-in-excel/m-p/3276036#M783277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abdul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this code yaar. It will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: T001.&lt;/P&gt;&lt;P&gt;data: it_t001 type t001 occurs 0,&lt;/P&gt;&lt;P&gt;it_fields type dfies occurs 0 with header line,&lt;/P&gt;&lt;P&gt;*DFIES&lt;/P&gt;&lt;P&gt;*DD Interface: Table Fields for DDIF_FIELDINFO_GET&lt;/P&gt;&lt;P&gt;begin of it_fnames occurs 0,&lt;/P&gt;&lt;P&gt;reptext like dfies-reptext,&lt;/P&gt;&lt;P&gt;end of it_fnames.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dfies-reptext REPRESENTS HEADDINGS OF FIELDS. &lt;/P&gt;&lt;P&gt;The structure definition required for this internal table. &lt;/P&gt;&lt;P&gt;The following definition is not working: &lt;/P&gt;&lt;P&gt;it_fnames like dfies-reptext occurs 0 with header line. &lt;/P&gt;&lt;P&gt;because Function Module will use the following: &lt;/P&gt;&lt;P&gt;ASSIGN COMPONENT 1 OF STRUCTURE FIELDNAMES TO &amp;lt;F&amp;gt;. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from t001 into table it_t001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GET_FIELDTAB'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LANGU = SY-LANGU &lt;/P&gt;&lt;P&gt;ONLY = ' ' &lt;/P&gt;&lt;P&gt;TABNAME = 'T001'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WITHTEXT = 'X' &lt;/P&gt;&lt;P&gt;IMPORTING &lt;/P&gt;&lt;P&gt;HEADER = &lt;/P&gt;&lt;P&gt;RC = &lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;FIELDTAB = it_fields&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;INTERNAL_ERROR = 1&lt;/P&gt;&lt;P&gt;NO_TEXTS_FOUND = 2&lt;/P&gt;&lt;P&gt;TABLE_HAS_NO_FIELDS = 3&lt;/P&gt;&lt;P&gt;TABLE_NOT_ACTIV = 4&lt;/P&gt;&lt;P&gt;OTHERS = 5&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC 0.&lt;/P&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_fields.&lt;/P&gt;&lt;P&gt;it_fnames-reptext = it_fields-reptext.&lt;/P&gt;&lt;P&gt;append it_fnames.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'MS_EXCEL_OLE_STANDARD_DAT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;FILE_NAME = 'C:\test.xls'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE_PIVOT = 0 &lt;/P&gt;&lt;P&gt;DATA_SHEET_NAME = 'sheet1'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PIVOT_SHEET_NAME = ' ' &lt;/P&gt;&lt;P&gt;PASSWORD = ' ' &lt;/P&gt;&lt;P&gt;PASSWORD_OPTION = 0 &lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PIVOT_FIELD_TAB = &lt;/P&gt;&lt;P&gt;DATA_TAB = it_t001&lt;/P&gt;&lt;P&gt;FIELDNAMES = it_fnames&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;FILE_NOT_EXIST = 1&lt;/P&gt;&lt;P&gt;FILENAME_EXPECTED = 2&lt;/P&gt;&lt;P&gt;COMMUNICATION_ERROR = 3&lt;/P&gt;&lt;P&gt;OLE_OBJECT_METHOD_ERROR = 4&lt;/P&gt;&lt;P&gt;OLE_OBJECT_PROPERTY_ERROR = 5&lt;/P&gt;&lt;P&gt;INVALID_FILENAME = 6&lt;/P&gt;&lt;P&gt;INVALID_PIVOT_FIELDS = 7&lt;/P&gt;&lt;P&gt;DOWNLOAD_PROBLEM = 8&lt;/P&gt;&lt;P&gt;OTHERS = 9&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC 0.&lt;/P&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kindly reward if found helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;Hema.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jan 2008 04:14:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editing-data-created-using-i-oi-pivot-interface-in-excel/m-p/3276036#M783277</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-16T04:14:14Z</dc:date>
    </item>
    <item>
      <title>Re: Editing data (created using I_OI_PIVOT interface) in Excel</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editing-data-created-using-i-oi-pivot-interface-in-excel/m-p/3276037#M783278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hema,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;              Thanks for your concern, yaar. This code is helpful, but what you are doing using Function modules here, I have already done that using interface and methods. My problem still persists. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ofcourse I will give you points, but let me keep this thread open for some more time, I may get some usefule answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Abdul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jan 2008 14:23:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editing-data-created-using-i-oi-pivot-interface-in-excel/m-p/3276037#M783278</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-16T14:23:55Z</dc:date>
    </item>
    <item>
      <title>Re: Editing data (created using I_OI_PIVOT interface) in Excel</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editing-data-created-using-i-oi-pivot-interface-in-excel/m-p/3276038#M783279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jan 2008 11:24:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editing-data-created-using-i-oi-pivot-interface-in-excel/m-p/3276038#M783279</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-17T11:24:53Z</dc:date>
    </item>
    <item>
      <title>Re: Editing data (created using I_OI_PIVOT interface) in Excel</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editing-data-created-using-i-oi-pivot-interface-in-excel/m-p/3276039#M783280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Abdul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the same problem, did you find the solution for editing the table pivot? (&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;column -&amp;gt; &lt;/SPAN&gt;&lt;STRONG style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;Field Settings&lt;/STRONG&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt; -&amp;gt; &lt;/SPAN&gt;&lt;STRONG style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;Subtotals&lt;/STRONG&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt; -&amp;gt; &lt;/SPAN&gt;&lt;EM style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;none)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;Thanks &amp;amp; regards&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;Javier&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2012 14:15:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editing-data-created-using-i-oi-pivot-interface-in-excel/m-p/3276039#M783280</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-18T14:15:24Z</dc:date>
    </item>
  </channel>
</rss>

