<?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: direct input in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/direct-input/m-p/1985101#M402350</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi anjali,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;based on a specific condition the faulty records can be checked and moved into an internal table or downloaded in a specific file...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if we want the records with no material numbers..i.e. matnr is initial..&lt;/P&gt;&lt;P&gt;write the code in mapping fields step at matne field and donload it in end-of-processing step using fm gui_download..&lt;/P&gt;&lt;P&gt;try this sample code..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF NOT MYINTERTAB-MATNR IS INITIAL.&lt;/P&gt;&lt;P&gt; BMM00-MATNR = MYINTERTAB-MATNR.&lt;/P&gt;&lt;P&gt;   ELSE.&lt;/P&gt;&lt;P&gt;er_itab-matnr = myintertab-matnr.&lt;/P&gt;&lt;P&gt;CLEAR ER_ITAB.&lt;/P&gt;&lt;P&gt;MOVE MYINTERTAB TO ER_ITAB.&lt;/P&gt;&lt;P&gt;APPEND ER_ITAB.&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;*******&lt;STRONG&gt;end-of-processing&lt;/STRONG&gt;****&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;  FILENAME = 'C:\Documents and Settings\sampath\Desktop\ER.txt'&lt;/P&gt;&lt;P&gt;  APPEND = 'X'&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        DATA_TAB                        = ER_ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps u a bit,&lt;/P&gt;&lt;P&gt;all the best,&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;sampath&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;mark helpful answers&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Feb 2007 03:53:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-08T03:53:54Z</dc:date>
    <item>
      <title>direct input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/direct-input/m-p/1985100#M402349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there any way to get the list of records which are not uploaded while performing direct input session ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;anjali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 03:43:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/direct-input/m-p/1985100#M402349</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T03:43:11Z</dc:date>
    </item>
    <item>
      <title>Re: direct input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/direct-input/m-p/1985101#M402350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi anjali,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;based on a specific condition the faulty records can be checked and moved into an internal table or downloaded in a specific file...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if we want the records with no material numbers..i.e. matnr is initial..&lt;/P&gt;&lt;P&gt;write the code in mapping fields step at matne field and donload it in end-of-processing step using fm gui_download..&lt;/P&gt;&lt;P&gt;try this sample code..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF NOT MYINTERTAB-MATNR IS INITIAL.&lt;/P&gt;&lt;P&gt; BMM00-MATNR = MYINTERTAB-MATNR.&lt;/P&gt;&lt;P&gt;   ELSE.&lt;/P&gt;&lt;P&gt;er_itab-matnr = myintertab-matnr.&lt;/P&gt;&lt;P&gt;CLEAR ER_ITAB.&lt;/P&gt;&lt;P&gt;MOVE MYINTERTAB TO ER_ITAB.&lt;/P&gt;&lt;P&gt;APPEND ER_ITAB.&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;*******&lt;STRONG&gt;end-of-processing&lt;/STRONG&gt;****&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;  FILENAME = 'C:\Documents and Settings\sampath\Desktop\ER.txt'&lt;/P&gt;&lt;P&gt;  APPEND = 'X'&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        DATA_TAB                        = ER_ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps u a bit,&lt;/P&gt;&lt;P&gt;all the best,&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;sampath&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;mark helpful answers&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 03:53:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/direct-input/m-p/1985101#M402350</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T03:53:54Z</dc:date>
    </item>
    <item>
      <title>Re: direct input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/direct-input/m-p/1985102#M402351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi! sampath&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ya i agree with you what you said is correct,&lt;/P&gt;&lt;P&gt;m doing upload of open po's and i can chack it for the condition where vendor is not there but there are many other issues like material is not active and material is not alloacted for the particular plant.&lt;/P&gt;&lt;P&gt;is there any way out to get the whloe the list as we get in batch input?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;anjali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 04:12:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/direct-input/m-p/1985102#M402351</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T04:12:02Z</dc:date>
    </item>
    <item>
      <title>Re: direct input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/direct-input/m-p/1985103#M402352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;anjali,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;probably u shud code the logic/fm's individually for all the fields and put result fields together in an internal table and chck it or download it..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 04:23:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/direct-input/m-p/1985103#M402352</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T04:23:11Z</dc:date>
    </item>
  </channel>
</rss>

