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

Similar Messages

  • 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

  • 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.

  • Oracle Adapter for SAP that supports Integration with SAP 6.0??

    Hi,
    I am working currently with Oracle Adapter for SAP with SAP 4.6.
    But my company is looking for upgrading the Enterprise SAP system to 6.0.
    Do we have Oracle Adapter for SAP that supports SAP 6.0? Please let me know if anyone has already worked on this?
    Thanks,
    Sasi Bhushan

    Sasi,
    There is a new MySAP adapter with 10.13.1 and above to support ECC 6.0. Please see the following section in the 10.1.3.1 adapter release notes:
    12.4.1 MySAP ERP Versions and APIs
    The following MySAP ERP platforms are supported by OracleAS Adapter for MySAP
    ERP:
    ■ SAP R/3 Enterprise 47x100
    ■ SAP R/3 Enterprise 47x200
    ■ MySAP ERP Central Component (ECC) 5.0, deployed on SAP NetWeaver 2004
    ■ MySAP ERP Central Component (ECC) 6.0, deployed on SAP NetWeaver 2004s
    ■ SAP Java Connector (SAP JCo) Version 2.18.
    For the current release status of the SAP Java Connector, refer to SAP Note #549268
    in the SAP Service Marketplace.
    Release versions may vary by product component. In addition, SAP functions may
    vary by SAP product version and support package.
    Note: The OracleAS Adapter for MySAP ERP supports only the versions listed above.
    It is not recommended to use the OracleAS Adapter for MySAP ERP with older
    versions of SAP R/3. If you plan to use the adapter with older versions of SAP R/3 for
    example SAP R/3 4.6C, prior approval from iWay Software Product Management is
    required.

  • Hi, since upgrading to IOS 8.0.2 my iphone 5 no longer connects with the entertainment system in my car? Any ideas?

    Hi, since upgrading to IOS 8.0.2 my iphone 5 no longer connects with the entertainment system in my car? Any ideas?

    So yesterday vibration suddenly started working again, after nearly two weeks with the problem above. I have no idea why, I didn't change any settings and the only app that was updated yesterday was Facebook messenger...

  • 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

  • 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

  • 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

  • SAP.connector.rfcLogonException with SAP Connector

    I'm having an error when I try to connect to SAP:
    SAP.connector.rfcLogonException: You are not authorized to logon to the target system.
    The code is part of a sample program located in CodeProject, the example is complete. I can't install the .Net Connector because I use C Sharp express, so the program doesn't install.
    Any help?
    TIA

    Assing the profile R3_BASIC to RFC user id in SU01 and try it.
    Basis consultant will be able to help you on this.
    Thanks & Regards,
    Govind.
    Message was edited by: Govindaraju A

  • 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

  • Getting No rights error in Crystal Reports connection with SAP ECC 6

    I am ABAP/BI developer and would like to work in Crystal Reports 2011. Currently, We have SAP ECC 6 and BI 7 set up. I have installed trial version of Crystal Reports 2011.
    I am getting error while trying to create blank report in Crystal Reports:
    Create New Connection -> SAP Tables.. -> entered SAP Development server user id and password -> following error message :
    LOGON failed
    Details : You do not have necessary rights to design reports against the SAP system. Please check with your system administrator.
    My user id has all rights in development server.  So, is any special rights require? OR do we have to install any patch for Crystal Reports at SAP level?
    Please guide me.

    Hi,
    To be able to report off an SAP data source in Crystal Reports, request the SAP Administrator to set the appropriate authorizations for the user.
    For a list of authorizations that are necessary for each type of SAP connection, consult the document:
    BusinessObjects XI Integration for SAP Installation Guide
    In the "Authorizations" chapter, there is a description of each authorizations needed for each type of connection and actions.
    ( The document is attached to this SAP Knowledge Base Article in the attachment section )
    In addition to the authorizations specified in the SAP Integration Kit Installation Guide, the following authorizations are required:
    For Authorization object: S_RFC with Field name: RFC_Name. According to the installation guide the values should be: SYST, /CRYSTAL/OPENSQL
    Additionally you will need the value: SUSR as well.
    For Authorization object: ZSEGREPORT with field name: ACTVT. According to the installation guide the value is: 02 (Change)
    Additionally you will need the value: 01 (Create or generate) as well.
    Thank you.

  • SAP ALE connection with EDI sub-system

    We are using the SAP ALE functionality to connect to the EDI sub-system, rather than the traditional way (creating IDoc flat files). For this setup also, the RFC type is TCP/IP type. But I'm not sure of the various other details to complete the setup. Rather I guess, I don't know which is the correct program to run on the Application Server.
    Look at the error text below, and tell me if this is not working because I cannot connect to the program on the application sever?
    RFC connection type: T (TCP/IP)
    Activation type: Start on Application server
    Program: /usr/sap/D05/SYS/exe/run/rfcexec.sec
    Test connection error:
    ERROR                timeout during allocate                        
    LOCATION             SAP-Gateway on host jua-sap-dev / sapgw02      
    DETAIL               no connect of TP /usr/sap/D05/SYS/exe/run/rfcexec.sec from host jua-sa
    COMPONENT            SAP-Gateway                                    
    COUNTER              6321                                           
    MODULE               gwr3cpic.c                                     
    LINE                 5774                                           
    RETURN CODE          242                                            
    SUBRC                    0                                          
    RELEASE              640                                            
    TIME                 Thu May  3 17:01:32 2007                       
    VERSION              2

    Hi Vinodh,
    I am facing the same issue right now with GIS. Did you get the solution for this please?
    Regards,
    Deepesh Datt.

  • 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.

  • 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.

Maybe you are looking for

  • OIM 9.1 Help on Internationalization

    I am new to OIM 9.1 and I am trying add a new User Defined Field via OIM Design console. Its getting reflected on OIM UI, but if I change the language to Japanese I am still seeing in English fonts for user defined fields but OOB fields are getting d

  • Saving a reader extended PDF form as read-only

    Before posting this, I've searched for hours in the forums and the internet on how to accomplish this but I just can't find the solution. I've created a simple form in Acrobat and saved it with reader extended attributes so it can be saved by my coll

  • XI Alert - How to put messageid into Subseq. Activities Link

    Hi, I have control step to throw alert whenever error occur in the BPM. How can i put the messageid into the Subseq. Activities link so the user can only click the link and open the message in the message monitoring. I gave the URL below in the subse

  • Synch|/asynch bpel process

    Hi! what is thу main difference between synchronous and asynchronous bpel process? I mean, when you create bpel process - you can choice type. Because I dont think that the difference just in invoke and reply activities. Message was edited by: kpb

  • Essbase.cfg file

    I am a novice and would like to know how to set the parameters in Cfg file.When I have opened the file I am seeing only one entry there in that filei.e about JVMModulelocation. I wonder why all those default settings are not shown there? Can someone