<?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 *ekpo in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/ekpo/m-p/3446191#M827691</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 had seen some of the standard abap that the table name had *, like *ekpo. What is the meaning? What is the difference between with * and without * ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 Feb 2008 04:19:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-22T04:19:29Z</dc:date>
    <item>
      <title>*ekpo</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ekpo/m-p/3446191#M827691</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 had seen some of the standard abap that the table name had *, like *ekpo. What is the meaning? What is the difference between with * and without * ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2008 04:19:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ekpo/m-p/3446191#M827691</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-22T04:19:29Z</dc:date>
    </item>
    <item>
      <title>Re: *ekpo</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ekpo/m-p/3446192#M827692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Where u had seen ? .. i didnt see any of those like *ekpo..&lt;/P&gt;&lt;P&gt;if i type *ekpo in SE11 means it search for tables has patterns like '--ekpo' only..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2008 04:23:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ekpo/m-p/3446192#M827692</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-22T04:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: *ekpo</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ekpo/m-p/3446193#M827693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;      SAP follows some naming conventions to store the old value and the new value. * is one of it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;field (*) wil have the old value and the other will have the new value.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Niyaz&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Niyaz Ahamed on Feb 22, 2008 9:54 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2008 04:23:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ekpo/m-p/3446193#M827693</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-22T04:23:31Z</dc:date>
    </item>
    <item>
      <title>Re: *ekpo</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ekpo/m-p/3446194#M827694</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;*TABLES &lt;STRONG&gt;table_wa&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement declares an additional table work area *table_wa, whose data type, like that of normal TABLES statements of flat, structured data type table_wa, is copied from the ABAP Dictionary. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The additional table work area can be used like the normal table work area. This applies in particular to obsolete short forms of Open SQL statements. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Declaration of a normal and additional table work area and its use in obsolete short forms of the SELECT statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: scarr, *scarr. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE * &lt;/P&gt;&lt;P&gt;       FROM scarr &lt;/P&gt;&lt;P&gt;       WHERE carrid = 'LH'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE * &lt;/P&gt;&lt;P&gt;       FROM *scarr &lt;/P&gt;&lt;P&gt;       WHERE carrid = 'UA'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PLZ reward points if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2008 04:30:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ekpo/m-p/3446194#M827694</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-22T04:30:04Z</dc:date>
    </item>
    <item>
      <title>Re: *ekpo</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ekpo/m-p/3446195#M827695</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;&lt;/P&gt;&lt;P&gt;It just lets you use the table a second time. For example:  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single * from ekpo where ebeln = '12345' and ebelp = '1'.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single * from *ekpo where ebeln = '67890' and ebelp = '1'.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You now have two separate records, one in ekpo and one in *ekpo.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another way to do this is to simply use the 'into' argument in the 'select' statement to read the second ekpo record into some other field. The '*' format can be confusing, I think it may be left over from earlier releases, like 2.2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EKPO is database table and *EKPO is internal table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once you select into EKPO, you can use it the same way as *EKPO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Reward Points if found helpfull..&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Cheers,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Chandra Sekhar.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2008 05:48:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ekpo/m-p/3446195#M827695</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-22T05:48:43Z</dc:date>
    </item>
  </channel>
</rss>

