<?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 regarding PUT statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-put-statement/m-p/2300012#M502565</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)what is the functionality of PUT statement apart from triggering GET event?&lt;/P&gt;&lt;P&gt;2)when will GET &amp;lt;TABLE&amp;gt; LATE trigger?what is its functionality?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks inadvance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 May 2007 08:35:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-23T08:35:29Z</dc:date>
    <item>
      <title>regarding PUT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-put-statement/m-p/2300012#M502565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)what is the functionality of PUT statement apart from triggering GET event?&lt;/P&gt;&lt;P&gt;2)when will GET &amp;lt;TABLE&amp;gt; LATE trigger?what is its functionality?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks inadvance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 08:35:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-put-statement/m-p/2300012#M502565</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T08:35:29Z</dc:date>
    </item>
    <item>
      <title>Re: regarding PUT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-put-statement/m-p/2300013#M502566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Surya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;1)what is the functionality of PUT statement apart from triggering GET event?&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;A) PUT statement is only used with LDBs.&lt;/P&gt;&lt;P&gt;PUT &amp;lt;node&amp;gt; statement to trigger a corresponding GET event in the ABAP runtime environment. The PUT statement is the central statement in this subroutine: It can only be used within a subroutine of a logical database. The logical database must contain the node &amp;lt;node&amp;gt;, and the subroutine name must begin with PUT_&amp;lt;node&amp;gt;. The PUT statement directs the program flow according to the structure of the logical database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;2)when will GET &amp;lt;TABLE&amp;gt; LATE trigger?what is its functionality?&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;A) &lt;/P&gt;&lt;P&gt;Executes the code following " GET dbtab LATE. " only when all the subordinate tables have been read and processed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;Count the smokers among the bookings already made. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: SFLIGHT, SBOOK.&lt;/P&gt;&lt;P&gt;DATA SMOKERS TYPE I.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET SFLIGHT.&lt;/P&gt;&lt;P&gt;  ULINE.&lt;/P&gt;&lt;P&gt;  WRITE: / SFLIGHT-SEATSMAX,&lt;/P&gt;&lt;P&gt;           SFLIGHT-SEATSOCC.&lt;/P&gt;&lt;P&gt;  SMOKERS = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET SBOOK.&lt;/P&gt;&lt;P&gt;  CHECK SBOOK-SMOKER &amp;lt;&amp;gt; SPACE.&lt;/P&gt;&lt;P&gt;  ADD 1 TO SMOKERS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET FLIGHT LATE.&lt;/P&gt;&lt;P&gt;  WRITE SMOKERS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 08:41:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-put-statement/m-p/2300013#M502566</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T08:41:20Z</dc:date>
    </item>
    <item>
      <title>Re: regarding PUT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-put-statement/m-p/2300014#M502567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.The runtime sequence is controlled by the PUT statement in LDB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.The event GET..LATE is triggered when all of the data records for a node of the logical database have been read. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Padmam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 08:44:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-put-statement/m-p/2300014#M502567</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T08:44:27Z</dc:date>
    </item>
    <item>
      <title>Re: regarding PUT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-put-statement/m-p/2300015#M502568</link>
      <description>&lt;P&gt;Can you please put screenshot of output as well when writing code snippet please &lt;/P&gt;</description>
      <pubDate>Fri, 04 Dec 2020 16:40:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-put-statement/m-p/2300015#M502568</guid>
      <dc:creator>former_member675371</dc:creator>
      <dc:date>2020-12-04T16:40:41Z</dc:date>
    </item>
  </channel>
</rss>

