<?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: Difference between  -  and  ~ in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-and/m-p/3739652#M900085</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Every time you use and alias in a join you need to use ~, otherwise you use -.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 May 2008 15:00:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-07T15:00:19Z</dc:date>
    <item>
      <title>Difference between  -  and  ~</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-and/m-p/3739650#M900083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All of you must be wondering for such a basic question. Could anyone please tell me what is sign ~?&lt;/P&gt;&lt;P&gt;what is the difference between - and ~  sign while writing ABAP?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g:&lt;/P&gt;&lt;P&gt;mara-matnr&lt;/P&gt;&lt;P&gt;mara~matnr&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2008 14:51:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-and/m-p/3739650#M900083</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-07T14:51:49Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between  -  and  ~</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-and/m-p/3739651#M900084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the symbol ~ is only used in SELECT statement via JOIN: &lt;/P&gt;&lt;P&gt;Example: &lt;/P&gt;&lt;P&gt;select * from mara inner join marc&lt;/P&gt;&lt;P&gt;on mara&lt;SUB&gt;matnr = marc&lt;/SUB&gt;matnr&lt;/P&gt;&lt;P&gt;into corresponding fields of table itab&lt;/P&gt;&lt;P&gt;where mara~matkl = '19'&lt;/P&gt;&lt;P&gt;and    marc~werks = 'C001'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there is no difference with -, it's only the sintaxis of select with joins.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2008 14:59:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-and/m-p/3739651#M900084</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-07T14:59:24Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between  -  and  ~</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-and/m-p/3739652#M900085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Every time you use and alias in a join you need to use ~, otherwise you use -.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2008 15:00:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-and/m-p/3739652#M900085</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-07T15:00:19Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between  -  and  ~</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-and/m-p/3739653#M900086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Yogesh,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;~&lt;/STRONG&gt; This is used when we are using Joins in a select query.&lt;/P&gt;&lt;P&gt;eg: SELECT a&lt;SUB&gt;matnr b&lt;/SUB&gt;maktx&lt;/P&gt;&lt;P&gt;INTO TABLE i_mara&lt;/P&gt;&lt;P&gt;FROM mara AS a INNER JOIN makt AS b&lt;/P&gt;&lt;P&gt; ON a~matnr EQ bmatnr&lt;/P&gt;&lt;P&gt;WHERE a~matnr IN so_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here this symbol is used to link the connection between table and field in data base level.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;-&lt;/STRONG&gt; This is used to identify the field from work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg: wa_mara-matnr. i.e wa_mara is a structure having many fields. This - symbol is just to get the required field from the work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2008 15:06:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-and/m-p/3739653#M900086</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-05-07T15:06:04Z</dc:date>
    </item>
  </channel>
</rss>

