<?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: Call Back Function in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-back-function/m-p/1426887#M204533</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;example of call back function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following programming example shows you how to use this feature:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFC client program&lt;/P&gt;&lt;P&gt;   Function module in an R/3 System&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;rfc_rc = RfcOpen(...);&lt;/P&gt;&lt;P&gt;   FUNCTION ABC.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;rfc_rc = RfcInstallFunction(&amp;#145;XYZ&amp;#146;, xyz_function,...);&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;rfc_rc = RfcCallReceive(&amp;#145;ABC&amp;#146;,...);&lt;/P&gt;&lt;P&gt; -&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;&amp;gt;&lt;/P&gt;&lt;P&gt; ...&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;    CALL FUNCTION &amp;#145;XYZ&amp;#146; DESTINATION &amp;#145;BACK&amp;#146;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;If(rfc_rc==RFC_CALL)&lt;/P&gt;&lt;P&gt; &amp;lt;-----&lt;/P&gt;&lt;P&gt; ...&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;rfc_rc = RfcDispatch(...);&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;if(rfc_rc!=RFC_OK)&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;exit(1);&lt;/P&gt;&lt;P&gt; -&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;&amp;gt;&lt;/P&gt;&lt;P&gt; ...&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;rfc_rc=RfcReceive(...);&lt;/P&gt;&lt;P&gt; &amp;lt;-----&lt;/P&gt;&lt;P&gt; ENDFUNCTION&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* RFC function: &amp;#145;ABC&amp;#146; */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static RFC_RC xyz_function(RFC_HANDLE rfc_handle)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rfc_rc = RfcGetData(...); /* Get RFC data */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... /* Process RFC data */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rfc_rc = RfcSendData(...); /* Report result to ABAP */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;return 0;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sameena&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Jun 2006 08:34:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-20T08:34:06Z</dc:date>
    <item>
      <title>Call Back Function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-back-function/m-p/1426882#M204528</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;Can anyone tell me what is a call back function?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2006 22:52:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-back-function/m-p/1426882#M204528</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-19T22:52:31Z</dc:date>
    </item>
    <item>
      <title>Re: Call Back Function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-back-function/m-p/1426883#M204529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pl check this &amp;lt;a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/22/042a91488911d189490000e829fbbd/frameset.htm"&amp;gt;SAP Help&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2006 23:01:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-back-function/m-p/1426883#M204529</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-06-19T23:01:14Z</dc:date>
    </item>
    <item>
      <title>Re: Call Back Function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-back-function/m-p/1426884#M204530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Ravindra,&lt;/P&gt;&lt;P&gt;  Check this Link out&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/22/042a91488911d189490000e829fbbd/frameset.htm&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2006 23:11:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-back-function/m-p/1426884#M204530</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-19T23:11:39Z</dc:date>
    </item>
    <item>
      <title>Re: Call Back Function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-back-function/m-p/1426885#M204531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;GOOD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GO THROUGH THESE LINKS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://docsrv.sco.com/cgi-bin/man/man?SAPNotifyOfChange+3sapd" target="test_blank"&gt;http://docsrv.sco.com/cgi-bin/man/man?SAPNotifyOfChange+3sapd&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://search.cpan.org/~piers/SAP-Rfc-1.43/Rfc.pm" target="test_blank"&gt;http://search.cpan.org/~piers/SAP-Rfc-1.43/Rfc.pm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAL_DSP_LOG_PARAMETERS Either output extended long text or call a callback routine (based on the data in BAL_S_LOG-PARAMS) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAL_DSP_MSG_PARAMETERS Either output extended long text or call a callback routine (based on the data in BAL_S_MSG-PARAMS) &lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------" /&gt;&lt;P&gt;SAP Management &lt;/P&gt;&lt;P&gt;The ESROP-User calls ESROP SAP management functions to register or deregister as an ESROS service user. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bind an ESROP-User &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Int&lt;/P&gt;&lt;P&gt;ESROP_sapBind   (ESROP_SapDescsapDesc,&lt;/P&gt;&lt;P&gt;                               ESROP_SapSelsapSel,&lt;/P&gt;&lt;P&gt;                               ESROP_FunctionalUnit functionalUnit,&lt;/P&gt;&lt;P&gt;                               int (*invokeInd)(ESROP_SapSel,&lt;/P&gt;&lt;P&gt;                                         ESROP_SapSel,&lt;/P&gt;&lt;P&gt;                                         T_SapSel */&lt;/P&gt;&lt;P&gt;                                         N_SapAddr */&lt;/P&gt;&lt;P&gt;                                         ESROP_InvokeDesc,&lt;/P&gt;&lt;P&gt;                                         ESROP_OperationValue,&lt;/P&gt;&lt;P&gt;                                         ESROP_EncodingType,&lt;/P&gt;&lt;P&gt;                                         DU_View),&lt;/P&gt;&lt;P&gt;                               int (*resultInd) (ESROP_InvokeDesc,&lt;/P&gt;&lt;P&gt;                                         ESROP_UserInvokeRef,&lt;/P&gt;&lt;P&gt;                                         ESROP_EncodingType,&lt;/P&gt;&lt;P&gt;                                         DU_View),&lt;/P&gt;&lt;P&gt;                               int (*errorInd)  (ESROP_InvokeDesc,&lt;/P&gt;&lt;P&gt;                                         ESROP_UserInvokeRef,&lt;/P&gt;&lt;P&gt;                                         ESROP_EncodingType,&lt;/P&gt;&lt;P&gt;                                         ESROP_ErrorValue,&lt;/P&gt;&lt;P&gt;                                         DU_View),&lt;/P&gt;&lt;P&gt;                               int (*resultCnf) (ESROP_InvokeDesc,&lt;/P&gt;&lt;P&gt;                                         ESROP_UserInvokeRef),&lt;/P&gt;&lt;P&gt;                               int (*errorCnf)( ESROP_InvokeDesc,&lt;/P&gt;&lt;P&gt;                                         ESROP_UserInvokeRef),&lt;/P&gt;&lt;P&gt;                               int (*failureInd)(ESROP_InvokeDesc,&lt;/P&gt;&lt;P&gt;                                         ESROP_UserInvokeRef,&lt;/P&gt;&lt;P&gt;                                         ESROP_FailureValue))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This function binds an ESROP-User at the ESROP layer by creating an ESROP-SAP. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The sapSel argument specifies the ESROP-SAP Selector Address to be associated with this service user. The ESROP-SAP descriptor value is returned to the caller through sapDesc argument. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The functionalUnit argument specifies the method of handshaking used by the SAP. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The remaining arguments specify the addresses of the callback functions (and their arguments) that the SAP should invoke upon the occurrence of specific events. For instance, invokeInd points to the function that is executed when a performer ESROP receives an invocation. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ESROP_sapBind returns 0 on successful completion. It returns a negative value if unsuccessful. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANKS&lt;/P&gt;&lt;P&gt;MRUTYUN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 03:33:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-back-function/m-p/1426885#M204531</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T03:33:53Z</dc:date>
    </item>
    <item>
      <title>Re: Call Back Function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-back-function/m-p/1426886#M204532</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 check this wikipedia link...it gives a very generic explanation for callback function &lt;/P&gt;&lt;P&gt;&lt;A href="http://en.wikipedia.org/wiki/Callback_(computer_science)" target="test_blank"&gt;http://en.wikipedia.org/wiki/Callback_(computer_science)&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but worth giving a read ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 08:22:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-back-function/m-p/1426886#M204532</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T08:22:30Z</dc:date>
    </item>
    <item>
      <title>Re: Call Back Function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-back-function/m-p/1426887#M204533</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;example of call back function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following programming example shows you how to use this feature:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFC client program&lt;/P&gt;&lt;P&gt;   Function module in an R/3 System&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;rfc_rc = RfcOpen(...);&lt;/P&gt;&lt;P&gt;   FUNCTION ABC.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;rfc_rc = RfcInstallFunction(&amp;#145;XYZ&amp;#146;, xyz_function,...);&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;rfc_rc = RfcCallReceive(&amp;#145;ABC&amp;#146;,...);&lt;/P&gt;&lt;P&gt; -&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;&amp;gt;&lt;/P&gt;&lt;P&gt; ...&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;    CALL FUNCTION &amp;#145;XYZ&amp;#146; DESTINATION &amp;#145;BACK&amp;#146;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;If(rfc_rc==RFC_CALL)&lt;/P&gt;&lt;P&gt; &amp;lt;-----&lt;/P&gt;&lt;P&gt; ...&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;rfc_rc = RfcDispatch(...);&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;if(rfc_rc!=RFC_OK)&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;exit(1);&lt;/P&gt;&lt;P&gt; -&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;&amp;gt;&lt;/P&gt;&lt;P&gt; ...&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;rfc_rc=RfcReceive(...);&lt;/P&gt;&lt;P&gt; &amp;lt;-----&lt;/P&gt;&lt;P&gt; ENDFUNCTION&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* RFC function: &amp;#145;ABC&amp;#146; */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static RFC_RC xyz_function(RFC_HANDLE rfc_handle)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rfc_rc = RfcGetData(...); /* Get RFC data */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... /* Process RFC data */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rfc_rc = RfcSendData(...); /* Report result to ABAP */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;return 0;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sameena&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 08:34:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-back-function/m-p/1426887#M204533</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T08:34:06Z</dc:date>
    </item>
    <item>
      <title>Re: Call Back Function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-back-function/m-p/1426888#M204534</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;Check this..&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/22/042a6a488911d189490000e829fbbd/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/22/042a6a488911d189490000e829fbbd/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 08:38:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-back-function/m-p/1426888#M204534</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T08:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: Call Back Function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-back-function/m-p/1426889#M204535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ravindranath,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. As the name suggests,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  its a function (subroutine)&lt;/P&gt;&lt;P&gt;  which is CALLED&lt;/P&gt;&lt;P&gt;  when some specified event occurs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. A Simple example is of ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. We can write program for INTERACTIVE ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. In that we specify the CALL BACK FORM NAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. So when the user DOUBLE-CLICKS on any row on the alv,&lt;/P&gt;&lt;P&gt;  the system,&lt;/P&gt;&lt;P&gt;  CALLS OUR FORM (SUBROUTINE)&lt;/P&gt;&lt;P&gt;  and passes some parameters to it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. In that form, we handle the further reaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 08:41:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-back-function/m-p/1426889#M204535</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T08:41:51Z</dc:date>
    </item>
    <item>
      <title>Re: Call Back Function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-back-function/m-p/1426890#M204536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt; ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   If u r asking in ALV means,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       In the EXPORTING parameters the Naming starts with CALLBACK means, u have to pass the Subroutine name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In FMs: REUSE_ALV_LIST_DISPLAY AND REUSE_ALV_GRID_DISPLAY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it is Module pool programming,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   This is releated to Update techniques.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     Call function &amp;lt;Function Name&amp;gt; in UPDATE TASK.&lt;/P&gt;&lt;P&gt;     Call function &amp;lt;Function Name&amp;gt; in Background Task.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Selvapandian Arunachalam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 08:53:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-back-function/m-p/1426890#M204536</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T08:53:59Z</dc:date>
    </item>
  </channel>
</rss>

