<?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: Select single * in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-single/m-p/12402311#M1995750</link>
    <description>&lt;P&gt;Hello  &lt;SPAN class="mention-scrubbed"&gt;ramco_1917&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;Yes. Provide field names instead of the start. Define the structure with the fields and do the following.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT SINGLE matnr, mtart, meins FROM MARA INTO EX_MARA WHERE MATNR = IM_MATNR.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Or&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT SINGLE matnr, mtart, meins FROM MARA INTO CORRESPONDING FIELDS OF EX_MARA WHERE MATNR = IM_MATNR.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Kind regards,&lt;/P&gt;Mateusz</description>
    <pubDate>Fri, 14 May 2021 10:42:39 GMT</pubDate>
    <dc:creator>MateuszAdamus</dc:creator>
    <dc:date>2021-05-14T10:42:39Z</dc:date>
    <item>
      <title>Select single *</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-single/m-p/12402310#M1995749</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
  &lt;P&gt; I have below function . Instead of * i want to display only Matnr , MTART , MEINS fields . Can it be done with Select Single syntax.&lt;/P&gt;
  &lt;P&gt;SELECT SINGLE * FROM MARA&lt;BR /&gt; INTO EX_MARA&lt;BR /&gt; WHERE MATNR = IM_MATNR.&lt;/P&gt;
  &lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 14 May 2021 10:39:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-single/m-p/12402310#M1995749</guid>
      <dc:creator>ramco1917</dc:creator>
      <dc:date>2021-05-14T10:39:49Z</dc:date>
    </item>
    <item>
      <title>Re: Select single *</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-single/m-p/12402311#M1995750</link>
      <description>&lt;P&gt;Hello  &lt;SPAN class="mention-scrubbed"&gt;ramco_1917&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;Yes. Provide field names instead of the start. Define the structure with the fields and do the following.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT SINGLE matnr, mtart, meins FROM MARA INTO EX_MARA WHERE MATNR = IM_MATNR.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Or&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT SINGLE matnr, mtart, meins FROM MARA INTO CORRESPONDING FIELDS OF EX_MARA WHERE MATNR = IM_MATNR.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Kind regards,&lt;/P&gt;Mateusz</description>
      <pubDate>Fri, 14 May 2021 10:42:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-single/m-p/12402311#M1995750</guid>
      <dc:creator>MateuszAdamus</dc:creator>
      <dc:date>2021-05-14T10:42:39Z</dc:date>
    </item>
    <item>
      <title>Re: Select single *</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-single/m-p/12402312#M1995751</link>
      <description>&lt;P&gt;Hi, R S,&lt;/P&gt;&lt;P&gt;Using the new syntax you can do the following&lt;/P&gt;&lt;P&gt;SELECT SINGLE FROM MARA&lt;/P&gt;&lt;P&gt;FIELDS matnr, mtart, meins&lt;/P&gt;&lt;P&gt;INTO EX_MARA&lt;/P&gt;&lt;P&gt;WHERE matnr =  @IM_MATNR &lt;/P&gt;</description>
      <pubDate>Fri, 14 May 2021 12:31:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-single/m-p/12402312#M1995751</guid>
      <dc:creator>stefan-de-vriendt</dc:creator>
      <dc:date>2021-05-14T12:31:58Z</dc:date>
    </item>
    <item>
      <title>Re: Select single *</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-single/m-p/12402313#M1995752</link>
      <description>&lt;P&gt;If you want to declare EX_MARA inline:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;into @DATA(EX_MARA)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Please note that you can have a list of available fields when pressing ctrl-space after the keyword FIELDS&lt;/P&gt;</description>
      <pubDate>Fri, 14 May 2021 15:04:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-single/m-p/12402313#M1995752</guid>
      <dc:creator>stefan-de-vriendt</dc:creator>
      <dc:date>2021-05-14T15:04:23Z</dc:date>
    </item>
    <item>
      <title>Re: Select single *</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-single/m-p/12402314#M1995753</link>
      <description>&lt;P&gt;Please edit your question, select your code and press the "CODE" button to make it correctly colorized/indented, so that it's easier for us to analyze it. Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 14 May 2021 17:52:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-single/m-p/12402314#M1995753</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2021-05-14T17:52:11Z</dc:date>
    </item>
    <item>
      <title>Re: Select single *</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-single/m-p/12402315#M1995754</link>
      <description>&lt;P&gt;If a comma is used between column names, the valid syntax must use  @:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT SINGLE matnr, mtart, meins FROM MARA INTO @EX_MARA WHERE MATNR = @IM_MATNR.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Or&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT SINGLE matnr, mtart, meins FROM MARA INTO CORRESPONDING FIELDS OF @EX_MARA WHERE MATNR = @IM_MATNR.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 14 May 2021 17:56:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-single/m-p/12402315#M1995754</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2021-05-14T17:56:50Z</dc:date>
    </item>
  </channel>
</rss>

