Business Connector Connection with SAP

Hi!!!
I have a XML file with 3 fields with 100 records. I have in SAP a Z table with the same fields of the XML file.
I made the mapping in SAP BC Developer. I want to put the records of the XML in the Z table of SAP. How can I configure this to SAP BC connects with SAP and fill the table?
Thanks a lot for your help!
Regards!

Hi,
This might help you
/people/bla.suranyi/blog/2006/07/10/xi--sap-business-connector-integration-using-the-http-adapter
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/96ed2129-0b01-0010-2e91-c45e1fad0d03
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/a8424011-0d01-0010-e19d-e5bd8ca52244
Kumar.S

Similar Messages

  • Verify SAP HR connector connection with SAP Target system - OIM 11.1.2

    Hi All,
    We are using SAP ER 9.1.2 connector and configured as follows,
    1) Installed SAP ER connector from Admin console (In oim db Common.jar, SAPCommon.jar and SAPER.jar files are created)
    2) The connector guide says to copy sapjco3.jar and sapidoc3.jar shud be placed into Oracle_home/Xellerate/ThirdParty folder. As we r using OIM 11.1.2 placed it in Oracle_IDM1/server/ThirdParty folder. Also Uploaded Thirdparty file into oim db using UploadJars.sh.
    3) copied libsapjco3.so file into /usr/local/jco directory and added the same path to LD_LIBRARY_PATH environment varialble
    4) Restarted OIM server
    5) To check if SAPJCo is correctly installed, ran below command
    java –jar JCO_DIRECTORY/sapjco3.jar
    java –classpath JCO_DIRECTORY/sapjco3.jar com.sap.conn.jco.rt.About
    Doubt: In OIM 11.1.2 we upload files into oim db. So, how does running files in ThirdParty folder verifies SAPJCo installation.
    6) Configured SAP HR IT resource parameters as given by our SAP application team.
    7) Now Ran "SAP HRMS Employee Type Recon" scheduled job and facing below error,
         "oracle.iam.connectors.sap.common.util.SAPUtil : getJCOFunction() : Connect to message server host failed[[
         Connection parameters: TYPE=B DEST=10.60.1.83 MSHOST=FUSION-ECCQA.hdfcsldm.com GROUP=PUBLIC R3NAME=FPQ PCS=1
         ERROR service 'sapmsFPQ' unknown
         TIME Tue Apr 16 18:20:20 2013
         RELEASE 720
         COMPONENT NI (network interface)
         VERSION 40
         RC -3
         MODULE niuxi.c
         LINE 1814
         DETAIL NiPGetServByName: 'sapmsFPQ' not found
         SYSTEM CALL getaddrinfo
         COUNTER 1 "
    Please help me in configuring SAP connector
    Thanks in advance

    Hi.
    Have you solved this? I'm getting the same error and documentation is not clear.
    It says to add an entry to /etc/service (in my case there's a service using the same tcp port) and the copy a .ini file to "root" directory, which I understand is "/" in a linux system.
    Thank you.
    Alex

  • Get connection with SAP

    Hi
    How is it possible to get connection with SAP system when i am working in SAP NetWeaver developer studio?
    do i required any connector for this?
    Regards

    Hi Quali,
    Inorder to get connected to the SAP system via your SAP NWDS(SAP NetWeaver developer studio).
    1) Please check if you are able to get connected to the remote server, incase the server is on a different machine. You can do it by following the steps below:
    Click on Windows Start menu -> click on Run -> Typein "cmd" and click on Ok button -> Typein "Ping 'IP address of the remote server'", I mean your remote server machine's IP address(Ex:10.6.52.189 or whatever it is). If it responds then please carry out the following steps in NWDS.
    2) Please GoTo :
    NWDS menu - > Window -> Preferences -> SAP J2EE Engine(Choose this on the left menu).
    Now, if your server is not installed on the same machine on which you are working then go for the first radio button which says "SAP J2EE engine is installed on remote host" and enter the server's IP(Internet Protocol) address(Ex: 10.6.52.14, etc)in "Message Server Host" and enter 3601 in "Message Server Port".
    Click on apply and Ok.
    3) Now again Click on Windows Start menu -> click on Run -> Typein "drivers" and click on Ok button  -> Open the folder "etc" -> look for file "Hosts", openwith notepad
    -> Now typein the IP address and the corresponding host name(of the remote server)please note that the IP address and the host name should be separated by at least one space, preferably a tab space. -> save the hosts file.
    Now you should be able to connect to your remote server.
    Regards,
    Sudeep

  • C # Aplication connection with SAP Windows CE

    Hi,
    I have a problem with an aplication that I've made in Visual Studio C#. The problem is the next:
    I've made an aplication that connects with SAP and passes some data. This aplication works well on any computer but I've got a problem when I tried tu convert the code and use it in a hand help pc. The version of OS of the hand held pc is Windows CE 5.0 and the error that I get when I execute my software is something related with the COM and the Class ID, the error says the next:
    "COM object with CLSID '{B24944D6-1501-11CF-8981-0000E8A49FA0}' cannot be created due to the following error: Class not registered ."
    I think that the problem could be with some dll that I don't have installed on the hand held pc but I don't really know which or what exactly.
    Does anyome know anything about all of these??
    Thanks.

    Hi Julien,
    To do the connection on a normal PC I include in the code the next references: SAPLogonCtrl and SAPFunctionsOCX.
    Once they are included in my code I do the next:
    private SAPLogonCtrl.SAPLogonControlClass saplogon;
    private SAPLogonCtrl.Connection conexion;
    private SAPFunctionsClass func = new SAPFunctionsClass();
    SAPFunctionsOCX.IFunction sapfu = null;
    Then I have a method to connect to SAP and other to pass the data. The one that connects to SAP is:
    private void Connect_SAP()
    saplogon = new SAPLogonCtrl.SAPLogonControlClass();
    saplogon.User = usuSAP;//Usuario SAP.
    saplogon.Password = passSAP;//Contraseña del usuario de SAP.
    saplogon.Language = "ES";//Idioma.
    saplogon.Client = cliSAP;//Mandante a través del cual nos vamos a comunicar con SAP.
    saplogon.ApplicationServer = "10.10.20." + serSAP;//Ip en donde se encuetra el Servidor de SAP.
    saplogon.System = sysSAP;//Entorno al que vamos a acceder.
    saplogon.SystemNumber = System.Convert.ToInt16(num_Sis);
    conexion = (SAPLogonCtrl.Connection)saplogon.NewConnection();
    conexion.Logon(0, true);
    DateTime hora = DateTime.Now;
    if (conexion.Logon(0, true)==true)
    MessageBox.Show("Conectado a SAP");
    *Error1.Text += "SAP:Conexion establecida con exito" + "
    Write_log("SAP", "Conexion establecida con exito",hora);
    else
    MessageBox.Show("No establecida conexión con SAP");
    *Error1.Text += "SAP:No se ha establecido la conexion con exito" + "
    Write_log("SAP", "No se ha establecido la conexion con exito", hora);
    func.Connection = conexion;
    if (sysSAP == "PRO")
    labelSystema.Text = "Productivo";
    else
    labelSystema.Text = "Desarrollo";
    Now the problem is that I want to use these code to make the same connection on a handheld PC but it doesn't work, when I execute the compilation on the handheld PC I get the next error:
    "COM object with CLSID '{B24944D6-1501-11CF-8981-0000E8A49FA0}' cannot be created due to the following error: Class not registered ."
    When this happens the compilation stops and it shos me the line in the code thar points to:
    saplogon = new SAPLogonCtrl.SAPLogonControlClass();
    I don't know why I get this error, I think that it could by that I'm not using the correct dll for a handheld PC that uses a Windows CE 5.0 O.S.. My question is: do I have to get a new dll that works on a handheld PC? or is it not working for any other reasson.
    Thanks for your help.

  • PI 7 to SAP Business Connector Connectivity

    Dear Gurus,
    I have to connect our ECC 6.0 System to another ECC 6.0 System using B2B scenario. For B2B purposes we are using PI 7 while the other party is using SAP Business Connector (SAP BC) as it's front-end-tool for ERP-to-ERP connectivity. I am a Basis Consultant and I have been given the task of doing this connectivity. I have never worked on any business connector. Can anyone guide me in this? We do not have any PI Consultant
    Also advice what infrastructure will be needed to complete this connectivity
    Request you all gurus to kindly advise asap
    Best Regards

    Well, a PI consultant would be a better choice as you will have to learn some basics before you can implement your project. PI is not an easy system as business connector and it requires deeper skills and expertise on the tool, but with some effort, certainly you can do it yourself.
    I do not have any experience on the administration of a dispatcher, so I cannot guide you on that subject. But after achieving the connectivity between the two dispatchers, the rest is the PI development task.
    It seems that your scenario is not really a hard one. Play around with the tools(in PI) and try sample scenarios to get used to it. Here are some for your convenience:
    And the PI (formerly called XI) library that covers almost everything is here:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/0f/80243b4a66ae0ce10000000a11402f/frameset.htm
    With the help of the documentation and the sample scenario blogs, you will be able to develop your scenario. But gathering the required skill will take about a month or so, depending on your performance.
    After learning the basics, you also need to work on monitoring, alert definitions, going live pratice etc. also which you can also find examples in the blogs. Furthermore, if the messages exchanged are to be changed before reaching the ERP on the PI side, you will also need some mapping practice. Here are two blogs which will teach you graphical mapping in PI:
    /people/sravya.talanki2/blog/2005/08/16/message-mapping-simplified--part-i
    /people/sravya.talanki2/blog/2005/12/08/message-mapping-simplified-150-part-ii
    A B2B scenario can be partly auto-configured after definition of relevant integration scenario in the Integration Builder so it might be a good idea to learn it. I'm assuming you don't need any business processes(which automates A2A and B2B processes, for example a full order-to-cash scenario involving many systems and communications with business logic), so you will mostly need configuration instead of development. You also won't need any ABAP or Java skills in your case.
    The content on SDN about PI is pretty rich so I don't think you will be short on examples and instructions. Just search when you need something, almost every aspect is covered by now.
    Hope these are useful, feel free to ask anything you may need.
    Regards,
    Gökhan

  • Business Objects XI 3.0/3.1- Connection with SAP ERP not with BW

    Hi all members,
    I have to confirm that can we connect "SAP Business Objects XI 3.0 or XI 3.1" with SAP ERP.
    My client does not have SAP Business Warehouse. Neither they are interested to have SAP BW.
    So, I have to confirm that can we connect "SAP Business Objects XI 3.0 or XI 3.1" with SAP ERP ?
    Any other thing i have to go for?
    Kindly any member guide me in bit detail.
    Thanks and Best Regards,
    Izhar

    Hi,
    currently it is not possible to build web intelligence reports fetching data directly from an SAP ERP system. The reason is that SAP ERP data sources are not supported in universes.
    Regards,
    Stratos
    PS: An option is to deploy a BOBJ rapid mart. Please note that in this case you require the BOBJ Data services (ETL) tools. The idea behind the SAP ERP related rapid marts is that in the first step the data are extracted from your SAP ERP sources and load them into a relational database (using a predifined DWH scheme). Additionally the package provides you with universes (which rely on this predefined DWH scheme) and use the database as data sources, here your SAP ERP data were extracted to.

  • SAP PCM 7.0 Connectivity with SAP Business Objects

    Hi All
    We are trying to integrate SAP PCM 7.0 FP5 with Business Objects. The prime purpose is to fetch PCM data into Xcelsius dashboard and WebI reports via BO Universe.
    We are sruggling to understand the plugins required to do this.Since other SAP documentation states that SAP BO Connectivity pack is required which is a part of SAP BusinessObjects Profitability and Cost Management 7.5 Support Package 06
    But , we understand that SAP BO PCM75 Support pkg06 cannot be installed on SAP PCM 7.0.
    Also, Please kindly help me in understanding if SAP PCM 7.0 connectivity with BOXIR3 (without using BW NW layer) is possible or it needs to be upgraded to SAP PCM 7.5
    Thanks

    Hello Siva,
    I am thinking that you may need to deploy FTP adapter in PI to get this process work fine but not sure.
    Let's see what other experts suggest.
    Thanks,
    Siva Kumar

  • BarCode Reader Connection with sap

    HI,
    Our client is using a bar code reader machine which is  build on pocket pc technology. Now they want that when  barcode on some item like a table is scaned by that machine its extra information will be read from sap asset master data. like to whom this table is belong.
    Now is there any standard connector through which we can communicate between sap and bar code pocket pc.
    Thanks,

    Hi Szymon,
    Please compare your settings with the "Administrator_Guide.pdf", chapter 7.3 Connecting SAP ERP to SAP Business One integration for SAP NetWeaver (page 44 -59).
    In your B1i SLD entry for your second ECC connection, check segment RFCP:
    The value in field "programID" must be unique for each ECC connection and equally maintained on ECC side (transaction SM59).
    Please start the test connection in ECC (transaction SM59) and make sure, that you have an activated scenario in B1i with your ECC as sender system. Otherwise the RFCP test connection will fail.
    You can also have a look into following discussion: RFCP Connection to B1iSN -
    Registering Server Program
    Best regards
    Bastian

  • Authentication error when creating EPM Add-in connection with SAP BO Enterprise connection type

    Hello, Experts,
    I have a problem with creation of EPM Add-in connection when SAP BusinessObjects Enterprise connection type is selected.
    An error message is "Error while communicating with the server. Framework message: Authorization failed."
    Here are the steps that were implemented and how this issue was reproduced:
    SAP BusinessObjects Planning and Consolidation 10.0 SP12 for Microsoft was installed and configured.
    Integration between SAP BPC and SAP BusinessObjects BI 4.1 SP02 was implemented. SAP BO users can successfully connect to SAP BPC system.
    EPM connector was successfully installed and deployed in SAP BusinessObjects BI server.
    BPC ODBO 2.0 SP04 64BIT was installed in SAP BusinessObjects server.
    EPM connection was successfully created in SAP BusinessObjects CMC.
    EPM Add-in and BPC ODBO 2.0 SP04 32BIT was installed in another computer (let's call it CLIENT) which has MS Office 2007 32BIT installed.
    From CLIENT computer we have launched Excel manually and successfully created BPC connection with Connection Type - Local.
    Then we have logged into BI Launch Pad and launched New / EPM document (Excel). Excel has started.
    In EPM Add-in we have pressed Logon.
    In connection window selected SAP BusinessObjects Enterprise connection type.
    An error "Error while communicating with the server. Framework message: Authorization failed." appears.
    Before this error appears we are not getting any window where we could select EPM connection (created in CMC) nor the possibility to enter username or password.
    Looking forward you valuable comments and suggestions.
    Thank you in advance.
    Donatas Budrys

    Dear, Roberto,
    Our user has Full Access to all BPC tasks and it is administrator in BI system.
    Also we can successfully connect with the same user using Connection type "Local".
    We had done some investigation and in the BPC SQL Server trace log we can catch the following message when an error occurs:
    ==============[System Error Tracing]==============
    [System  Name] : BPCXMLAService [Message Type] : ErrorMessage [Job Name]    : ValidateUser [DateTime]    : 04/23/2014 10:58:06 [UserId]      : [Exception]    DetailMsg  : {System.Exception: Invalid user    at SAP.BPC.Services.Webservice.XMLAService.XMLAService.ValidateUser()} ==============[System Error Tracing  End ]==============
    It is very interesting that after the EPM workbook is launched via BI Launch Pad till an error occurs we are NOT provided with possibility to enter any username and password. So the EPM add-in should use the same user which was logged into BI Launch Pad - in our case the user with administrative rights both in BI Launch Pad and BPC systems. Am I missing anything?
    Looking forward your feedback.
    Thank you in advance.
    Best regards,
    Donatas

  • Business Connector work with ECC 6.0 or have to switch over to PI - Upgrade

    Hi
    Client want the upgrade their current SAP system from 4.6C to ECC 6.0.
    Like to know if Business Connector would work with ECC 6.0 or they have to switch over to PI.
    Please Help
    Thanks

    i think BC will work ,
    chek the below thread for
    what are abaper tasks during upgrade to ECC 6.0
    what are abaper tasks during upgrade to ECC 6.0?
    pls reward points if helpfull
    regards
    kummari
    Edited by: kummari on Jul 4, 2008 8:05 AM
    Edited by: kummari on Jul 4, 2008 8:20 AM

  • How can I connect with SAP NetWeaver 7.01 SR1 SP3 ABAP Developer Edition

    Hello together,
    I downloaded and installed the SAP NetWeaver 7.01 SR1 SP3 ABAP Developer Edition on a virtual client.
    I toke a long period to finish the installation.
    Now some questions to use this system in the right way:
    1.) How can I get a "developer license" which do not expire? Because the link http://www.sap.com/minisap seems to be not ok.
    2.) How can I connect via network with the sap system? the application server is running on a vm client with a static ip i.e. 192.168.1.5. And my laptop gets a ip in the same range. I have installed the gui on my laptop and tried to connect with the system. But it does not work! I used as application server the ip of the virtual machine. I use the gui witch is installed on the same host like the application it works (with localhost as application server adress)
    3.) Where can I download the newest version of the SAP Gui? I do not have a service marktplace account? Is it possible?
    4.) I read in the documentation that it should be possible to reach the sap system also with web dynpro: http://localhost:8000/sap/bc/gui/sap/its/webgui?sap-client=000
    But it does not work. I got an error message: Service cannot be reached
    Note
    The termination occurred in system NSP with error code 403 and for the reason Forbidden.
    The selected virtual host was 0 .
    Regards
    Christian

    I fixed in the meantime the second problem. It was a problem with my local firewall. But the other three points are still open.
    Thank in advance for your help

  • Business Objects connection to SAP BI

    Can anybody explain me which communicaton method does Business Objects use to communicate with SAP BI? and what kind of interactions do they have?
    Thanks in advance.

    Hi,
    See if this is of any help.
    Best Practices for implementing Business Objects on top of BW 
    /people/ingo.hilgefort/blog/2008/02/07/businessobjects-and-sap-part-i
    /people/ingo.hilgefort/blog/2008/02/19/businessobjects-and-sap-part-2
    /people/ingo.hilgefort/blog/2008/02/27/businessobjects-and-sap-part-3
    /people/ingo.hilgefort/blog/2008/03/23/businessobjects-and-sap-part-4
    /people/ingo.hilgefort/blog/2008/03/24/businessobjects-and-sap-part-5
    /people/scott.jones/blog/2007/09/13/installing-and-configuring-sap-interactive-forms-by-adobe-for-the-sap-netweaver-composition-environment
    Hope this helps.
    Thanks,
    JituK

  • BO XI3.1 Client tools connection with SAP BW

    Hello everyone,
    I have the following challenge:
    I have an installation with Businessobjects XI 3.1 which connects to SAP netweaver BW.
    When I use the client tools wich are installed on the server also, I can make a connection to Sap BW in the designer tool, and create a web intelligence rapport on this connection. When I get the rapport in Infoview, I can refresh the data, en this is showed.
    When I Use the Client tool from a workstation, and test the connection, or refresh the data, is get the error message :
    A database error occurred. The Database error text is: A runtime exception has occurred. (License key Check Failed. Check that you are licensed to access SAP data sources). (WIS 10901)
    In Bussinesobjects I configured each server to a dedicated port, and made sure that every server can be reached for the workstation.
    Somebody any suggestions for this issue? When I search on the error n=message, is get a few hintu2019s but they are not the problem, because it is running fine from the server.
    I appreciate every suggestion.
    With Kind regards,
    Ronald van Amelsvoort.

    Hello Dennis,
    You're right, I did not have the SAP intergration kit installed, at the workstation. After installing it works.
    I did not know, or did found this in the installation manuals.
    Thanks for your help.

  • Start services connector connect to sap gateway failed

    hi experts
    when i want to start services connector saprouter
    saprouter string :/H/172.16.2.11/S/3299
    a error window say
    "connect to sap gateway failed
    error  partner 'host:3299' not reached"
    where is the possible problem here ?
    regards
    ying xie

    Dear Damian
    i try to start services connector so that SAP could connect to us to support.
    i  have a little obfuscation  about your telnet test. which should be my destination server, SAP's server?
    how to test whether port 3299 is on work or not?any ways to check those ports are used for what?
    many thanks
    ying xie

  • Business Connector - XML to SAP using BC

    Hi,
          This is regarding business connector(BC).
        The IDOC details are successfully converted to xml file to send third party system using BC..
              But also I need the process for vice-versa ..
                  The data will be coming as xml data from third party system and these data need to be updated into the corresponding SAP fields.
           Can you plz tell me whether any RFC's or other methods to be used?

    HI
    please can u provide me the steps how to convert idoc to XML and send as HTTP

Maybe you are looking for

  • How to set the BARCODE width and length for label printing..

    Hi All, How to set the Code 39 barcode label format in the sizxe of 0.20" * 1.4". By default while printing barcode size exceeds my current requirement. Please let me know to customize the size of barcode labels. Thanks.

  • Agents with Personal DNs in UCCX

    Looking for some general guidance and feedback: While I prefer agents with a single DN, I frequently end up with clients that have 2 DNs (Agent/Personal) assigned to their legacy phones. Tearing them away from this frame of mind when they migrate to

  • System copy stuck on "Import ABAP" with "Invalid Migration Key"

    Dear Team, I'm performing a system copy from AS400/DB2 (of our ECC DEV) to AIX/DB2. Export has been completed successfully, while importing it is stuck on the "Import ABAP" phase with error "Invalid Migration Key". However the key is generated with c

  • Don't want PDF in a new Window

    I need to have a PDF file NOT open in a new window so I can do the work and save it on the website.  I used to do this and now suddenly I can't.    

  • Http 404 error

    Hi, installed a PCK (so no ABAP is available), but my scenario doesn't work. In Messagin display tool (mdt) following error message appears: Fehler beim Übertragen der Message zum Endpunkt http://soperapck:50100/sap/xi/engine?type=entry über die Verb