<?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: Excel to Internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595078#M2010551</link>
    <description>&lt;P&gt;Thank you so much, Andrea. I selected the repository and I see the option to choose Advanced-&amp;gt; Uninstall.&lt;/P&gt;&lt;P&gt;I was able to delete 2 repositories successfully. When I delete the 3rd repository &lt;STRONG&gt;demos&lt;/STRONG&gt;, I am getting an error message as below,&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2082590-error.jpg" /&gt;&lt;/P&gt;&lt;P&gt;Is this behavior expected? Can you please let me know how to address this.&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Bharath&lt;/P&gt;</description>
    <pubDate>Mon, 01 Aug 2022 12:34:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2022-08-01T12:34:25Z</dc:date>
    <item>
      <title>Excel to Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595060#M2010533</link>
      <description>&lt;P&gt;Experts,&lt;/P&gt;
  &lt;P&gt;I see many posts by Sandra and other ABAP experts where the recommendation is to use ABAP2XLSX. I followed the installation page from GITHUB and installed ABAP2XLSX.&lt;/P&gt;
  &lt;P&gt;As a next step, I want to get to the code where I can upload an excel file in the selection screen of my program and eventually get the excel data in an internal table. &lt;/P&gt;
  &lt;P&gt;In one of the blog posts, I saw a reply from Gregor Wolf that we can use program in &lt;A href="https://github.com/abap2xlsx/demos/blob/main/src/zdemo_excel37.prog.abap"&gt;this link&lt;/A&gt; to achieve this excel to internal table functionality. When I try to activate the program from that link, I am getting an error that include zdemo_excel_outputopt_incl does not exist. Does this mean I have not installed ABAP2XLSX correctly?&lt;/P&gt;
  &lt;P&gt;Also I want to move my custom program to &lt;STRONG&gt;PRD&lt;/STRONG&gt; that will perform excel to internal table functionality based on ABAP2XLSX. Does this mean, I need to install ABAP2XLSX in PRD as well? &lt;/P&gt;
  &lt;P&gt;NOTE: I have created the program ZABAPGIT_STANDALONE as per ABAP2XLSX installation instructions in &lt;A href="https://abap2xlsx.github.io/abap2xlsx/abapGit-installation"&gt;this link&lt;/A&gt;&lt;/P&gt;
  &lt;P&gt;I have been using other OLE-based function modules and I want to walk away from that approach as I see that it's not the right approach. &lt;/P&gt;
  &lt;P&gt;I am so sorry if this question is very basic. I want to shift to ABAP2XLSX once and for all so that I can use the best approach in all my upcoming projects. Can you please help me successfully implement ABAP2XLSX?&lt;/P&gt;
  &lt;P&gt;BR,&lt;/P&gt;
  &lt;P&gt;Bharath&lt;/P&gt;</description>
      <pubDate>Sun, 31 Jul 2022 18:35:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595060#M2010533</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2022-07-31T18:35:23Z</dc:date>
    </item>
    <item>
      <title>Re: Excel to Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595061#M2010534</link>
      <description>&lt;P&gt;It's not that it's the right approach, it's that SAP doesn't support OLE function modules. At least, abap2xlsx is supported by the SAP community for a long time, and usually has less drawbacks than the SAP function modules.&lt;/P&gt;&lt;P&gt;To install:&lt;/P&gt;&lt;UL&gt;
&lt;LI&gt;First install abapGit. It seems you did it successfully.&lt;/LI&gt;&lt;LI&gt;Then install &lt;A href="https://github.com/abap2xlsx/abap2xlsx"&gt;abap2xlsx&lt;/A&gt; with abapGit.&lt;/LI&gt;&lt;LI&gt;To benefit from the demo programs, install the &lt;A href="https://github.com/abap2xlsx/demos"&gt;demos&lt;/A&gt; repository with abapGit.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;To read an Excel file into an internal table, first store that Excel file into an XSTRING variable, then loop at the worksheets:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA(lo_reader) = NEW zcl_excel_reader_2007( ).
DATA(lo_excel) = lo_reader-&amp;gt;zif_excel_reader~load( i_excel2007 = xstring ).
DATA(i) = 1.
WHILE i &amp;lt;= lo_excel-&amp;gt;get_worksheets_size( ).
  DATA(lo_worksheet) = lo_excel-&amp;gt;get_worksheet_by_index( i ).
  i = i + 1.
ENDWHILE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;For each sheet, you can read its cells using the sheet_content attribute:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT lo_worksheet-&amp;gt;sheet_content REFERENCE INTO DATA(cell).
  " cell-&amp;gt;cell_row, cell-&amp;gt;cell_column, cell-&amp;gt;cell_value, ...
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 31 Jul 2022 19:25:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595061#M2010534</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2022-07-31T19:25:04Z</dc:date>
    </item>
    <item>
      <title>Re: Excel to Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595062#M2010535</link>
      <description>&lt;P&gt;Hi Sandra,&lt;/P&gt;&lt;P&gt;Thank you so much for your valuable reply.&lt;/P&gt;&lt;P&gt;I am not sure what I have installed so far. I have a program called ZABAPGIT_STANDALONE in my system.&lt;/P&gt;&lt;P&gt;Executing the program gives me screen as below,&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2082543-capture.jpg" /&gt;&lt;/P&gt;&lt;P&gt;I would like to install demo programs to get the full code that I can copy and paste to run a test scenario. This is what I see when I click demos folder in github,&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2082544-capture.jpg" /&gt;&lt;/P&gt;&lt;P&gt;I am not sure how I can install demo programs as I am not sure where I can find the instructions in this folder.&lt;/P&gt;&lt;P&gt;I see that include zdemo_excel_outputopt_incl is missing in my system. This include has been reference in one of the demo programs. This makes me believe that I have missed some steps.&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Bharath&lt;/P&gt;</description>
      <pubDate>Sun, 31 Jul 2022 20:20:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595062#M2010535</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2022-07-31T20:20:21Z</dc:date>
    </item>
    <item>
      <title>Re: Excel to Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595063#M2010536</link>
      <description>&lt;P&gt;When I try to install ABAP git, using program ZABAPGIT_STANDALONE, this is what I see in SE38,&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2082545-capture.jpg" /&gt;&lt;/P&gt;&lt;P&gt;I am following &lt;A href="https://abap2xlsx.github.io/abap2xlsx/abapGit-installation"&gt;this link&lt;/A&gt; to install ABAP git.&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Bharath&lt;/P&gt;</description>
      <pubDate>Sun, 31 Jul 2022 20:23:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595063#M2010536</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2022-07-31T20:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: Excel to Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595064#M2010537</link>
      <description>&lt;P&gt;Sandra,&lt;/P&gt;&lt;P&gt;I copied the code from this demo program and pasted in my SE38.&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2082547-capture1.jpg" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2082548-capture.jpg" /&gt;&lt;/P&gt;&lt;P&gt; I see that I have structure zexcel_s_table_settings in my system. But I don't have include zdemo_excel_outputopt_incl in my system. This is the issue that I am facing.&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Bharath&lt;/P&gt;</description>
      <pubDate>Sun, 31 Jul 2022 20:37:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595064#M2010537</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2022-07-31T20:37:06Z</dc:date>
    </item>
    <item>
      <title>Re: Excel to Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595065#M2010538</link>
      <description>&lt;P&gt;A few random comments:&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mention-scrubbed"&gt;bfeeb8ed7fa64a7d95efc21f74a8c135&lt;/SPAN&gt; come quickly! (semicit.), the impossible happened: someone is paying close attention to the forum posts! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; (and this makes me very happy and willing to help!)&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mention-scrubbed"&gt;sandra.rossi&lt;/SPAN&gt; depending on the application, one could also use the load_file method, which should work for both local and remote files&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mention-scrubbed"&gt;aspire.wf&lt;/SPAN&gt; you'll need abap2xlsx in the PRD system, correct, but you may now install the demos as a separate local package to avoid transporting those, if you wish.&lt;/P&gt;&lt;P&gt;ZABAPGIT_STANDALONE is the single source version of abapGit: it works perfecly fine, it gets regenerated every night but if you want to upgrade it you have to download it again like you did the first time. As an end-user, you should be ok with this version.&lt;/P&gt;&lt;P&gt;To install:&lt;/P&gt;&lt;UL&gt;
 
&lt;LI&gt;demos: use the correct link, &lt;A href="https://github.com/abap2xlsx/demos" target="_blank"&gt;https://github.com/abap2xlsx/demos&lt;/A&gt;&lt;/LI&gt; 
&lt;LI&gt;abapgit dev. version: again, the correct link: &lt;A href="https://github.com/abapGit/abapGit" target="_blank"&gt;https://github.com/abapGit/abapGit&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;To get the link: click the green code button, in the HTTPS tab you'll get the link and then a button you can click to copy the link, right at the end of the text field.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2022 06:45:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595065#M2010538</guid>
      <dc:creator>abo</dc:creator>
      <dc:date>2022-08-01T06:45:25Z</dc:date>
    </item>
    <item>
      <title>Re: Excel to Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595066#M2010539</link>
      <description>&lt;P&gt;Andrea,&lt;/P&gt;&lt;P&gt;Thanks a lot for your reply. In ZABAPGIT_STANDALONE, I select the row where it says demos and clicked on Pull. I got a popup that shows a list of programs. as below,&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2082570-capture1.jpg" /&gt;&lt;/P&gt;&lt;P&gt;After selecting all the programs and clicking green tick mark, I am prompted to give a transport no. I select one and it gives me a message as below,&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2082573-capture2.jpg" /&gt;&lt;/P&gt;&lt;P&gt;I want to change the package name from ABAP2XLSX to $TMP. I am not sure how I can change the package name at this point. I tried to delete the package ABAP2XLSX. I am getting a message that the package still contains objects and cannot be deleted. I don't see any object inside the package in SE80. &lt;/P&gt;&lt;P&gt;I wanted to start all over again by uninstalling entire ABAP2XLSX. I see the steps in &lt;A href="https://docs.abapgit.org/guide-online-uninstall.html"&gt;this link&lt;/A&gt; to uninstall. When I go to ZABAPGIT Tcode, I don't see a master menu from which I can select uninstall. &lt;/P&gt;&lt;P&gt;I am stuck with this incorrect package name which is not letting me pull the demo programs.&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Bharath&lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2022 08:01:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595066#M2010539</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2022-08-01T08:01:57Z</dc:date>
    </item>
    <item>
      <title>Re: Excel to Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595067#M2010540</link>
      <description>&lt;P&gt;Andrea,&lt;/P&gt;&lt;P&gt;This time around, I didn't select the program ZDEMO_EXCEL_WDA01 from the popup that shows up when I click Pull after selecting demos row. I was expecting that the rest of the demo programs will get Pulled to my system. I entered the transport no. I didn't get any error message. But when I go to SE38 and search Z*DEMO*. I don't see any demo program. &lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Bharath&lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2022 08:06:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595067#M2010540</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2022-08-01T08:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: Excel to Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595068#M2010541</link>
      <description>&lt;P&gt;You should use different package names for different projects, that's a general rule. EDIT: you did, the screenshot was too hard to read for me)&lt;/P&gt;&lt;P&gt;You may have, for example, ZABAP2XLSX for the main library (a transportable package) and $ZABAP2XLSDEMOS for the demos alone (a local package, since it begins with $)&lt;/P&gt;&lt;P&gt;Also, when pulling to an empty package, mark all objects, else you'll get errors for missing parts.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2022 08:09:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595068#M2010541</guid>
      <dc:creator>abo</dc:creator>
      <dc:date>2022-08-01T08:09:23Z</dc:date>
    </item>
    <item>
      <title>Re: Excel to Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595069#M2010542</link>
      <description>&lt;P&gt;Andrea,&lt;/P&gt;&lt;P&gt;Can you please tell me what this error message means? &lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2082576-capture3.jpg" /&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Bharath&lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2022 08:09:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595069#M2010542</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2022-08-01T08:09:29Z</dc:date>
    </item>
    <item>
      <title>Re: Excel to Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595070#M2010543</link>
      <description>&lt;P&gt;Andrea,&lt;/P&gt;&lt;P&gt;Thanks a lot for your reply. I am not sure how I can post a larger-sized image. I will type the contents in the image here and will ask my doubt.&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2082579-capture3.jpg" /&gt;&lt;/P&gt;&lt;P&gt;We have a column called package in the above image. For abap2xlsx, it shows that I have given the package name as $ABAP2XLSX. For abapgit, I have given the package name as $ABAPGIT. For demos, I have given the package name as ABAP2XLSX. &lt;/P&gt;&lt;P&gt;Thanks for letting me know that I should select all the objects in the popup. For me to do that, I should somehow rename the package ABAP2XLSX to a package name that either starts with '$' or Z/Y. This is what SAP message says. &lt;/P&gt;&lt;P&gt;Can you please tell me how I can rename the package to the correct name? &lt;/P&gt;&lt;P&gt;If renaming is not possible, can you please tell me how I can start installation all over again from scratch so that this time around, I can give the package names correctly.&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Bharath&lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2022 08:28:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595070#M2010543</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2022-08-01T08:28:34Z</dc:date>
    </item>
    <item>
      <title>Re: Excel to Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595071#M2010544</link>
      <description>&lt;UL&gt;&lt;LI&gt;Clean each project with "uninstall"&lt;/LI&gt;&lt;LI&gt;prefer using Z as starting letter for transportable package names and $ for local ones&lt;/LI&gt;&lt;LI&gt;abapGit and demos should be local, abap2xlsx should be transportable and must be transported together or before the programs using it&lt;/LI&gt;&lt;LI&gt;pull all obejcts in abap2xlsx first, then pull demos, again all objects&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Mon, 01 Aug 2022 08:34:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595071#M2010544</guid>
      <dc:creator>abo</dc:creator>
      <dc:date>2022-08-01T08:34:18Z</dc:date>
    </item>
    <item>
      <title>Re: Excel to Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595072#M2010545</link>
      <description>&lt;P&gt;Andrea,&lt;/P&gt;&lt;P&gt;Thanks a lot for your reply. You have suggested to clean each project with unintsall. I checked &lt;A href="https://blogs.sap.com/2020/12/04/be-cautious-when-using-uninstall-at-abapgit/"&gt;this blog&lt;/A&gt; where the discussion is about uninstallation abap2xlsx.&lt;/P&gt;&lt;P&gt;Key points:&lt;/P&gt;&lt;P&gt;1) I have not written any custom code so far. I am still in the early stage of trying to get demo programs in my system so that I can refer them and convert excel to internal table&lt;/P&gt;&lt;P&gt;2) Even in the blog, I don't see how to enter the project view to delete abap2xlsx. &lt;/P&gt;&lt;P&gt;As far as I can see, I don't see an option in ZABAPGIT_STANDALONE program output for uninstallation. Can you please tell me how cleaning/uninstallation can be done. I tried ZABAPGIT Tcode as well which shows the same output. There is no option to uninstall. &lt;/P&gt;&lt;P&gt;3) github &lt;A href="https://docs.abapgit.org/guide-online-uninstall.html"&gt;documentation&lt;/A&gt; has steps with screenshots for uninstallation. I don't see the menu option which says 'Master' as shown in the documentation link,&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2082585-capture3.jpg" /&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Bharath&lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2022 10:48:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595072#M2010545</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2022-08-01T10:48:40Z</dc:date>
    </item>
    <item>
      <title>Re: Excel to Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595073#M2010546</link>
      <description>&lt;P&gt;Andrea,&lt;/P&gt;&lt;P&gt;My abap2xlsx output screen looks as below,&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2082587-capture4.png" /&gt;&lt;/P&gt;&lt;P&gt;I am not sure if you can see the screen clearly with the image resolution. If you see the screen, I don't see an option for uninstall.&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Bharath&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2022 10:50:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595073#M2010546</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2022-08-01T10:50:49Z</dc:date>
    </item>
    <item>
      <title>Re: Excel to Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595074#M2010547</link>
      <description>&lt;P&gt;uninstall is an option for a specific project: you need to be in the project view to use it!&lt;/P&gt;&lt;P&gt;click the project name to enter this view.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2022 11:01:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595074#M2010547</guid>
      <dc:creator>abo</dc:creator>
      <dc:date>2022-08-01T11:01:04Z</dc:date>
    </item>
    <item>
      <title>Re: Excel to Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595075#M2010548</link>
      <description>&lt;P&gt;Andrea,&lt;/P&gt;&lt;P&gt;You and Sandra have been helping me patiently. I feel so bad that I am unable to figure out ABAP2XLSX. I see so many threads in SCN where everyone is appreciating how cool this magical utility is. &lt;/P&gt;&lt;P&gt;I have been kicking the can down the road whenever I got an excel based on requirement that I will read about ABAP2XLSX someday when I have more time in hand. I am totally wrong as many experts like Paul Hardy, Sandra and others have repeatedly mentioned that setting this up is very easy and that it only takes a few minutes.&lt;/P&gt;&lt;P&gt;Challenges that I am facing right now:&lt;/P&gt;&lt;P&gt;1) I am not sure why, how and when I gave the package name as ABAP2XLSX instead of a name with a '$' or Z/Y. I have to rename this package for which I need to delete or uninstall this utility and start over again with the correct package names.&lt;/P&gt;&lt;P&gt;2) Can you please tell me what a Project is? Sorry, if this a basic question. I don't remember creating any projects so far and writing any code using this utility. I am still in the installation or setup phase. Also, ZABAPGIT_STANDALONE program output screen does not mention any column/option which says 'Project'. You have clearly mentioned the correct packaging names in an earlier reply. If I am able to start over again, I can stick to that naming convention.&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Bharath&lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2022 11:24:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595075#M2010548</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2022-08-01T11:24:08Z</dc:date>
    </item>
    <item>
      <title>Re: Excel to Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595076#M2010549</link>
      <description>&lt;P&gt;Sorry, my bad: I used "project" as a synonim for "repository", you need to click on each of the names on the left.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2022 12:03:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595076#M2010549</guid>
      <dc:creator>abo</dc:creator>
      <dc:date>2022-08-01T12:03:52Z</dc:date>
    </item>
    <item>
      <title>Re: Excel to Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595077#M2010550</link>
      <description>&lt;P&gt;Just use Advanced &amp;gt; Remove to remove the abap2xlsx line from abapGit, then add it again and indicate the right package name $abap2xlsx. After that, pull the objects.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2022 12:26:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595077#M2010550</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2022-08-01T12:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: Excel to Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595078#M2010551</link>
      <description>&lt;P&gt;Thank you so much, Andrea. I selected the repository and I see the option to choose Advanced-&amp;gt; Uninstall.&lt;/P&gt;&lt;P&gt;I was able to delete 2 repositories successfully. When I delete the 3rd repository &lt;STRONG&gt;demos&lt;/STRONG&gt;, I am getting an error message as below,&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2082590-error.jpg" /&gt;&lt;/P&gt;&lt;P&gt;Is this behavior expected? Can you please let me know how to address this.&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Bharath&lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2022 12:34:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595078#M2010551</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2022-08-01T12:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: Excel to Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595079#M2010552</link>
      <description>&lt;P&gt;Sandra,&lt;/P&gt;&lt;P&gt;Sorry, I didn't see your reply and that is why I didn't follow your instructions. I am unable to change my ex-employers email ID in my profile due to which I am not getting notified whenever there is a reply. &lt;/P&gt;&lt;P&gt;I have already done uninstall instead of remove &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt; &lt;/P&gt;&lt;P&gt;And now its stuck midway as I am unable to uninstall demos repository. &lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2022 12:40:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-to-internal-table/m-p/12595079#M2010552</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2022-08-01T12:40:25Z</dc:date>
    </item>
  </channel>
</rss>

