<?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: Suggestion for development. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/suggestion-for-development/m-p/9527152#M1750130</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;ALSM_EXCEL_TO_INTERNAL_TABLE&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp; dont exist in my version&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Jun 2013 18:32:59 GMT</pubDate>
    <dc:creator>ronaldo_aparecido</dc:creator>
    <dc:date>2013-06-18T18:32:59Z</dc:date>
    <item>
      <title>Suggestion for development.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/suggestion-for-development/m-p/9527149#M1750127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;Hello everybody.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;I need a suggestion for development.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;I have an excel file with many columns and filters.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;In this file there are 4 columns, the first has the old data and the new data in the next.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;I need to select all tables in sap with the old company code and select in excel this code and replace with the new code that is in the excel file modifying tables.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;What would you suggest for good performance?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;Thanks.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jun 2013 16:04:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/suggestion-for-development/m-p/9527149#M1750127</guid>
      <dc:creator>ronaldo_aparecido</dc:creator>
      <dc:date>2013-06-18T16:04:45Z</dc:date>
    </item>
    <item>
      <title>Re: Suggestion for development.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/suggestion-for-development/m-p/9527150#M1750128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ronaldo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is what i understand of your requirement.&lt;/P&gt;&lt;P&gt;You have an excel file whose first two columns have company code data, Specifically &lt;/P&gt;&lt;P&gt;Column 1 has Old Company Codes and Column 2 has new ones.&lt;/P&gt;&lt;P&gt;Now you need to replace the old company codes with new ones in your Z tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Solution -&lt;/P&gt;&lt;P&gt;1) Read the Excel using FM &lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;ALSM_EXCEL_TO_INTERNAL_TABLE&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;2) Create an internal table with all the old company codes and new company codes.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;3) Say you have 5 Z tables to be modified, Select the data of these 5 tables into internal table of corresponding types doing a For All Entries on the internal table of step 2 with company code field.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;4) Loop at the individual Internal tables of the Z tables using a field symbol/work area.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;5) Inside Loop , read the internal table of step 2 to know what value of new company code should replace the old company code value.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;6) If read is successful , then modify the values in the work area/field symbol.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;7) Append the changed values to new internal table if using a work area. If using a field symbol skip this step.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt; Update Your Z table from the Internal table of Step 7.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;Ask further if not clear.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;BR.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt; &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jun 2013 17:30:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/suggestion-for-development/m-p/9527150#M1750128</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-06-18T17:30:26Z</dc:date>
    </item>
    <item>
      <title>Re: Suggestion for development.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/suggestion-for-development/m-p/9527151#M1750129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ronaldo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the "All tables in SAP"&amp;nbsp; afraid me, really.&lt;/P&gt;&lt;P&gt;First of all, I hope the new company code never have been used, if "yes", forgot that, find another job &lt;SPAN __jive_emoticon_name="wink" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/1581/images/emoticons/wink.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if I never have been used, you could start with the DD03L table (I'm not sure) to find all the field of the table that used the data element BUKRS (but, for me, that's not enough) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it's only 5 specific tables you could make like explain Ankit : &lt;A _jive_internal="true" href="https://answers.sap.com/message/14135570#14135570"&gt;http://scn.sap.com/message/14135570#14135570&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;good luck&lt;/P&gt;&lt;P&gt;Fred&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jun 2013 18:03:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/suggestion-for-development/m-p/9527151#M1750129</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2013-06-18T18:03:06Z</dc:date>
    </item>
    <item>
      <title>Re: Suggestion for development.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/suggestion-for-development/m-p/9527152#M1750130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;ALSM_EXCEL_TO_INTERNAL_TABLE&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp; dont exist in my version&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jun 2013 18:32:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/suggestion-for-development/m-p/9527152#M1750130</guid>
      <dc:creator>ronaldo_aparecido</dc:creator>
      <dc:date>2013-06-18T18:32:59Z</dc:date>
    </item>
    <item>
      <title>Re: Suggestion for development.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/suggestion-for-development/m-p/9527153#M1750131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK i copy from other environment the function and worked but how make the function return blank fields?Is any parameter?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jun 2013 22:25:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/suggestion-for-development/m-p/9527153#M1750131</guid>
      <dc:creator>ronaldo_aparecido</dc:creator>
      <dc:date>2013-06-18T22:25:09Z</dc:date>
    </item>
    <item>
      <title>Re: Suggestion for development.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/suggestion-for-development/m-p/9527154#M1750132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK isee in other post and worked now .all is worked thanks guys.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;SPAN __jive_emoticon_name="cool" __jive_macro_name="emoticon" class="jive_macro jive_macro_emoticon jive_emote" src="https://community.sap.com/1581/images/emoticons/cool.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jun 2013 00:00:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/suggestion-for-development/m-p/9527154#M1750132</guid>
      <dc:creator>ronaldo_aparecido</dc:creator>
      <dc:date>2013-06-19T00:00:36Z</dc:date>
    </item>
  </channel>
</rss>

