<?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: GET bsid. How does it work? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-bsid-how-does-it-work/m-p/3648783#M878801</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;You can consider GET like a SELECT ..ENDSELECT statement.&lt;/P&gt;&lt;P&gt;It will get the data in BSID work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Apr 2008 03:23:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-08T03:23:31Z</dc:date>
    <item>
      <title>GET bsid. How does it work?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-bsid-how-does-it-work/m-p/3648782#M878800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How does GET works?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET bsid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bsid is an logical database...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Apr 2008 03:21:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-bsid-how-does-it-work/m-p/3648782#M878800</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-08T03:21:58Z</dc:date>
    </item>
    <item>
      <title>Re: GET bsid. How does it work?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-bsid-how-does-it-work/m-p/3648783#M878801</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;You can consider GET like a SELECT ..ENDSELECT statement.&lt;/P&gt;&lt;P&gt;It will get the data in BSID work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Apr 2008 03:23:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-bsid-how-does-it-work/m-p/3648783#M878801</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-08T03:23:31Z</dc:date>
    </item>
    <item>
      <title>Re: GET bsid. How does it work?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-bsid-how-does-it-work/m-p/3648784#M878802</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;When you link a logical database with an executable program, the GET statements determine the depth to which the logical database is read. When you call the function module LDB_PROCESS, you determine the depth by specifying a node name in the CALLBACK parameter. For each node for which you request data, a callback routine can be executed at two points. These correspond to the GET and GET LATE events in executable programs. In the table parameter CALLBACK, you specify the name of the callback routine and the required execution point for each node. A callback routine is a subroutine in the calling program or another program that is to be executed at the required point. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the GET event, the callback routine is executed directly after the data has been read for the node, and before the subordinate nodes are processed. For the GET_LATE event, the callback routine is processed after the subordinate nodes have been processed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The line type of the table parameter CALLBACK is the flat structure LDBCB from the ABAP Dictionary. It has the following components: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LDBNODE&lt;/P&gt;&lt;P&gt;Name of the node of the logical database to be read. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET&lt;/P&gt;&lt;P&gt;A flag (contents X or SPACE), to call the corresponding callback routine at the GET event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET_LATE&lt;/P&gt;&lt;P&gt;A flag (contents X or SPACE), to call the corresponding callback routine at the GET LATE event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also chk this for sample code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[http://help.sap.com/saphelp_nw70/helpdata/en/9f/db9aa335c111d1829f0000e829fbfe/content.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls. reward if useful...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Apr 2008 03:32:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-bsid-how-does-it-work/m-p/3648784#M878802</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-08T03:32:44Z</dc:date>
    </item>
  </channel>
</rss>

