<?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: need batch inpit help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-batch-inpit-help/m-p/3167783#M753645</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ferry &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i solved it in radio button i mark the commit &lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Dec 2007 20:29:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-26T20:29:07Z</dc:date>
    <item>
      <title>need batch inpit help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-batch-inpit-help/m-p/3167780#M753642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hallow&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i do simple batch input that add system for user in su01&lt;/P&gt;&lt;P&gt;when i follow the process i see that the user get system&lt;/P&gt;&lt;P&gt;but i dont see massege that it happen and i dont now if the process accomplished well,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i do this process manually i get massege user 00111...&lt;/P&gt;&lt;P&gt;was saved&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what can be the problem ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Dec 2007 09:42:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-batch-inpit-help/m-p/3167780#M753642</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-25T09:42:11Z</dc:date>
    </item>
    <item>
      <title>Re: need batch inpit help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-batch-inpit-help/m-p/3167781#M753643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you have to check the error log details to check whether session has been successfully completed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;ANUPAM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Dec 2007 19:29:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-batch-inpit-help/m-p/3167781#M753643</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-25T19:29:03Z</dc:date>
    </item>
    <item>
      <title>Re: need batch inpit help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-batch-inpit-help/m-p/3167782#M753644</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;If you run the batch input program thru batch session then you need to go to transaction SM35 to see the messages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you run the batch input program thru call transaction, then you need to handle the messages within the program using messages parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF MESSTAB OCCURS 10.&lt;/P&gt;&lt;P&gt;              INCLUDE STRUCTURE BDCMSGCOLL.&lt;/P&gt;&lt;P&gt;DATA: END OF MESSTAB.&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 TRANSACTION 'TFCA' USING BDCDATA MODE 'N'&lt;/P&gt;&lt;P&gt;                                           MESSAGES INTO MESSTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT MESSTAB.&lt;/P&gt;&lt;P&gt;   WRITE: / MESSTAB-TCODE,&lt;/P&gt;&lt;P&gt;                 MESSTAB-DYNAME,&lt;/P&gt;&lt;P&gt;                 MESSTAB-DYNUMB,&lt;/P&gt;&lt;P&gt;                 MESSTAB-MSGTYP, &lt;/P&gt;&lt;P&gt;                 MESSTAB-MSGSPRA,&lt;/P&gt;&lt;P&gt;                 MESSTAB-MSGID,&lt;/P&gt;&lt;P&gt;                 MESSTAB-MSGNR.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Dec 2007 00:33:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-batch-inpit-help/m-p/3167782#M753644</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-26T00:33:12Z</dc:date>
    </item>
    <item>
      <title>Re: need batch inpit help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-batch-inpit-help/m-p/3167783#M753645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ferry &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i solved it in radio button i mark the commit &lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Dec 2007 20:29:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-batch-inpit-help/m-p/3167783#M753645</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-26T20:29:07Z</dc:date>
    </item>
  </channel>
</rss>

