<?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 function ... destination in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-destination/m-p/1985169#M402371</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is the CORRECT code of my RFC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  FUNCTION ZLETRARFWBI001.&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;STRONG&gt;"&lt;/STRONG&gt;"Interfase local&lt;/P&gt;&lt;P&gt;*"  IMPORTING&lt;/P&gt;&lt;P&gt;*"     VALUE(LINEAS) TYPE  IW_NOLINES&lt;/P&gt;&lt;P&gt;*"  TABLES&lt;/P&gt;&lt;P&gt;*"      TI_FECHAS STRUCTURE  ZLETRADATES OPTIONAL&lt;/P&gt;&lt;P&gt;*"      TI_TRANS_PLAN_PT STRUCTURE  ZLETRATPLST&lt;/P&gt;&lt;P&gt;*"      TI_LOADS STRUCTURE  ZLETRATKNUM OPTIONAL&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt; &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;And this is the CORRECT code of my call to the RFC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'ZLETRARFWBI001' destination VL_DEST&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      LINEAS     = VL_LINEAS&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      TI_FECHAS  =  TI_FECHAS&lt;/P&gt;&lt;P&gt;      TI_TPLST   =  TI_TPLST&lt;/P&gt;&lt;P&gt;      TI_LOADS   =  TI_LOADS&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      system_failure        = 1  MESSAGE VL_MESS&lt;/P&gt;&lt;P&gt;      communication_failure = 2  MESSAGE VL_MESS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Feb 2007 15:55:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-16T15:55:43Z</dc:date>
    <item>
      <title>call function ... destination</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-destination/m-p/1985166#M402368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a process to call an external system. I send some information in tables and I need to receive a numeric value. How can I do it?? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the code of my RFC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  FUNCTION ZLETRARFWBI001.
*"----------------------------------------------------------------------
*"*"Interfase local
*"  TABLES
*"      TI_FECHAS STRUCTURE  ZLETRADATES OPTIONAL
*"      TI_TRANS_PLAN_PT STRUCTURE  ZLETRATPLST
*"      TI_LOADS STRUCTURE  ZLETRATKNUM OPTIONAL
*"  CHANGING
*"     VALUE(LINEAS) TYPE  IW_NOLINES
*"----------------------------------------------------------------------

ENDFUNCTION.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And this is the code of my call to the RFC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  CALL FUNCTION 'ZLETRARFWBI001' destination VL_DEST
    TABLES
      TI_FECHAS  =  TI_FECHAS
      TI_TPLST   =  TI_TPLST
      TI_LOADS   =  TI_LOADS
    CHANGING
      LINEAS     = VL_LINEAS
    EXCEPTIONS
      system_failure        = 1  MESSAGE VL_MESS
      communication_failure = 2  MESSAGE VL_MESS.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone help me please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;       David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 01:35:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-destination/m-p/1985166#M402368</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T01:35:31Z</dc:date>
    </item>
    <item>
      <title>Re: call function ... destination</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-destination/m-p/1985167#M402369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Yes this is the way to RFC funtion module.. destination to need to give RFC connection to the target sytem.&lt;/P&gt;&lt;P&gt;Rgs&lt;/P&gt;&lt;P&gt;Nagaraju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 06:23:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-destination/m-p/1985167#M402369</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T06:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: call function ... destination</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-destination/m-p/1985168#M402370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In SE37 write the code to get the Numeric value, you can write that in this RFC enabled function module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 06:27:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-destination/m-p/1985168#M402370</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T06:27:44Z</dc:date>
    </item>
    <item>
      <title>Re: call function ... destination</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-destination/m-p/1985169#M402371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is the CORRECT code of my RFC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  FUNCTION ZLETRARFWBI001.&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;STRONG&gt;"&lt;/STRONG&gt;"Interfase local&lt;/P&gt;&lt;P&gt;*"  IMPORTING&lt;/P&gt;&lt;P&gt;*"     VALUE(LINEAS) TYPE  IW_NOLINES&lt;/P&gt;&lt;P&gt;*"  TABLES&lt;/P&gt;&lt;P&gt;*"      TI_FECHAS STRUCTURE  ZLETRADATES OPTIONAL&lt;/P&gt;&lt;P&gt;*"      TI_TRANS_PLAN_PT STRUCTURE  ZLETRATPLST&lt;/P&gt;&lt;P&gt;*"      TI_LOADS STRUCTURE  ZLETRATKNUM OPTIONAL&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt; &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;And this is the CORRECT code of my call to the RFC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'ZLETRARFWBI001' destination VL_DEST&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      LINEAS     = VL_LINEAS&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      TI_FECHAS  =  TI_FECHAS&lt;/P&gt;&lt;P&gt;      TI_TPLST   =  TI_TPLST&lt;/P&gt;&lt;P&gt;      TI_LOADS   =  TI_LOADS&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      system_failure        = 1  MESSAGE VL_MESS&lt;/P&gt;&lt;P&gt;      communication_failure = 2  MESSAGE VL_MESS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 15:55:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-destination/m-p/1985169#M402371</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T15:55:43Z</dc:date>
    </item>
  </channel>
</rss>

