Import RFC from SAP System to XI

Hi
It is taking more time ( 5 to 10 mins) to list the RFC from SAPsystem ,When i try to Import RFC from SAP System to XI.
Please let me know your ideas on the same
Regards
Madhan D

Hi,
Could you pls check the following sap notes..
SAP Notes  718320,767091 and 212011 for a better idea on difference in performance while extracting data from R/3 backend.
Regards,
Madhu

Similar Messages

  • Cannot set required connection params for interface import from SAP system

    Hello all
    I'm trying to import some interfaces (RFC) from SAP system. For this I need to set the connection paramters pointing to the SAP system. Unfortunately it is not possible... all fields remain "greyed out" regardless what I'm trying.
    JVM is 1.4.2_12
    My user account has SAP_ALL so it shouldn't be an authorization problem...
    Where to control this?
    Any ideas?
    BR
    Renaud

    Hi,
    After you import the SWCV from SLD. while creating the NAmespace in IR select the radio button Import RFC/IDOC from SAP radio button.
    And the save it.Now it shld be possible
    Regards
    Seshagiri

  • ** Not able to import IDoc from SAP ECC system

    Hi Friends,
    I am not able to import the IDoc from SAP ECC system in IR. I have checked that, hostname, client, server no. everthing is correct. I checked in SLD also. Host Name is correct.
    While import (after giving the user name and password), I am getting the following error.
    Problems to reach R3 System
    What could be the probelm ?
    Kindly help me friends.
    Thanking you.
    Kind regards,
    Jegathees P.

    Hi,
    Just counter check following step
    1. Go to SWCV definition tab select radio button for Import of RFC....
    2. In Connection Data for Import from SAP System maintain correct System and correct Client.
    3. Make sure you maitain ECC system in Central SLD.
    4. In Import Screen check at the top of the screen have SAP System, is that system from where you want to import the IDOC.
    With Regards
    Sunil

  • Importing parameters RFC from SAP

    Hi,
    I read that is possible call a RFC from SAP using 'call fm destination xx in background'. But, how can i get importing parameters if the fm is asynchronous?
    I'll apreciated any helps! thanks,
    Alexandre!
    Message was edited by: Reiner Hille-Doering (marked as question)

    Hi Alexandre,
    I guess you should use the refernce fields when you indicate them ref. you can access the parameters, These will extra memory so it is better if you include whenever they are necessary
    Regards
    ram

  • Importing RFC from R/3 3.1i PI 7.0

    Hi,
    The scenario is picking a file from third party FTP sever and posting an Idoc into SAP R/3 3.1i using PI 7.0. In between we call an RFC from R/3 3.1i from PI 7.0 for converting values. The problem here is, where we tried to import RFC from R/3 3.1i into PI 7.0, its is not allowing to import.It says unauthorized access, even though i had permissions to do that.
    1:) Is this a compatible issue?
    2:) Can we import RFC from 3.1i into Pi 7.0? Then why i am not able to?
    3:) Is there any other way to use that function module in mapping?

    Hello
    1:) Is this a compatible issue?
    - yes
    2:) Can we import RFC from 3.1i into Pi 7.0? Then why i am not able to?
    - No, this is not supported. The import of RFCs and IDocs is supported from SAP Release 4.0 and higher.
    3:) Is there any other way to use that function module in mapping?
    - If the RFC is not too complex, just created the objects in the ESR. Or import from a system which is > 4.0.
    Check the KBA #1535964 How to import an IDoc/RFC into the ESR, for further details.
    Regards
    Mark

  • Importing RFC from 4.5B problem

    Every one,
    I am trying import RFC from 4.5B, I have given all the correct details.
    It is giving an error "Problems to reach R/3 System" and connection to XI server is lost and I have to log-in again.
    Reg,
    -Naveen.
    Message was edited by: naveen chitluri
    Message was edited by: naveen chitluri

    Hello,
    Can any one please help me on this?
    -Naveen.

  • Aattach an existing Excel file to an email from SAP system.

    Hi,
    How can I attach an existing Excel file from SAP system (Example in 'DIR_TEMP' folder) & send a mail. Guess this requires a class with a method which picks up the file using the file path. Does CL_DOCUMENT_BCS provides this???? boz CL_DOCUMENT_BCS->ADD_DOCUMENT_AS_ATTACHMENT is for Add Existing Document as an Attachment,if so please let me know how with few lines of code??
    Thankx in advance.

    *  Local Data declarations
      DATA: ls_rec          TYPE somlreci1.
      DATA: lp_send_request    TYPE REF TO cl_bcs,
            lp_document        TYPE REF TO cl_document_bcs,
            lp_sender          TYPE REF TO if_sender_bcs,
            lp_recipient       TYPE REF TO if_recipient_bcs,
            lp_bcs_exception   TYPE REF TO cx_bcs.
      DATA: lt_text TYPE soli_tab,
            ls_text LIKE LINE OF lt_text,
            lv_flag.
      DATA: lt_tline TYPE TABLE OF tline.
      DATA lv_receiver TYPE ad_smtpadr.
    *  DATA lt_attach  TYPE soli_tab.
      DATA ls_tline TYPE tline.
      TRY.
    *   create persistent send request
          lp_send_request = cl_bcs=>create_persistent( ).
    * Get the text
          IF iv_stxt IS NOT INITIAL.
            CALL METHOD zfi_flexgl_common=>read_text
              EXPORTING
                iv_stxt   = iv_stxt
              IMPORTING
                et_tline  = lt_tline
                ev_failed = ev_failed.
            LOOP AT lt_tline INTO ls_tline.
              APPEND ls_tline-tdline TO lt_text.
            ENDLOOP.
          ENDIF.
    *  create and set document
    *     create document from internal table with text
          lp_document = cl_document_bcs=>create_document(
                          i_type    = iv_format_type   "'XLS' "HTM'
                          i_text    = lt_text
                          i_subject = iv_msg_subj ).
          IF it_attach IS NOT INITIAL.
    * Add attachment
    *        DATA:      l_size      TYPE sood-objlen,              " Size of Attachment
    *                   l_lines     TYPE i.                        " Lines count
    *        l_lines = LINES( it_attach ).
    *        l_size = l_lines * 255.
            CALL METHOD lp_document->add_attachment
              EXPORTING
                i_attachment_type    = 'RAW'
                i_attachment_subject = 'My attachment'
    *            i_attachment_size    = l_size
                i_att_content_text   = it_attach.
          ENDIF.
    *     add document to send request
          CALL METHOD lp_send_request->set_document( lp_document ).
    * Sender addess
    *l_sender = cl_sapuser_bcs=>create( sy-uname ).
    *call method l_send_request->set_sender
    *  exporting
    *    i_sender = l_sender.
    *      LOOP AT it_rec INTO ls_rec.
          lv_receiver = iv_rec.
          TRY.
              CALL METHOD cl_cam_address_bcs=>create_internet_address
                EXPORTING
                  i_address_string = lv_receiver
                RECEIVING
                  result           = lp_recipient.
            CATCH cx_address_bcs .
          ENDTRY.
          CALL METHOD lp_send_request->add_recipient
            EXPORTING
              i_recipient  = lp_recipient
              i_blind_copy = abap_true
              i_express    = abap_true.
    *      ENDLOOP.
          IF sy-subrc <> 0.
            ev_failed = abap_true.
            EXIT.
          ENDIF.
    *     ---------- send document ---------------------------------------
          CALL METHOD lp_send_request->send(
            RECEIVING
              result              = lv_flag ).
        CATCH cx_send_req_bcs.
          ev_failed = abap_true.
        CATCH cx_document_bcs.
          ev_failed = abap_true.
      ENDTRY.
      IF iv_commit = abap_true.
        COMMIT WORK.
      ENDIF.

  • HOW COULD CONNECT FROM SAP SYSTEM TO THIRD PARTY JAVA APPLICATION

    HI expects,
            HOW COULD CONNECT FROM SAP SYSTEM TO THIRD PARTY JAVA or . DET APPLICATION.please provide me some scenarios and documents.please help me.

    Hi,
    In the sender side i.e. in SAP system you can use IDoc/RFC/Proxy to push the data to XI.
    IDoc supports only Async communication and in Sync case performace is good using Proxy.
    In the receiver side you can use Java Proxy to connect to the Java application or you can even bulid a webservice over the Java/.Net application and use SOAP adapter to post data to it.
    Thanks
    SaNv...

  • Sending emails from SAP system

    Hai everybody,
    for sending emails from SAP system , what are all the configuration we have to made & what are all the cheks we have to perform at BASIS level .
    Pl guide me.
    Ramesh

    Hi,
    Configurations need to be done with Tcode : SCOT
    and RFC need to be established using SM59.
    SO_NEW_DOCUMENT_ATT_SEND_API1 is the Function Module used for sending Emails from SAP System.
    The Email ID's are maintained in XK02 , XD02 For Vendors and Customers in the Basic Data.
    You need to write the code to fetch the ID's from the Vendor Master dataor customer master data based on the Vendor/Customer Numbers.
    You can always monitor the Emails in SOST.
    This is all you need to do.

  • How to consume a web service provided by third party system from SAP system

    Hi Friends,
    Could any of you provide me a clear picture on how to consume a web service from SAP system and is provided by a third party system?
    Do we get an URL to create a client proxy for consuming the web service?
    Thanx in advance,
    Ram

    Hi Ram,
    of course you cannot supply the WSDL URL. Inside the WSDL (just view it in your browser) you find (usually but not necessary) towards the end something like
    <soap:address location="http://www.weather.gov/forecasts/xml/SOAP_server/ndfdXMLserver.php"/>
    which is the actual adress of the service.
    An example service can be found here:
    <a href="http://www.weather.gov/xml/">National Digital Forecast Database</a>
    containing the WSDL URL at
    <a href="http://www.weather.gov/forecasts/xml/DWMLgen/wsdl/ndfdXML.wsdl">this address</a>.
    You might also want to browse for the amazon webservices which allow you to embed queries against amazon into your application.
    have fun,
    anton

  • How to call an EXE file on a remote system from SAP system?

    Hi Friends,
    I want to execute an EXE file existing on the remote system from SAP system. Could some one give me an idea of how to execute that?
    Thanx in advance,
    Ram

    Hi Ram,
    Try this
    SXPG_COMMAND_EXECUTE
    Reward if this helps,
    Satish

  • Error in Importing Data from SAP BW ( XMLA )

    HI All,
    I am trying to import a physical schema from sap bw ( sap user has all grants ) through the XMLA access
    IN repository I see objects ( connection pool, hierarchies, dimensions, measures ) and in a while I get them to the presentation layer accessible for users.
    Though when I try to access data build the query I get the following error:
    OPR3ONWY:U9IM8TAC:DI2DL65P
    HY00 Code 10058 [NQODBC][SQL STATE HY0000][NQSError 10058] A general Error has occurred XMLA Error returned from the server.
    Can you please help me in understanding how to solve the problem?
    Thanks a lot.
    Best regards to everybody.
    Filippo

    mithuu wrote:
    HI Filippo,
    Sorry to reply to this post,
    Could u please tell me ...what shud be given in URL which is prompted when trying to Import data from SAP bw while creating a repository.
    I am a beginner and tried to seek help from the sap basis guys but of no help.
    Appreciate ur help,
    Many Thanks...Hi Mithu,
    Give the SAP Multi-Dimensional Database server URL and a username, password required to access it.
    If you do not know them, ask your TL/PM, if u do not have one ask the SAP Data warehouse DBA.......
    Venkat
    Edited by: OBIEE+ on Jan 27, 2009 2:21 AM

  • Download from SAP system to Excel sheet

    Hi,
    I have a list of materials, would like to download it from SAP system to an Excel sheet.
    Kindly let me to know the procdure to do it.
    Thanks
    NDS

    Hi,
    Please execute T code MM60 or the required T code to get the list of materials and Go to sap menu Bar ->setting->list->save->local to spreedsheet and save it your desk top to create an Excel file.
    Regards
    Ram

  • Send IDOC from SAP system to IX but can't see any message in SXI_MONITOR

    Hi all,
    I have built up an XI system and configured an IDOC to IDOC scenario between two SAP Systems. After completed all configuration necessary:
    1. Configuration on Source Side (SAP System that send IDOC) and on Target Side (SAP System that receive IDOC) is OK.
    2. SLD is OK: Technical System and Business System are correct for these two SAP System.
    3. Integration Repository: all designed Object is OK.
    4. Integration Directory: all configuration is OK. "Test Configuration" Function is OK.
    5. Runtime WorkBench: is OK. "Test Message"  Function of "Integration Server" is OK.
    In general, it is all OK.
    But when i send an IDOC from SAP System Sour Side (Outbound IDOC from Source Side is OK), on the XI server i can't see any message in Tcode SXI_MONITOR. In this case, my XI server didn't receive any IDOC Message from  this Source Side, and so that my XI server can't process and exchange any IDOC sent from Source Side.
    Anyone can please help me to explain this problem: why my XI server can't receive any IDOC message from SAP System Source Side when all configuration is OK? Do anyone see the same case as this case?
    Thanks a lot for all in advance,
    Best regards,
    Vinh vo

    Hi,
    Possible checks
    At R/3 side
    1) Check in SMQ1 and SM58
    At XI Side
    1) Check in SMQ2 and IDX5
    Check this
    http://help.sap.com/saphelp_nw04/helpdata/en/6a/e6194119d8f323e10000000a155106/frameset.htm
    Regards
    Seshagiri

  • Transfer Data from SAP system to non-SAP system

    Hi all,
    I want to send material no, site and price data from SAP system to non-SAP system. Would you tell me how can I do it
    Thanks
    Arif
    Moderator message: please do more research before asking, show what you have done yourself when asking.
    Edited by: Thomas Zloch on Oct 16, 2011 10:38 PM

    Hi,
    you can create the same...
    but normal practice what we do is create swc for each system so that it is easy to maintain and easy to extend in the future..
    or else follow some conventions if you are just starting the things..
    HTH
    Rajesh

Maybe you are looking for