RFC function import error

Hi!
My scenario is RFC to XML file.
so, I wana import the rfc function, it happened error like followings.
RFC connection(SM59) and attribute (remote enabled) are no problem.
             **Ready for import**
Import started...
Z_FIALI_SND_C540_0011_ZALIDO01:
  + com.sap.aii.ibrep.sbeans.upload.RemoteUploadException: connection closed without message (CM_NO_DATA_RECEIVED)
Import failed with 1 error
Pls, help me.

Hi,
Just follow these steps and see if it still gives a problem:
- First make sure that the RFC is remote enabled.which i guess you know how to do.
- then make sure that you have activated it.
- then also note that you have to release the RFC from SE37 using menu Function Module->Release.
and also go through this thread which also deals with your problem.
Exception while Importing RFC/IDOC
let me know if u have problem even after doing that.
Regards,
abhy

Similar Messages

  • RFC/IDOC Import error

    Hi
    when i try to import idoc or rfc iget this kind of error
    **Ready for import**
    Import started...
    BAPI_COMPANYCODE_GETDETAIL:
    + com.sap.aii.ibrep.sbeans.upload.RemoteUploadException: The function module "DD_DOMA_GET" not released for 'remote' calls.
    Import failed with 1 error
    as i'm using ides version i dont have the access to change the DD_DOMA_GET as remote enabled.
    any one please suggest me .
    total points will be rewarded.
    Request for no links
    Thanks,
    Mohan

    HI,
       Let us take an example.
    assume that you have WEBSERVICE - XI - RFC scenario.
    You have to call the RFC/BAPI in system A.
    YOu are trying to import the BAPI structure in XI IR.
    YOu get an error importing.
    Now, you can try to import the same BAPI/RFC from System B(If the BAPI is avaialable in it) even though your scenario doesn't involve System B.
    Regards,
    Ravi

  • RFC metadata import error - Couldnu0092t find the branch for version with id

    Hi All,
    When re-importing RFC meta-data, system returned following error message   <i>Couldn’t find the branch for version with id = <version id></i>
    I am not able to delete the existing (already imported) RFC meta-data.  However, I am able to import the same RFC into a different Software Component.
    The error is described in SAP note – 710998, unfortunately, this note only references  XI 2.0
    Is there anyway other than these-
    1) Deleting a new SWCV and importing it and then import the RFC and make Release transfer from new SWCV to Old  SWCV. If so, is there any impact on my QA systems and Productions systems during transport.
    2) Deleting the existing SWC and Reimporting from SLD and trying to import the RFC again and redoing all the design
    3) Exporting the current SWC and deleting it and importing the same file and then trying out the RFC import.
    These options I just thought as an workaround solutions. Because i am not able to try these, as i don't have any test systems for this. Let me know any suggestions on these.
    Thanks in advance,
    Regards,
    Moorthy

    Yes, the used structures were imported from an old XI system. But I created the mapping new on the PI and put the used externel definitions manually to the mapping. That worked fine but now everytime when saving the mapping this error occurs. Btw both structures are used in other mappings, too, and they can be modified without any problems.
    Which jdk version do you mean? Client or server?
    Regards.
    Oliver.

  • RFC Function module Error

    Dear Experts,
    I have written simple Remote Function module as like given below.
    Before that i did all required RFC settings in SM59 and tested from there.
    It is connecting from each other.
    REPORT  ZTEST_RFC                               .
    data: rfc_var1 type i VALUE '10',
          rfc_var2 type i VALUE '599',
          rfc_result type i.
    CALL FUNCTION 'Z_SUM'
      DESTINATION 'dev'
      EXPORTING
        VAR1                  = RFC_VAR1
        VAR2                  = RFC_VAR2
      IMPORTING
        RESULT                = RFC_RESULT
      EXCEPTIONS
        COMMUNICATION_FAILURE = 1
        OTHERS                = 2.
    I am getting sy-subrc eq 1.
    Please guide what could be wrong...do we need pass any parameters in FM.
    Thanks
    Cris

    Also To debug a RFC:
    You need to make sure that you are able to login in to the system containing the RFC using SM59 with your own login. Now place a break point just before the RFC Fm in your se38 and press F5. now it goes into the RFC .Now you need to place a break point at your RFC FM by specifying your RFC name.
    and hit F8 . It goes inside the RFC Func module code.
    Try it and let me know.
    Sri

  • Python sapnwrfc FUNCTION CALL ERROR

    Hi everyone,
    I am trying an external rfc connection with sapnwrfc-0.05 for Python. I have the latest nwrfcsdk from SAP. It took me a while to figure out the new python module methods, but I am now able to connect successfuly.
    I have a function module that I need to call and feed external data to it. This function is writing to a Z table of mine. I have done this successfuly with previous versions of python sapnwrfc module.
    Here is my test code:
    import sapnwrfc
    conn = sapnwrfc.base.rfc_connect({'ashost':'HOSTNAME', 'sysnr':'00', 'client':'900', 'user':'RFCUSER', 'passwd':'PASSWORD' })
    if conn :
        print "I am connected"
    #    VBELN = CHAR
    #    LNUMB = NUMC
    #    WERKS = CHAR
    #    GJAHR = NUMC
    #    HEAT =  NUMC
    #    ZIERA = CHAR
    #    ZLENG = CHAR
    #    ZWEIG = CHAR
    #    ZINDX = CHAR
    #    ZPDA = CHAR
    #    ZTIME = CHAR
        data = [VBELN+LNUMB+WERKS+GJAHR+HEAT+ZIERA+ZLENG+ZWEIG+ZINDX+ZPDA+ZTIME]
        iface = conn.discover("MY_Z_FUNCTION_MODULE")  
        f = iface.create_function_call()
    # MY_Z_FUNCTION_MODULE has a TABLE structure DATA
        f.DATA(data)
        f.invoke()
        print "Done"
        conn.close()
    When I run this code I get the following ERROR:
    File "/usr/lib/python2.4/site-packages/sapnwrfc/__init__.py", line 165, in invoke
        return self.handle.invoke()
    sapnwrfc.RFCCommunicationError: RFC FUNCTION CALL ERROR: set_table_line invalid Input value type
    The same function module was working before, when called with DATA as a single string item in a list.
    Any help?
    Thank you all.
    Menelaos

    As I discovered, you need to supply the DATA table structure with a dictionary of its field values:
    data = [{'VBELN':VBELN,
                'LNUMB':LNUMB,
                'WERKS':WERKS,
                'GJAHR':GJAHR,
                'HEAT':HEAT,
                'ZIERA':ZIERA,
                'ZLENG':ZLENG,
                'ZWEIG':ZWEIG,
                'ZINDX':ZINDX,
                'ZPDA':ZPDA,
                'ZTIME':ZTIME}]
    Just make sure that each field has the correct size. The data types in the dictionary should all be strings, but the string contents should match the field types of the DATA table structure....
    This is really an improvement over the old method (single string) but some documentation would be helpfull Piers!
    Can I help?
    Menelaos Maglis
    Edited by: Menelaos Maglis on Jul 25, 2008 10:49 AM
    A correction on the data field types.

  • Error creating RFC function /BODS/ABAP_RUN : RFC_ABAP_EXCEPTION-(Exception_Key: FU_NOT_FOUND, SY-MSGTY: E, SY-MSGID: FL,

    Hi Expert,
    I try to execute job on development system but he showed error "Error creating RFC function </BODS/ABAP_RUN>: <RFC_ABAP_EXCEPTION-(Exception_Key: FU_NOT_FOUND, SY-MSGTY: E, SY-MSGID: FL, SY-MSGNO: 046, SY-MSGV1: /BODS/ABAP_RUN)>. Notify Customer Support.
    In ECC I use ABAP execute option as Execute Preloaded. How to solve this problem? Thanks for your advise.

    Dear,
    have you checked in EXX wether the function group /BODS/BODS is available?
    Some notes here:
    You will have to have to import the new ABAP Program group "BODS/BOS" which you can find in the local install folder...
    Here are some details:
    Installing Functions on the SAP Server
    SAP BusinessObjects Data Services provides functions that support the use of the ABAP, BAPI, and
    IDoc interfaces on SAP servers. You will need some or all of these functions in the normal operation
    of the software in an SAP environment. These functions perform such operations as dynamically loading
    and executing ABAP programs from Data Services, efficiently running preloaded ABAP programs,
    allowing for seamless metadata browsing and importing from SAP servers, and reporting the status of
    running jobs. Some of these functions read data from SAP NetWeaver BW sources.
    You must upload the provided functions to your SAP server in a production environment. It is
    recommended that you always upload the functions to your SAP server whether you are in a
    development, test, or production environment. The functions provide seamless integration between
    Data Services and SAP servers.
    The default installation places two function module files for SAP servers in the ...\Data
    Services\Admin\R3_Functions\transport directory. You then upload these files to SAP servers
    using the SAP Correction and Transport System (CTS) or manually. Using CTS allows for version
    control as the functions evolve across releases.
    The installation provides two versions of transport files (depending on the server version you are using)
    to install the functions on the SAP server. To obtain the names of the latest transport files for installing
    or upgrading these SAP server functions, see the readme.txt file
    And I've found those files and text files in the local install folder....in:
    Program Files\SAP BusinessObjects\Data Services\admin\R3_Functions
    (that's where I've installed it).
    There you'll find some descriptive txt as how to proceed.
    After installing, it might happen that the executing user is missing some authorizations.
    Here my authorizations team helped me by tracing the user and then adding the necessary rights.
    Sure hope this will help you.
    Notes to check:
    see SAP Note 1919255
    Note 1916294

  • Problem while importing RFC function module in XI. Please Help!

    Hi Experts,
               When I try to import RFC function module in XI I get the following error:
                 **Ready for import**
    Import started...
    YCOP_VALIDATE_GR:
      + com.sap.aii.ibrep.sbeans.upload.RemoteUploadException: connection closed without message (CM_NO_DATA_RECEIVED)
    Import failed with 1 error
    Any idea why is this error? How to resolve this?
    Thanks
    Gopal

    Hi
       The problem still persists.
       This is what I have done:
        1. My FM is RFC enabled. In the "Attribute" tab of the FM I have selected "Remote-enabled module" and "Start immed".
    2.Activated and tested the FM.
    3.Released the FM. In se37, Function Module -> Release ->Release. 
    4.Tried to import this FM in XI under "RFC". Get the same error.
    I have some questions:
    1. After releasing the FM do I have to activate it?
    2. In release there is "Internal Release" Do I have to use that?
    3.Do I have to do "Internal Release" first then "Release"?
    4.The FM i am trying to import makes a call to another FM. Both the FMs are in the same system. Both are remote enabled. The second FM updates data in custom table. the first FM which I am importing validates the data and then calls the second FM for update. Do I have to import both FMs?
    Please help me!
    Thanks
    Gopal

  • Unknown error calling a RFC Function Module in BODI

    Hi all,
    I am having an issue identifying the error that my batch job in BODI is giving with regards to a RFC function module call in my query. The value returned by the standard parameter 'AL_RFC_RETCODE' are square characters (              ).
    At the completion of the job, the error message 'RFC CallReceive error <Function ZCT_INDSLS_SLS_TRN_INSERT: Invalid request.. Invalid request.>.' is being output.
    Correct me if I'm wrong but the parameter 'AL_RFC_RETCODE' should return standard values as per the techical manual provided to undertand any errors that might occur during a RFC FM call.
    Can anyone help me on this?
    Best regards,
    Andrew Wong

    Hi Senthil,
    I think you answered your query in your question itself
    The user ID and password need to be maintained in RFC destination in SM59.
    Go to SM59 and then click on test connection..if it does not ask for ID and passwoed that means correct ID and password is maintained in SM59 otherwise maintain it.
    Regards,
    Atish

  • Error when call RFC Function module in R/3

    Dear All,
    We are trying to call RFC function module CBIF_GLM1_PROCESS_ORDER_READ (This is not a BAPI and also not released ) in R/3 from XI system.
    we are facing the error "Error while lookup Exception during processing the payload. Error when calling an adapter by using the communication channel CC_PPPI_MES_RFC_Rcvr (Party: , Service: WCD_320, Object ID: 16563889b449328eac76caa6a3bc592e) XI AF API call failed. Module exception: 'error while processing the request to rfc-client: com.sap.aii.adapter.rfc.afcommunication.RfcAFWException: error while processing message to remote system:com.sap.aii.adapter.rfc.core.client.RfcClientException: failed to parse BAPI response due to: com.sap.aii.adapter.rfc.util.bapi.BapiException: Parameter with name RETURN not found.'. Cause Exception: 'com.sap.aii.adapter.rfc.afcommunication.RfcAFWException: error while processing message to remote system:com.sap.aii.adapter.rfc.core.client.RfcClientException: failed to parse BAPI response due to: com.sap.aii.adapter.rfc.util.bapi.BapiException: Parameter with name RETURN not found.'."
    This is the first time we are doing this configuration.
    Could you please let me know what woulbe the reason.

    read the original message
    We are trying to call RFC function module CBIF_GLM1_PROCESS_ORDER_READ (This is not a BAPI and also not released ) in R/3 from XI system.
    I am talking about the above Receiver RFC channel which you guys are using to call R/3 from XI. That where you need to change the commit parameter

  • RFC function module without RETURN parameter thows error in XI. Please help

    Hi Experts,
       I have a File to RFC scenario in XI. The RFC function module that I am using at the receiving end does not have "RETURN" parameter. So when I test my scenario I get "RETURN" parameter not found error on SXMB_MONI.
    So is it mandatory that RFC function module must have RETURN parameter when used in XI?
    Is there any work around to avoid the error without changing the RFC function module?
    Please help!
    Thanks
    Gopal

    In my senario the QOS is best effort because it is a Sync.
    But the function module is sync in nature as it is returning a parameter called SO_Docs and Ret_Msg. The Ret_Msg contains the error info but it not of BAPIRET2 type.
    So is there any way to avoid this error when my QOS is best effort?
    Please help!
    Gopal

  • RFC function module with call transaction  and Import memory ID

    Hi,
    I am calling RFC function module from R/3 which exists in BW.
    In BW stand alone function module works fine.
    When I am Calling from R/3 it is not working,
    Can you tell me is it because of the below code, And suggest if any corrections required.
    I am calling the call transaction and using EXPORT memory iD inside the program
    and IMPORT in after that.
    And populating RFC table's table  " p_i_tcode_user" finally.
    set parameter id 'TCD' field p_tcode.
    call transaction 'Z_BW_RSUSR002' AND SKIP FIRST SCREEN.
      ENDIF.
    get the final user data from submitted program
    import gt_users_complete from memory id tcode_userid.
    LOOP AT gt_users_complete.
          lwa_tcode_user-tcode =  p_tcode.
          lwa_tcode_user-uname = gt_users_complete-Bname.
          APPEND lwa_tcode_user TO p_i_tcode_user.
    ENDLOOP.
    Thanks,
    Veerendra.

    HI,
       Can you just exaplin it clearly plz..
    Thanks
    Mahesh

  • Table type in import parameter in rfc function module

    Hi we don't have the table type in our system which exist in the other system which is the import parameter of the rfc function module.so how can we pass the parameter. shell we create the same table type in our system also.it is a table type for a deep structure.

    Hello,
    I donot have access to CRM box I cannot view the FM. You can verify with the CRM counterpart what exactly is the TYPE for param DATA.
    Else you can define a generic internal table (TYPE TABLE) & try calling the FM.
    BR,
    Suhas

  • Rfc function module call error

    Hi Abaper,
    I'm doing upgrade from 4.7 to ecc 6.0 currently and encounter problem in one of the rfc function module that we used. I've tested the connection to destination using sm59 and the connection is successful.
    As an information, in the rfc setting, the target system is not Unicode system.
    When I test using se37 and put the rfc destination in my function module call, I always encountered system_error exception. There's no issue with this rfc call before in 4.7 system.
    Please help me on this. Thank you.
    Edited by: Abraham Bukit on Sep 3, 2008 2:36 AM

    Hi,
    I had the same issue in the past and solved it in the following way.
    If the destination system is not Unicode please try to set the password for the communication user set in SM59 using only upper-case characters and taking into account that the password shouldn't be longer than 8 characters.
    Hope this will help.

  • Error in RFC Function module

    Hi Expert,
    I am facign very strenge problem in the RFC function module.
    I have passed the paramters to the RFC function module and getting the result back into the table paramters.
    HWen i am trying to execute the RFC function module in the destination system , i am getting the result in the table paramerts.
    but when i am trying to excute the same uising program then i am not getting the same result in the table pramters , value of sy-subrc is also 0 . and there is no dump in the source and destination system. not sure why this is not able to get the result.

    Hello,
    Can you please post the actual ABAP code that calls the RFC? Are you checking for the standard RFC exceptions?
    Also have you manually tested the RFC in SE37, using the same RFC destination? (ie test it in the source system, calling the target system). This is to make sure that there are no communication issues.
    cheers
    Paul Bakker

  • Exception error_message in rfc function module

    Hi all,
    I am getting a short dump Raise exception in my R/3 system when calling a RFC function module in R/3 for printing  a label in LOFTWARE. The error analysis shows the that exception condition 'Nlink exception' condition raised . The rfc destination is working fine  and also i have included the predefined exceptions system_failure and communication_failure and also I have used RFC_PING function module before calling teh rfc for printing . Yet it is giving short dump.
    I heard that if we include one more exception error_message with return code 99
    ie exceptions
        system_failure = 1
        communictaion_failure = 2
        error_message = 99. there will be no short dump.
    Can anyone explain me why the return code for exception error_message is not 3 but 99 and also what is the significance of this.
    Need your help.

    from dump no information is available also it last occured 5 days ago so refreshed from our system..
    I want to know what is the importance of the return code 99 here...
    can anyone clarify this concept and aslo genrally in rfc exception handling communication_failure and system_failure can handle all type of exceptions then why error_message exception is added with a return code of 99..

Maybe you are looking for

  • 2012 Mac Mini blank screen on wake from sleep in Mavericks

    I just upgraded from Mt Lion to Mavericks and now my Mac Mini does not awake properly from sleep when I press a key on the keyboard.  It stays dark but I can type in my password even when I can't see the input space and then hit the return and it the

  • Wierd issue with Sound Blaster Z and Windows 8.1

    I have just started having an issue with my sound card. For the past year it has been working perfectly fine with no issues. There have been no recent changes to the computer, but within the past week, if I am in the middle of a game or listening to

  • XI Pro: How to change page size?

    I have a letter-sized document where each page has extremely large margins and text in a tiny font size. Can I use the 'Remove White Margins' function (Crop pages > Set Page Boxes) to remove the large margins and then resize what remains back to 8.5"

  • Upgrading Macbook Pro after iMac

    Hi, I purchased Lion on my iMac and successfully upgraded it, I am now trying to upgrade my Macbook Pro but do I have to purchase Lion again or what do I do ? I have looked around the internet and here but I could not find a solution. Thanks, Jay

  • BI System copy: 2 SAP BW system should be connect to same R/3 system

    Hi! We have copy one SAP BW system SR1 to another SAP BW system SR2. SR1 was connected to SAP R/3 system R31. As consequence the new SAP BW system SR2 has also in RSA1 --> source system the entry of SAP R/3 system R31. We would like to restore the so