<?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: online material master upload in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/online-material-master-upload/m-p/1496553#M230507</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rich, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How would you indicate the users that these are the records that failed?? should we build a alv report by dispalying those failed records?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we should make sure that these records are updated,or how would you put checks ,, like if suppose there are totally 500 records &amp;amp; for every 50 records we save it in database as it get uploaded...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is it possible to put cheks and save it in that way?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Aug 2006 17:15:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-08T17:15:54Z</dc:date>
    <item>
      <title>online material master upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/online-material-master-upload/m-p/1496551#M230505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have got a development where the material master data is directly loaded in to custom table in an online process..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;could anyone of you please let me know what diffuclties, this task would undergo if its goin to be an online process and what measures should be taken?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new to development , please helpme.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like what if the system fails in middle of this process?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 17:02:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/online-material-master-upload/m-p/1496551#M230505</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-08T17:02:24Z</dc:date>
    </item>
    <item>
      <title>Re: online material master upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/online-material-master-upload/m-p/1496552#M230506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tina, not exactly sure of your requirement, but if you are updating a custom table in a loop for 500000 records, and your system crashes during this,  no records will be permenantlly saved to the DB, unless you are specifying a COMMIT WORK for every so many records or for every record(not recommended).   If it is ok, that no update happens if the program is ended abnorally, then you do not need to do anything.  Otherwise, you should use COMMIT WORK to commit to the db.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 17:09:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/online-material-master-upload/m-p/1496552#M230506</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-08-08T17:09:16Z</dc:date>
    </item>
    <item>
      <title>Re: online material master upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/online-material-master-upload/m-p/1496553#M230507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rich, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How would you indicate the users that these are the records that failed?? should we build a alv report by dispalying those failed records?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we should make sure that these records are updated,or how would you put checks ,, like if suppose there are totally 500 records &amp;amp; for every 50 records we save it in database as it get uploaded...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is it possible to put cheks and save it in that way?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 17:15:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/online-material-master-upload/m-p/1496553#M230507</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-08T17:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: online material master upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/online-material-master-upload/m-p/1496554#M230508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure when looping thru your internal table and updating your custom database, you would just keep track of a counter, then it reaches 50,  commit work, and clear the counter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at itab into xtab.

.....

insert ztable from xtab.

&amp;lt;b&amp;gt;counter = counter + 1.
if counter = 50.
  commit work.
  clear counter.
endif.&amp;lt;/b&amp;gt;

endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 17:41:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/online-material-master-upload/m-p/1496554#M230508</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-08-08T17:41:22Z</dc:date>
    </item>
    <item>
      <title>Re: online material master upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/online-material-master-upload/m-p/1496555#M230509</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 Upload Material-Master-Data without programming anything you could use the SXDA.&lt;/P&gt;&lt;P&gt;Create an new project using the object-type BUS1001006.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look at the SXDA-Manual - it's not as difficult as it may look...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rainer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some points would be nice if that helped a bit...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2006 04:35:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/online-material-master-upload/m-p/1496555#M230509</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-09T04:35:30Z</dc:date>
    </item>
  </channel>
</rss>

