<?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: Question conserning a remote-enabled BAPI in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441037#M546353</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just move ZBAPI_DELIVERY_DOC_EXPORT to the tables tab and change your select statement to &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT vbeln FROM likp INTO TABLE zbapi_delivery_doc_export&lt;/P&gt;&lt;P&gt;WHERE lddat = zbapi_delivery_doc_import-lddat &lt;/P&gt;&lt;P&gt;AND vstel = zbapi_delivery_doc_import-zzvstel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the structure of zbapi_delivery_doc_export? Is it having only VBELN? You don't have to do anything special for the leading zeros as you are directly selecting from the table into the internal table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Jul 2007 18:58:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-02T18:58:03Z</dc:date>
    <item>
      <title>Question conserning a remote-enabled BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441030#M546346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have created a quick and 'easy' BAPI that will return a table of shipping document numbers.  The code is below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FUNCTION z_bapi_likp_get_list.
*"----------------------------------------------------------------------
*"*"Local Interface:
*"  IMPORTING
*"     VALUE(ZBAPI_DELIVERY_DOC_IMPORT) TYPE  ZBAPI_DELIVERY_DOC_IMPORT
*"  EXPORTING
*"     VALUE(ZBAPI_DELIVERY_DOC_EXPORT) TYPE  ZBAPI_DELIVERY_DOC_EXPORT
*"     VALUE(RETURN) TYPE  BAPIRETURN
*"----------------------------------------------------------------------

  SELECT vbeln FROM likp INTO zbapi_delivery_doc_export
    WHERE lddat = zbapi_delivery_doc_import-lddat AND
          vstel = zbapi_delivery_doc_import-zzvstel.
  ENDSELECT.


ENDFUNCTION .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ZBAPI_DELIVERY_DOC_IMPORT is a structure that contains two fields: LDDAT and VSTEL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ZBAPI_DELIVERY_DOC_EXPORT is a structure that contains one field: VBELN.  I tried to follow  and it seemed to work great but I have a slight 'problem'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to include the leading zeros on the document numbers.  I tried to loop through the structure (after the select) and append the zeros that way but it wasn't allowing me to loop through the structure.  Does anybody have any ideas/suggestions?&amp;lt;a href="http://www.erpgenie.com/abap/bapi/example.htm"&amp;gt;this step-by-step example&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2007 18:41:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441030#M546346</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-02T18:41:08Z</dc:date>
    </item>
    <item>
      <title>Re: Question conserning a remote-enabled BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441031#M546347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well first of all,  if  ZBAPI_DELIVERY_DOC_EXPORT is not a table type, then you are not getting an internal table back from the BAPI, it is a single line, or structure, which is why you can't loop at it.   If you want to return this as a table, then you need to either make ZBAPI_DELIVERY_DOC_EXPORT a table type, or use this in the TABLES parameter tab when defining the function module(BAPI) in SE37.  Right now it is defined as an EXPORTING paramter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As far as the leading zeros are concerned, you should be getting the leading zeros, but you may want to code your select like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  Select vbeln from likp into corresponding fields of table 
                        zbapi_delivery_doc_export
                       WHERE lddat = zbapi_delivery_doc_import-lddat AND
                                     vstel = zbapi_delivery_doc_import-zzvstel.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Of course this coding will only work after you have adjusted the ZBAPI_DELIVERY_DOC_EXPORT parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2007 18:47:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441031#M546347</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-07-02T18:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: Question conserning a remote-enabled BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441032#M546348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Davis,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are trying to loop through ZBAPI_DELIVERY_DOC_EXPORT, it will not work.  Check the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.  Is it a table type?&lt;/P&gt;&lt;P&gt;2.  You are not appending any records.  You have a select...endselect without append.  &lt;/P&gt;&lt;P&gt;Try using select vblen into table ZBAPI_DELIVER_DOC_EXPORT....&lt;/P&gt;&lt;P&gt;and then remove your endselect statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris H.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2007 18:47:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441032#M546348</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-02T18:47:49Z</dc:date>
    </item>
    <item>
      <title>Re: Question conserning a remote-enabled BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441033#M546349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rich, so I don't need the structure in the exporting tab, only the tables tab?  I will try your solution, thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Davis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2007 18:49:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441033#M546349</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-02T18:49:59Z</dc:date>
    </item>
    <item>
      <title>Re: Question conserning a remote-enabled BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441034#M546350</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;The strucuture is flat, so u can loop it, you need to do into the SELECT/ENDSELECT cycle. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  SELECT vbeln FROM likp INTO zbapi_delivery_doc_export
    WHERE lddat = zbapi_delivery_doc_import-lddat AND
                 vstel = zbapi_delivery_doc_import-zzvstel.


   CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
     EXPORTING
       INPUT         = zbapi_delivery_doc_export-vbeln
    IMPORTING
      OUTPUT      = zbapi_delivery_doc_export-vbeln .

  ENDSELECT.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2007 18:50:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441034#M546350</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-02T18:50:28Z</dc:date>
    </item>
    <item>
      <title>Re: Question conserning a remote-enabled BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441035#M546351</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;If you need to export one single document you can use a structure, else you need to create a TABLE parameter based on your structure just as Rich said.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2007 18:54:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441035#M546351</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-02T18:54:15Z</dc:date>
    </item>
    <item>
      <title>Re: Question conserning a remote-enabled BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441036#M546352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Max, thanks for the reply but that is still omitting the leading zeros.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Davis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2007 18:54:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441036#M546352</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-02T18:54:56Z</dc:date>
    </item>
    <item>
      <title>Re: Question conserning a remote-enabled BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441037#M546353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just move ZBAPI_DELIVERY_DOC_EXPORT to the tables tab and change your select statement to &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT vbeln FROM likp INTO TABLE zbapi_delivery_doc_export&lt;/P&gt;&lt;P&gt;WHERE lddat = zbapi_delivery_doc_import-lddat &lt;/P&gt;&lt;P&gt;AND vstel = zbapi_delivery_doc_import-zzvstel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the structure of zbapi_delivery_doc_export? Is it having only VBELN? You don't have to do anything special for the leading zeros as you are directly selecting from the table into the internal table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2007 18:58:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441037#M546353</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-02T18:58:03Z</dc:date>
    </item>
    <item>
      <title>Re: Question conserning a remote-enabled BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441038#M546354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do all table parameters get exported?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2007 18:58:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441038#M546354</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-02T18:58:24Z</dc:date>
    </item>
    <item>
      <title>Re: Question conserning a remote-enabled BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441039#M546355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's right, TABLES parameters are actually both importing and exporting, sort of like changing parameters, but in your case, you are filling in the function module and exporting the data out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2007 19:01:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441039#M546355</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-07-02T19:01:40Z</dc:date>
    </item>
    <item>
      <title>Re: Question conserning a remote-enabled BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441040#M546356</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 UNPACK to add zeros&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UNPACK ZBAPI_DELIVERY_DOC_EXPORT-VBELN TO ZBAPI_DELIVERY_DOC_EXPORT-VBLEN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aRs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2007 19:02:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441040#M546356</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-07-02T19:02:09Z</dc:date>
    </item>
    <item>
      <title>Re: Question conserning a remote-enabled BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441041#M546357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Srinivas, I would think that the leading zeros would stay with the doc number too but that isn't the case.  I found this out when doing a barcode on a smartform (after it was in production).  I am having to do something as follows in that SmartForm:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: w_vbeln type c&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;w_vbeln = vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This way I am able to keep those zeros.  Do you know of a better way of doing it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Davis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2007 19:02:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441041#M546357</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-02T19:02:15Z</dc:date>
    </item>
    <item>
      <title>Re: Question conserning a remote-enabled BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441042#M546358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I now have the following and it doesn't return anything  via the table (the select does pick up the doc numbers though):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FUNCTION Z_BAPI_LIKP_GET_LIST.
*"----------------------------------------------------------------------
*"*"Local Interface:
*"  IMPORTING
*"     VALUE(ZBAPI_DELIVERY_DOC_IMPORT) TYPE  ZBAPI_DELIVERY_DOC_IMPORT
*"  EXPORTING
*"     VALUE(RETURN) TYPE  BAPIRETURN
*"  TABLES
*"      ZBAPI_DELIVERY_DOC_EXPORT STRUCTURE  ZBAPI_DELIVERY_DOC_EXPORT
*"----------------------------------------------------------------------

SELECT vbeln FROM likp INTO zbapi_delivery_doc_export
    WHERE lddat = zbapi_delivery_doc_import-lddat AND
                 vstel = zbapi_delivery_doc_import-zzvstel.


  UNPACK ZBAPI_DELIVERY_DOC_EXPORT-VBELN TO ZBAPI_DELIVERY_DOC_EXPORT-vbeln.

  ENDSELECT.



ENDFUNCTION .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do I need to add an export parameter for the table or do something to the table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Davis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2007 19:06:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441042#M546358</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-02T19:06:14Z</dc:date>
    </item>
    <item>
      <title>Re: Question conserning a remote-enabled BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441043#M546359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please change your coding like so, then it will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT vbeln FROM likp 
      INTO corresponding fields of table  zbapi_delivery_doc_export
           WHERE lddat = zbapi_delivery_doc_import-lddat AND
                         vstel = zbapi_delivery_doc_import-zzvstel.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RIch HEilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2007 19:10:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441043#M546359</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-07-02T19:10:28Z</dc:date>
    </item>
    <item>
      <title>Re: Question conserning a remote-enabled BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441044#M546360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

SELECT vbeln FROM likp INTO zbapi_delivery_doc_export
    WHERE lddat = zbapi_delivery_doc_import-lddat AND
                 vstel = zbapi_delivery_doc_import-zzvstel.
 
 
  UNPACK ZBAPI_DELIVERY_DOC_EXPORT-VBELN TO ZBAPI_DELIVERY_DOC_EXPORT-vbeln.
 
append ZBAPI_DELIVERY_DOC_EXPORT.

  ENDSELECT.
 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;aRs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2007 19:10:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441044#M546360</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-07-02T19:10:52Z</dc:date>
    </item>
    <item>
      <title>Re: Question conserning a remote-enabled BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441045#M546361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, I made the changes everybody suggested and I THINK that it is working now.  When I test it I get what follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ZBAPI_DELIVERY_DOC_EXPORT          0 Entries&lt;/P&gt;&lt;P&gt;                                       Result:           1 Entry  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Excuse my ignorance but is that what I am looking for?  I would assume that the entry would be in ZBAPI_DELIVERY_DOC_EXPORT and not Result.  I have no idea what Result is but am I correct in assuming that it is what will be returned via the RFC?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Davis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2007 19:17:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441045#M546361</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-02T19:17:32Z</dc:date>
    </item>
    <item>
      <title>Re: Question conserning a remote-enabled BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441046#M546362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes.  Double click on the grid icon, there should be your data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2007 19:21:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441046#M546362</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-07-02T19:21:26Z</dc:date>
    </item>
    <item>
      <title>Re: Question conserning a remote-enabled BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441047#M546363</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 se16 and use likp and give the parameters and check how many records it fetching&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Put a break-point in line ENDFUNCTION and check number of entries in table ZBAPI_DELIVERY_DOC_EXPORT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aRs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2007 19:22:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441047#M546363</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-07-02T19:22:41Z</dc:date>
    </item>
    <item>
      <title>Re: Question conserning a remote-enabled BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441048#M546364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I did that and the entry was there but I wasn't sure if it was supposed to be there (in Result) or the table.  Thanks to all for your kind help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Davis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2007 19:25:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-conserning-a-remote-enabled-bapi/m-p/2441048#M546364</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-02T19:25:17Z</dc:date>
    </item>
  </channel>
</rss>

