<?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: Extended Program Check in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check/m-p/2433896#M544236</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;Sorry its not extented program check....... its &amp;lt;b&amp;gt;code checker&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Jul 2007 03:52:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-04T03:52:53Z</dc:date>
    <item>
      <title>Extended Program Check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check/m-p/2433894#M544234</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;I am getting an error in extented program check as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does not use DESCRIBE to confirm there are records in an internal table before using it in a SELECT as the&lt;/P&gt;&lt;P&gt; target of FOR ALL ENTRIES IN in YV_MARINE_SEL at line 72.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for the below select statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT TKNUM VBELN_VA ZZROUTING  BOLNR&lt;/P&gt;&lt;P&gt;      FROM ZVOCEANBOOKING&lt;/P&gt;&lt;P&gt;      INTO CORRESPONDING FIELDS OF TABLE I_SHIPMENT1&lt;/P&gt;&lt;P&gt;      FOR ALL ENTRIES IN I_DELIVERY1&lt;/P&gt;&lt;P&gt;      WHERE VBELN_VA = I_DELIVERY1-VBELN  AND&lt;/P&gt;&lt;P&gt;            BOLNR in S_BOLNR              AND&lt;/P&gt;&lt;P&gt;            ZZCANCELINDICATE NE TEXT-012.&lt;/P&gt;&lt;P&gt;could any one help me,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nithya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 03:47:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check/m-p/2433894#M544234</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T03:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: Extended Program Check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check/m-p/2433895#M544235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I believe it is warning you that you should validate that I_DELIVERY1 has contents before you use it in a select e.g. you could use&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;describe table I_DELIVERY1 lines sy-tfill.
if not sy-tfill is initial.
* do the select here...
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or you could use&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;if not I_DELIVERY1[] is initial.
* do the select here...
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 03:52:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check/m-p/2433895#M544235</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T03:52:46Z</dc:date>
    </item>
    <item>
      <title>Re: Extended Program Check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check/m-p/2433896#M544236</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;Sorry its not extented program check....... its &amp;lt;b&amp;gt;code checker&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 03:52:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check/m-p/2433896#M544236</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T03:52:53Z</dc:date>
    </item>
    <item>
      <title>Re: Extended Program Check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check/m-p/2433897#M544237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kalyani,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the table, the table should be filled and should not initial before using FOR ALL ENTRIES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;Example:here is the code for your reference:&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;IF NOT I_DELIVERY1[] IS INITIAL.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;SELECT TKNUM VBELN_VA ZZROUTING BOLNR&lt;/P&gt;&lt;P&gt;FROM ZVOCEANBOOKING&lt;/P&gt;&lt;P&gt;INTO CORRESPONDING FIELDS OF TABLE I_SHIPMENT1&lt;/P&gt;&lt;P&gt;FOR ALL ENTRIES IN I_DELIVERY1&lt;/P&gt;&lt;P&gt;WHERE VBELN_VA = I_DELIVERY1-VBELN AND&lt;/P&gt;&lt;P&gt;BOLNR in S_BOLNR AND&lt;/P&gt;&lt;P&gt;ZZCANCELINDICATE NE TEXT-012.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;ENDIF.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Dont forget to reward points.. if useful......&lt;/P&gt;&lt;P&gt;Cheers !&lt;/P&gt;&lt;P&gt;Moqeeth.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 03:58:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check/m-p/2433897#M544237</guid>
      <dc:creator>mohammed_moqeeth</dc:creator>
      <dc:date>2007-07-04T03:58:06Z</dc:date>
    </item>
  </channel>
</rss>

