<?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: Provide Statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/provide-statement/m-p/4030749#M963340</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Venkat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for you reply. Actually I have arround 10 table joins using provide. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, I want to at runtime which table has caused this issue not by going to ST22. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thxs..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Jun 2008 09:00:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-16T09:00:38Z</dc:date>
    <item>
      <title>Provide Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/provide-statement/m-p/4030747#M963338</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 have joined 2 tables in using provide. Is there any to identify which table has caused exception (cx_sy_provide_interval_overlap) in provide statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   PROVIDE&lt;/P&gt;&lt;P&gt;             FIELDS&lt;/P&gt;&lt;P&gt;             pernr begda endda name&lt;/P&gt;&lt;P&gt;             FROM table1&lt;/P&gt;&lt;P&gt;             INTO  ls_table1  VALID l_v_org_0001&lt;/P&gt;&lt;P&gt;             BOUNDS begda AND endda WHERE&lt;/P&gt;&lt;P&gt;             pernr = pernr-pernr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             FIELDS&lt;/P&gt;&lt;P&gt;             pernr begda endda massn&lt;/P&gt;&lt;P&gt;             FROM table2&lt;/P&gt;&lt;P&gt;             INTO  ls_table2  VALID l_v_org_0002&lt;/P&gt;&lt;P&gt;             BOUNDS begda AND endda WHERE&lt;/P&gt;&lt;P&gt;             pernr =  pernr-pernr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             BETWEEN '18000101' AND '99991231' INCLUDING GAPS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CATCH cx_sy_provide_interval_overlap.&lt;/P&gt;&lt;P&gt;      table4-pernr =  ls_table1-pernr.&lt;/P&gt;&lt;P&gt;      table4-massn =  ls_table2-massn.&lt;/P&gt;&lt;P&gt;      table4-flag1 = l_v_org_0001.&lt;/P&gt;&lt;P&gt;      table4-flag2 = l_v_org_0002.&lt;/P&gt;&lt;P&gt;      APPEND table4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CATCH cx_sy_provide_table_not_sorted.&lt;/P&gt;&lt;P&gt;      table4-pernr =  ls_table1-pernr.&lt;/P&gt;&lt;P&gt;      table4-massn =  ls_table2-massn.&lt;/P&gt;&lt;P&gt;      table4-flag1 = l_v_org_0001.&lt;/P&gt;&lt;P&gt;      table4-flag2 = l_v_org_0002.&lt;/P&gt;&lt;P&gt;      APPEND table4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is to identify which table has caused exception. What is the use of Valid flag in provide?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: V Nair on Jun 13, 2008 5:11 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jun 2008 14:59:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/provide-statement/m-p/4030747#M963338</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-13T14:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: Provide Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/provide-statement/m-p/4030748#M963339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi go to the st22--&lt;DEL&gt;-&amp;gt; choose code analysis&lt;/DEL&gt;it will take to you to the exact code where the error occured&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Jun 2008 12:18:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/provide-statement/m-p/4030748#M963339</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-14T12:18:17Z</dc:date>
    </item>
    <item>
      <title>Re: Provide Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/provide-statement/m-p/4030749#M963340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Venkat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for you reply. Actually I have arround 10 table joins using provide. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, I want to at runtime which table has caused this issue not by going to ST22. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thxs..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jun 2008 09:00:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/provide-statement/m-p/4030749#M963340</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-16T09:00:38Z</dc:date>
    </item>
    <item>
      <title>Re: Provide Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/provide-statement/m-p/4030750#M963341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi this can be seen at the debugging by looking the data at the structures that the data is flowing&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jun 2008 09:02:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/provide-statement/m-p/4030750#M963341</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-16T09:02:27Z</dc:date>
    </item>
    <item>
      <title>Re: Provide Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/provide-statement/m-p/4030751#M963342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got your point, but I cannot rely on this as some of the fields in structure remains blank. Is there any other way.. such as using Valid flag ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jun 2008 09:12:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/provide-statement/m-p/4030751#M963342</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-16T09:12:20Z</dc:date>
    </item>
  </channel>
</rss>

