<?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 LDB: Provide query err in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/ldb-provide-query-err/m-p/2677010#M618543</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    kindly correct the the error in the PROVIDE stament.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;provide prfno pernr rnr01 repto asgsd rolld FROM p9035&lt;/P&gt;&lt;P&gt;          INTO (gi_prj_allc-hrd_ref, gi_prj_allc-emp_no, gi_prj_allc-prj_role, &lt;/P&gt;&lt;P&gt;                  gi_prj_allc-rept_to, gi_prj_allc-date_allc,gi_prj_allc-date_relv)&lt;/P&gt;&lt;P&gt;          between p0000-begda and p0000-endda.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thankz &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;vallamuthu.M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Aug 2007 11:03:50 GMT</pubDate>
    <dc:creator>vallamuthu_madheswaran2</dc:creator>
    <dc:date>2007-08-28T11:03:50Z</dc:date>
    <item>
      <title>LDB: Provide query err</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ldb-provide-query-err/m-p/2677010#M618543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    kindly correct the the error in the PROVIDE stament.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;provide prfno pernr rnr01 repto asgsd rolld FROM p9035&lt;/P&gt;&lt;P&gt;          INTO (gi_prj_allc-hrd_ref, gi_prj_allc-emp_no, gi_prj_allc-prj_role, &lt;/P&gt;&lt;P&gt;                  gi_prj_allc-rept_to, gi_prj_allc-date_allc,gi_prj_allc-date_relv)&lt;/P&gt;&lt;P&gt;          between p0000-begda and p0000-endda.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thankz &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;vallamuthu.M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2007 11:03:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ldb-provide-query-err/m-p/2677010#M618543</guid>
      <dc:creator>vallamuthu_madheswaran2</dc:creator>
      <dc:date>2007-08-28T11:03:50Z</dc:date>
    </item>
    <item>
      <title>Re: LDB: Provide query err</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ldb-provide-query-err/m-p/2677011#M618544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PROVIDE/ ENDPROVIDE you can not assign variables like that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;instead follow this logic:&lt;/P&gt;&lt;P&gt;give PNP as the logical database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create an internal table IT_XYZ have the reqd fields, and create a corresponding work area WA_XYZ.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;provide&amp;lt;/b&amp;gt; prfno &lt;/P&gt;&lt;P&gt;           pernr &lt;/P&gt;&lt;P&gt;           rnr01 &lt;/P&gt;&lt;P&gt;           repto &lt;/P&gt;&lt;P&gt;           asgsd &lt;/P&gt;&lt;P&gt;           rolld FROM p9035&lt;/P&gt;&lt;P&gt;                  between pnp-begda and pnp-endda.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;endprovide.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Now assign the values to workarea&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    WA_XYZ-field1 = p9035-prfno&lt;/P&gt;&lt;P&gt;    WA_XYZ-field2 = p9035-pernr&lt;/P&gt;&lt;P&gt;    -&lt;/P&gt;&lt;P&gt;    -assign all fields like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;append WA_XYZ to IT_XYZ&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will populate the internal table IT_XYZ with the desired values.&lt;/P&gt;&lt;P&gt;you might have to modify it according to your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sonal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points if helpful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        sonal sharda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2007 11:14:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ldb-provide-query-err/m-p/2677011#M618544</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-28T11:14:27Z</dc:date>
    </item>
  </channel>
</rss>

