<?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/3794052#M912509</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Prameters: p_number type vbrk-vbeln.&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt; begin of wa,&lt;/P&gt;&lt;P&gt; vbeln type vbrk-vbeln,&lt;/P&gt;&lt;P&gt;fkart type vbrk-fkart,&lt;/P&gt;&lt;P&gt;end of wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single vbeln fkart&lt;/P&gt;&lt;P&gt;  from vbrk&lt;/P&gt;&lt;P&gt;into wa where vbeln eq p_number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you get the billing type for particular invoice number.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 May 2008 09:54:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-15T09:54:58Z</dc:date>
    <item>
      <title>select single</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-single/m-p/3794047#M912504</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am selecting vbeln and fkart from vbrk, since vbeln is a key field i will fetch a single record&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use&lt;/P&gt;&lt;P&gt;select single vbeln fkart from vbrk where ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I use the values vbrk-vbeln and vbrk-fkart for further processing, can I use into clause here?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 08:48:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-single/m-p/3794047#M912504</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-15T08:48:04Z</dc:date>
    </item>
    <item>
      <title>Re: select single</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-single/m-p/3794048#M912505</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;types: begin of t_itab,&lt;/P&gt;&lt;P&gt;           vbeln like vbrk-vbeln,&lt;/P&gt;&lt;P&gt;           fkart like vbrk-fkart,&lt;/P&gt;&lt;P&gt;         end of t_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: itab type table of t_itab,    " internal table&lt;/P&gt;&lt;P&gt;         wa_itab type t_itab.    " work area&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;&lt;STRONG&gt;Selecting  single field depending on the indexes vbeln and fkart into the work area.&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;select single vbeln fkart &lt;/P&gt;&lt;P&gt;                   from vbrk&lt;/P&gt;&lt;P&gt;                   into wa_itab&lt;/P&gt;&lt;P&gt;                   where   vbeln = vbrk-vbeln&lt;/P&gt;&lt;P&gt;                        and fkart = vbrk-fkart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Reward if Helpful&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jagadish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 08:49:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-single/m-p/3794048#M912505</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-15T08:49:19Z</dc:date>
    </item>
    <item>
      <title>Re: select single</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-single/m-p/3794049#M912506</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;use like this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;define a work area&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : begin of wa.&lt;/P&gt;&lt;P&gt;           vbeln like vbrk-vbeln,&lt;/P&gt;&lt;P&gt;           fkart like vberk-fkart,&lt;/P&gt;&lt;P&gt;         end of wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single vbeln fkart from vbrk &lt;/P&gt;&lt;P&gt;           into &amp;lt;WA&amp;gt; where ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and you can acess the values like this wa-vbeln,&lt;/P&gt;&lt;P&gt;                                                         wa-fkart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful&lt;/P&gt;&lt;P&gt;prasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 08:51:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-single/m-p/3794049#M912506</guid>
      <dc:creator>prasanth_kasturi</dc:creator>
      <dc:date>2008-05-15T08:51: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/3794050#M912507</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;Hope the below link will be helpfull to know more select single statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_46c/helpdata/en/fc/eb3990358411d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_46c/helpdata/en/fc/eb3990358411d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ramya.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if usefull.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 09:03:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-single/m-p/3794050#M912507</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-15T09:03:44Z</dc:date>
    </item>
    <item>
      <title>Re: select single</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-single/m-p/3794051#M912508</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;define a work area&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single vbeln fkart from vbrk &lt;/P&gt;&lt;P&gt;into &amp;lt;WA&amp;gt; where ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and you can acess the values like this wa-vbeln,&lt;/P&gt;&lt;P&gt;wa-fkart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 09:07:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-single/m-p/3794051#M912508</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-15T09:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: select single</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-single/m-p/3794052#M912509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Prameters: p_number type vbrk-vbeln.&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt; begin of wa,&lt;/P&gt;&lt;P&gt; vbeln type vbrk-vbeln,&lt;/P&gt;&lt;P&gt;fkart type vbrk-fkart,&lt;/P&gt;&lt;P&gt;end of wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single vbeln fkart&lt;/P&gt;&lt;P&gt;  from vbrk&lt;/P&gt;&lt;P&gt;into wa where vbeln eq p_number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you get the billing type for particular invoice number.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 09:54:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-single/m-p/3794052#M912509</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-15T09:54:58Z</dc:date>
    </item>
  </channel>
</rss>

