<?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: simple QA in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-qa/m-p/1341111#M172594</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yo can try too with:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single lblni ebeln ebelp banfn bnfpo packno&lt;/P&gt;&lt;P&gt;from essr&lt;/P&gt;&lt;P&gt;into itab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Jun 2006 12:18:05 GMT</pubDate>
    <dc:creator>LucianoBentiveg</dc:creator>
    <dc:date>2006-06-06T12:18:05Z</dc:date>
    <item>
      <title>simple QA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-qa/m-p/1341100#M172583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;        zlblni like essr-lblni,&lt;/P&gt;&lt;P&gt;        zebeln like essr-ebeln,&lt;/P&gt;&lt;P&gt;        zebelp like essr-ebelp,&lt;/P&gt;&lt;P&gt;        zbanfn like  essr-banfn,&lt;/P&gt;&lt;P&gt;        zbnfpo  like essr-bnfpo,&lt;/P&gt;&lt;P&gt;        zpackno like essr-packno,&lt;/P&gt;&lt;P&gt;        zko_ebeln like ekko-ebeln,&lt;/P&gt;&lt;P&gt;        zko_lifnr like ekko-lifnr,&lt;/P&gt;&lt;P&gt;        zbelnr  like rseg-belnr,&lt;/P&gt;&lt;P&gt;end of....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single lblni ebeln ebelp banfn bnfpo packno&lt;/P&gt;&lt;P&gt;from   essr&lt;/P&gt;&lt;P&gt;into   corresponding fields of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;why its not work???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 12:09:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-qa/m-p/1341100#M172583</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-06T12:09:44Z</dc:date>
    </item>
    <item>
      <title>Re: simple QA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-qa/m-p/1341101#M172584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;give the itabi field names same as database field names or else exclusively specify the fields of the itab in the select statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 12:11:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-qa/m-p/1341101#M172584</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-06T12:11:27Z</dc:date>
    </item>
    <item>
      <title>Re: simple QA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-qa/m-p/1341102#M172585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The names of the internal table fields should be matching with those in the table.&lt;/P&gt;&lt;P&gt;This would work:&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;data: begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;lblni like essr-lblni,&lt;/P&gt;&lt;P&gt;ebeln like essr-ebeln,&lt;/P&gt;&lt;P&gt;ebelp like essr-ebelp,&lt;/P&gt;&lt;P&gt;banfn like essr-banfn,&lt;/P&gt;&lt;P&gt;bnfpo like essr-bnfpo,&lt;/P&gt;&lt;P&gt;packno like essr-packno,&lt;/P&gt;&lt;P&gt;zko_ebeln like ekko-ebeln,&lt;/P&gt;&lt;P&gt;zko_lifnr like ekko-lifnr,&lt;/P&gt;&lt;P&gt;zbelnr like rseg-belnr,&lt;/P&gt;&lt;P&gt;end of....&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 12:11:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-qa/m-p/1341102#M172585</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-06T12:11:52Z</dc:date>
    </item>
    <item>
      <title>Re: simple QA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-qa/m-p/1341103#M172586</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi liat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. BCOS the FIELD NAMES ARE DIFFERENT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. THE FIELD NAMES SHOULD BE SAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Remove Z&lt;/P&gt;&lt;P&gt;   from the field names in 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;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 12:13:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-qa/m-p/1341103#M172586</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-06T12:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: simple QA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-qa/m-p/1341104#M172587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Because in ESSR you have field like EBELN and not ZEBELN, so move-correcponding won't move it as they have different names.&lt;/P&gt;&lt;P&gt;Either remove the z from your fields name or remove the move-corresponding and * from your select.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 12:13:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-qa/m-p/1341104#M172587</guid>
      <dc:creator>Peter_Inotai</dc:creator>
      <dc:date>2006-06-06T12:13:03Z</dc:date>
    </item>
    <item>
      <title>Re: simple QA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-qa/m-p/1341105#M172588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;like other said.. 'CORRESPONDING' will work for only an exact match of field names..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 12:13:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-qa/m-p/1341105#M172588</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-06-06T12:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: simple QA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-qa/m-p/1341106#M172589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;select single lblni ebeln ebelp banfn bnfpo packno&lt;/P&gt;&lt;P&gt;from essr&lt;/P&gt;&lt;P&gt;into (itab-zlblni,itab-zebeln,itab-zebelp,itab-zbanfn,&lt;/P&gt;&lt;P&gt;itab-zbnfpo,itab-zpackno).&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 12:14:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-qa/m-p/1341106#M172589</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-06T12:14:02Z</dc:date>
    </item>
    <item>
      <title>Re: simple QA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-qa/m-p/1341107#M172590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;into corresponding fields&amp;lt;/b&amp;gt; compares the field names &amp;amp; moves the fields accordingly so declaring itab fields with the same names as the table names is always recommended.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 12:14:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-qa/m-p/1341107#M172590</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-06T12:14:06Z</dc:date>
    </item>
    <item>
      <title>Re: simple QA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-qa/m-p/1341108#M172591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Liat,&lt;/P&gt;&lt;P&gt;  Remove Z and declare this way&lt;/P&gt;&lt;P&gt;data: begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;lblni like essr-lblni,&lt;/P&gt;&lt;P&gt;ebeln like essr-ebeln,&lt;/P&gt;&lt;P&gt;ebelp like essr-ebelp,&lt;/P&gt;&lt;P&gt;banfn like essr-banfn,&lt;/P&gt;&lt;P&gt;bnfpo like essr-bnfpo,&lt;/P&gt;&lt;P&gt;packno like essr-packno,&lt;/P&gt;&lt;P&gt;ko_ebeln like ekko-ebeln,&lt;/P&gt;&lt;P&gt;ko_lifnr like ekko-lifnr,&lt;/P&gt;&lt;P&gt;belnr like rseg-belnr,&amp;lt;/b&amp;gt;end of....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 12:15:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-qa/m-p/1341108#M172591</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-06T12:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: simple QA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-qa/m-p/1341109#M172592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HOPE THIS HELPS YOU..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntatically your select will be correct. If you want to select multiple items use select as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select lblni ebeln ebelp banfn bnfpo packno
from essr into corresponding fields of table itab.
break-point.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt; Thomas.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 12:16:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-qa/m-p/1341109#M172592</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-06T12:16:00Z</dc:date>
    </item>
    <item>
      <title>Re: simple QA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-qa/m-p/1341110#M172593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi liat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when u r using into &amp;lt;b&amp;gt;corresponding fields of itab&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;the fieldnames should be the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like this..&lt;/P&gt;&lt;P&gt;data: begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;lblni like essr-lblni,&lt;/P&gt;&lt;P&gt;ebeln like essr-ebeln,&lt;/P&gt;&lt;P&gt;ebelp like essr-ebelp,&lt;/P&gt;&lt;P&gt;banfn like essr-banfn,&lt;/P&gt;&lt;P&gt;bnfpo like essr-bnfpo,&lt;/P&gt;&lt;P&gt;packno like essr-packno,&lt;/P&gt;&lt;P&gt;zko_ebeln like ekko-ebeln,&lt;/P&gt;&lt;P&gt;zko_lifnr like ekko-lifnr,&lt;/P&gt;&lt;P&gt;zbelnr like rseg-belnr,&lt;/P&gt;&lt;P&gt;end of....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps,&lt;/P&gt;&lt;P&gt;priya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 12:16:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-qa/m-p/1341110#M172593</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-06T12:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: simple QA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-qa/m-p/1341111#M172594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yo can try too with:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single lblni ebeln ebelp banfn bnfpo packno&lt;/P&gt;&lt;P&gt;from essr&lt;/P&gt;&lt;P&gt;into itab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 12:18:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-qa/m-p/1341111#M172594</guid>
      <dc:creator>LucianoBentiveg</dc:creator>
      <dc:date>2006-06-06T12:18:05Z</dc:date>
    </item>
  </channel>
</rss>

