ALE:SAP to non-SAP using Bussines connector

Hi
The business connector has been set up. I've created two logical systems.
Transaction SALE
LS: DEVCLNT500 Assigned  LS: DEVCLNT500 to SAP client 500
LS: DEVCLNT900
Defined RFC Target system: DEVCLNT900 connection type 'T'
Program id SAPBC
Created a distribution model view DEVCLNT900
Added message type :MATMAS
Model View: DEVCLNT900
Sender    : DEVCLNT500
Receiver  : DEVCLNT900
Generated the profile without errors.
But when i tried to distribute it to DEVCLNT900,
i got a communication error <b>" Communication error occurred Unknown Partner and Message Type. Sender: DEV500 Receiver: DEVCLNT900 MsgType: M"</b>
What could be the cause.

Ravi
It seems to me based on the info that i received from the basis adminastrator that i need to create something in BC.
com.wm.app.b2b.server.ServiceException: Unknown Partner and Message Type. Sender: DEV500 Receiver: DEVCLNT900 MsgType: MODEL_VIEW_REPLICATE
     at wm.PartnerMgr.gateway.runtime.InboundProcess(runtime.java:388)
     at pub.sap.transport.RFC.InboundProcess(RFC.java:190)
     at java.lang.reflect.Method.invoke(Native Method)
     at com.wm.app.b2b.server.JavaService.baseInvoke(JavaService.java:281)
     at com.wm.app.b2b.server.ServiceManager.invoke(ServiceManager.java:709)
     at com.wm.app.b2b.server.ServiceManager.invoke(ServiceManager.java:466)
     at com.wm.app.b2b.server.Service.doInvoke(Service.java:495)
     at com.wm.app.b2b.server.Service.doInvoke(Service.java:464)
     at com.wm.pkg.sap.rfc.Listener.handleRequest(Listener.java:286)
     at com.sap.mw.jco.JCO$Server.dispatchRequest(JCO.java:6022)
     at com.sap.mw.idoc.jco.JCoIDoc$Server.dispatchRequest(JCoIDoc.java:10120)
     at com.wm.pkg.sap.rfc.Listener.dispatchRequest(Listener.java:186)
     at com.sap.mw.jco.rfc.MiddlewareRFC$Server.nativeListen(Native Method)
     at com.sap.mw.jco.rfc.MiddlewareRFC$Server.listen(MiddlewareRFC.java:1070)
     at com.sap.mw.jco.JCO$Server.listen(JCO.java:5797)
     at com.sap.mw.jco.JCO$Server.run(JCO.java:5731)
     at com.wm.pkg.sap.rfc.Listener.run(Listener.java:101)
     at java.lang.Thread.run(Thread.java:479

Similar Messages

  • How do we Integratet SAP to Non-SAP Using Business Connector

    Hi Experts,
    I am new to SAP Business Connector !!
    and what are the Forms ? for SAP Business Connector Related Postings ??
    !! I have a requirement to integrate sap to non-sap with Business Connector !!
    We need to Generate the SAP Data In xml Format ? and the Non-sap System can Understand Only XML Formated data.
    Is there any way Business Connector Box can Pull the XML file from R/3 Application Server and store the file in the Business Connector Server. from  that How do we Sent XML file to Non-sap. How do we Integrate ??
    what transaction code will trigger this event ? I mean is ther any SAP Transaction Code to Integrate Business Connector?
    For Eg. like in R/3  SD to FICO and MM Integration.
    Please Give your Valuable Suggests..
    Thanks .
    Upender.

    Hi,
    It is not an issue, It will be a separate project :-).
    The right forums for this,
    Expert Forums » SAP NetWeaver » Process Integration
    www.wmusers.com
    Also go through the following links:
    http://www.sapgenie.com/interfaces/businessconnector.htm
    http://www.sapgenie.com/mysap/bus_connector.htm
    /people/bla.suranyi/blog/2006/07/10/xi--sap-business-connector-integration-using-the-http-adapter
    http://help.sap.com/saphelp_nw04/helpdata/en/6a/3f93404f673028e10000000a1550b0/frameset.htm
    http://www.thespot4sap.com/Articles/SAP_XML_Business_Integration.asp
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/b4f3755a-0401-0010-b6b3-9b65bb7d4503
    https://websmp104.sap-ag.de/connectors
    Thanks and Regards,
    Chandra Madapati

  • Need Standard BAPI To Create Opportunity in SAP Using Java Connector.

    Hi All,
         What is the standard BAPI to create an opportunity in SAP CRM through Java Connector.
    Please share code if available for doing same. I have found BAPI_OPPORTUNITY_CREATE_MULTI .
    How to create opportunity in SAP through java connector using BAPI_OPPORTUNITY_CREATE_MULTI .

    Hi,
    I think you can search for it or you can create a thread at ABAP section.

  • Update database outside SAP using Abap program

    Hi guys, I have the following scenario:
    Today, I have an abap program that calls a RFC to update a database outside SAP using Business Connector.
    The problem is that I won't be allowed to use Business Conncetor (and can't use XI too) to access the outside database (SQL Server 05).
    Is possible to update the SQL Server 05 from an Abap program without a Java based connector? Because my main problem is that I can't use Java...
    Thank you
    Robert

    hi,
    you can use the database connection
    >exec
    > native sql statment
    >endexec
    check theese links for generating source code in ABAP
    [How to use INSERT in EXEC SQL ...... ENDEXEC ?;  insert data to external database
    [exec sql help;  read data from external database
    check theese links for configurating of DBCO (DataBase COnnection)
    [/thread/108422 [original link is broken];
    [http://help.sap.com/saphelp_nw04/helpdata/en/df/455ec9747111d6b25100508b6b8a93/frameset.htm]
    hope that is useful.
    Regards
    Marco

  • How to get pdf file from sap presentation server using java connector

    Hi Friends,
    with the below code i am able to get po details in pdf in presentation server.
    DATA : w_url TYPE string
           VALUE 'C:\Documents and Settings\1011\Solutions\web\files\podet.pdf'.
    CALL FUNCTION 'ECP_PDF_DISPLAY'
            EXPORTING
              purchase_order       = i_ponum
           IMPORTING
      PDF_BYTECOUNT        =
             pdf                  = file  " data in Xsting format
    *Converting Xstring to binary_tab
          CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
            EXPORTING
              buffer                = file
      APPEND_TO_TABLE       = ' '
    IMPORTING
      OUTPUT_LENGTH         =
            TABLES
              binary_tab            = it_bin " data in binary format
    **Downloading into PDF file
          CALL FUNCTION 'GUI_DOWNLOAD'
            EXPORTING
      BIN_FILESIZE                    =
              filename                        = w_url
              filetype                        = 'BIN'
             TABLES
              data_tab                        = it_bin
    when i am using java connector , to retirve the file from presentation server , the follwoing error i am getting...
    init:
    deps-jar:
    compile-single:
    run-single:
    com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE: Error in Control Framework
            at com.sap.mw.jco.rfc.MiddlewareRFC$Client.nativeExecute(Native Method)
            at com.sap.mw.jco.rfc.MiddlewareRFC$Client.execute(MiddlewareRFC.java:1244)
            at com.sap.mw.jco.JCO$Client.execute(JCO.java:3842)
            at com.sap.mw.jco.JCO$Client.execute(JCO.java:3287)
            at PdfGen.<init>(PdfGen.java:35)
            at PdfGen.main(PdfGen.java:78)
    Java Result: 1
    BUILD SUCCESSFUL (total time: 1 second)
    i debugged too, problem with <b>gui_download......</b>
    I am very glad to all with your suggestions!!
    Regards,
    Madhu..!!

    Hi
    You can try to create an external command (transaction SM69).......sorry I've forgotten,,,,they works on application
    How do you call CL_GUI_FRONTEND_SERVICES=>EXECUTE?
    Max
    Edited by: max bianchi on Oct 13, 2011 10:27 AM

  • Connectivity between SQL Serevr 2008 and SAP BW using Microsoft Connector 1.0

    Hi ALL
             I am trying to connect to SSIS 2008 to SAP BW using Microsoft Connector 1.0.
    Following are stepes I performed.
    1. Created RFC on SAP BW Server.
    2. Created Prcess Chain in SAP BW.
    3. Created SSIS Package using SAP BI Source. Here I set Execution Mode : P Trigger   Process Chain.
    The process chain is executing fine on SAP BW Server, But it is unable to send back a
    notification to SSIS package.  And here my SSIS package failed.
    I am getting following error message :
    [SAP BI Source] Information: Process Start Process, variant Start Variant for MSBI has status Completed (instance D8Z84GJ2RLV7WCI2IYK5CZ1R3)
    [SAP BI Source] Error: An internal exception occurred.
    Microsoft.SqlServer.Dts.SapBw.Connectivity.ERPException: 
    An error occurred during the dispatch of the incoming function. The last return code was "RFC_FAILURE".
    Before this error I am getting following messages are :
    [SAP BI Source] Information: Process Data Transfer Process, variant Z09_O101 -> Z09_H101 has status Active (instance DTPR_D8Z84GJ2RLVZKYTTUHZRFEG0V)
    [SAP BI Source] Information: The component is waiting for a notification.
     Is there any way to test the both the way connections?  I mean SAP BW -- SSIS &                SSIS ---  SAPBW.  
    Can any one please explain me entire connectivity architecture between SSIS and SAP BW using Microsoft Connector 1.0. (I mean how these RFC are working and how SSIS is pulling the data from SAP BW)

    I am having the same problem. We actually loaded data a few times but now it does not work. It is amazing that we cannot find help for this problem. Has anyone been successful using the BI connector 1.1 to load data to a BI system using SSIS. I think
    this had to do with either a DLL problem on the machine running SSIS or the Service Pack level of the BI system. I cannot find any documentation showing versions. I have looked through the documentation that was written back in 2008 but can't seem to
    get it to work.
    Sorry we are trying to push data (BW Destination) to BI it looks like you are trying to get data from BI.

  • Wanted 'Using Sap Adapter for Connector Framework' document

    dear friends
    I want to display ABAP reports in iView without Transaction iView.
    From the below forum link
    /community [original link is broken]
    i came to know i can get the help from 'Using Sap Adapter for Connector Framework' document, but the link is giving
    404
    The requested resource is not available.
    can anybody help me to find out the document
    thanx in advance
    please reply me at the earliest.
    kantha

    have a look here - should help:
    http://help.sap.com/saphelp_nw04s/helpdata/en/f2/db49421c0b3c54e10000000a1550b0/frameset.htm
    <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/f2/db49421c0b3c54e10000000a1550b0/frameset.htm">sap help portal</a>
    you may also download PDK, there are some samples in it.
    Best Oliver

  • OIM - SAP Employee Recon and SAP User Management Connectors vs. OC4J

    In reading through the SAP connector documentation I've found that we cannot use OC4J to run OIM if the 9.0.3 SAP User Management Connector or SAP Employee Recon Connector is used. This is all related to a conflict in JDK versions supported between the SAP JCo (Java Connector) library and OC4J. A thought we've had is to use a Remote Manager for these connectors. Can anyone validate this approach? Is it possible to use a different JDK version with your remote manager? Is there another workaround that anyone is aware of?
    Thanks

    Hi,
    The remote manager should work with different JDKs. We are going to be doing the same thing for one of our adapters.
    As for SAP, I cannot think of another workaround -- we actually abandoned the SAP JCo approach and are doing web services with XI.
    Thanks,
    Deborah
    http://www.linkedin.com/in/dvolk

  • SAP PLM DMS Connector - Read Only

    I've a very simple question.
    Using SAP PLM DMS Connector can I upload documnents into repositories configured for DMS?
    I read the documentation and it looks like a read only connector.
    Thanks and Regards,
    Prasanna Krishnamurthy

    Hi,
    It is a read only connector, confirmed by SAP.
    Cheers,
    Tuval

  • Does SAP use SQL server's snapshot and transactional replication?

    Gurus:
    Could you help with this?
    Does SAP use SQL server's snapshot and transactional replication?
    Thanks!

    Hi Christy,
    no, SAP does not directly leverage these functions.
    But none the less, it is up to you to use these on your system. I regulary use the snapshot functionality when applying Support Packages. In case somehing goes wrong a snapshot is the easiest way to roll back the import process (not exactly the best choice when talking about production and users keep on working while importing).
    Have a look at this [document |http://download.microsoft.com/download/d/9/4/d948f981-926e-40fa-a026-5bfcf076d9b9/SAP_SQL2005_Best Practices.doc]. It deals with Best Practices and also covers snapshot, replication and mirroring.
    Sven

  • SAP CRM Groupware Connector for Exchange on 64 Bit platform

    Hi All,
    We have successfully installed SAP CRM 5.0 on Windows 2003 x64 Server R2 SP2.
    OS, Database and SAP Kernel are all 64 Bit enabled.
    Now we are trying to install SAP CRM Groupware Connector on the same server.
    But we encounter problems with SAP Groupware Connector 2.1 for MS Exchange installer (setup.exe), which stops with the following error:
    Required Software missing:
    - MS SOAP Toolkit
    Installation cannot be continued !
    But SOAP Toolkit 3.0 definitely is installed.
    Obviously the Groupware Connector is still 32 Bit.
    It is the only available download in SAP Marketplace i could find.
    The CD is located in the same area where the CRM installation CDs can be downloaded.
    SAP does not differ between 32 Bit and 64 Bit versions.
    I'm wondering if it is possible, to run a 32 Bit Groupware Connector in a 64 Bit environment.
    Does anybody have experience with such a configuration ?
    Or is there a 64 Bit enabled version available for download ? Where can i find this version ?
    Thank you in advance.

    I got an answer from SAP Support:
    SAP still recommends to use 32-bit system OS in order to avoid any future confusions.
    So we have to install another 32 Bit Server only for the Groupware Connector.
    Thx for your interest.

  • Configuring SAP HANA Cloud Connector with trial account

    The free developer license includes the use of cloud connector. (message from SAP)
    When I try to set up the Initial configuration of the SAP HANA Cloud Connector as described in the SAP How-To Guide (Version 1.0, March 2013 and Technical Documentation SAP HANA Cloud, Document Version: 1.6.0 - 2013-06-18 ) I get the the message
    "Connection to https://connectivityconfig.hanatrial.ondemand.com:443 refused"
    Configuration Data of Cloud Connector Connector
    Landscape Host:        hanatrial.ondemand.com
    Account Name:         s<user>trial
    User Name:               s<user>
    Password:                 ...
    Do I have to observe further settings?

    Hi Markus,
    I'm getting same error Connect_failed  . I check with my network & basis guys There are no firewall blocking ports . Is this problem with hantrail account or what could it be? Please guide .
    Thanks,
    Vidya

  • Support for SONiC SAP Office Notification Connector

    Hi there,
    we may be looking to implement SAP Office Notification Connector
    (SONiC) to our portal system (NW7 ehp 1).
    I can see that the connector is valid for NW 2004s, so should be
    supported for our version of the portal?
    Also wondered if this is a fully SAP-supported connector and if there
    are any other support implications eg conditions on versions of portal,
    business packages, backend systems etc?
    Many thanks for your help

    Hi Nicholas,
    The official stance on the SoNiC connector is located in note number: 945484.  Please have a look because support is not valid on the release you are using.  The note specifically states the following:
    This connector is not supported by SAP for the mentioned releases in the
    note validity. (Note validity shows the following: Not supported for:
    UWLJWF 700, 701, 710, 711)
    "There is no support if any problems or side effects
    appear from this connector. Usage of the connector is only on your own
    risk in unsupported releases.
    The connector is part of the standard delivered software and it is
    supported by SAP in upper releases."
    So in other words, versions lower than 702 and 720 do not contain the connector, and the customer can implement this at their own risk, but it really shouldn't be used for productive use.  In the newer versions this connector comes as standard implementation with the UWL.  I hope that this is helpful to you.
    Beth Maben
    EP - Senior Support Consultant
    AGS Primary Support, Business Suite & Technology
    Please see the UWL Wiki @
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/bpx/uwl+faq  ***

  • How can i update an existing item in sap using CSV file?

    Hi,
    i am trying to update an existing Item in SAP using a CSV file.
    in the message log i get an error message that the item already exists.
    what should i do in order to update the existing record?
    Thanks, Udi

    Hi..........
    I would sugest you to use Tab delimited file and choose proper option in order to update the itsm master in DTW......
    Regards,
    Rahul

  • Error in importing image into SAP using SE78

    Hi to all,
    I was trying to upload a '.bmp" image into SAP using SE78 but I failed.
    Se78 -> BMAP Bitmap Image -> Graphic -> Import -> Specified the complete path ->given name desc and type .
    Ended up with the following message.
    Graphic TRF_LOGO_REV could not be saved
    (2TRF_LOGO_REV)
    Pls. help as I am not sure whether I missed any step.
    Thankx in advance.

    Hi,
    Go to SE78 Transaction ie Aministration of form graphics,
           there select GRAPHICS General Graphics,under this BMAP Bitmap Images will come.
           select that,then a sub window will appear.
    There give the name of your logo and select the import button which is at the extreme left.
           Then again a sub window appears,there give the path name and name of the logo,and some description then press enter.
    Now the logo is uploaded,for preview you can select last button which is print preview.
    Now goto the form,select the window where you want to print the logo.
           Then in that window place the cursor at tag coloumn and select command line.
           Now go to INSERT and select GRAPHICS.A subwindow appers click on 'stored on Document Server',
           give the name of the logo and press enter.
           Then the image information will be displayed on the form.Save the form and activate it.
    Go to se38 transaction write the print program and execute.
    Regards,
    jaya

Maybe you are looking for

  • Using a Greenscreen in FCP

    What is the best way to use a greenscreen effect in FCP. I have taken video of kids in front of the greenscreen for thier Christmas program now I have to put them in front of various locations. I have used Pinnacle on a PC in the past but this will b

  • Hyperlinks in CR Viewer for VS2010 drop parameters

    Related to post in Beta forum [Re: CRVS2010 Beta - Hyperlink translator dropping parm|Re: CRVS2010 Beta - Hyperlink translator dropping parm] Reports containing hyperlinks with query parameters e.g. 'http://www.test.com/page.aspx?id=366363' drop para

  • Extensions disappear after workspace change

    I changed my workspace and now all my extensions have disappeared. Server Behaviors, menus, tag behaviors, all gone. The Extension manager still shows them all as installed. Why did they disappear and is there a way to get them back that does not inv

  • Error in PC_PAYRESULT for  :  For Period Display

    Hi Experts, Getting error in pc_payresult transaction.  " No data exists for sequence number 00002". This error I am getting when I am executing two months payroll together. For period 05.2011 in period 06.2011 For period 06.2011 in period 06.2011 No

  • Question about APEX_ITEM.DATE_POPUP

    I have simple question that perhaps some one can help me with. I'm using a APEX_ITEM.DATE_POPUP to create a date field in a row of data. according to the documentation it says that p_value in the function call is a varchar2. but if I pass it a date i