SAP BO Data Services Repository Login error

Hi All,
I am a new SAP data services 4.0 user. I am getting following error while connecting to the repository while starting the designer.
ERROR: ODBC call <SQLDriverConnect> for data source <SERVERNAME> failed. <[Microsoft][ODBC SQL Server Driver][DBNETLIB] SSL security error>. Notify customer support. (BODI - 1112172)
However, it worked just fine initially and suddenly started throwing the above error.
Kindly help.
Regards,
Developer

I did manual registration of BODATAVIEW.ocx . Its working fine now.

Similar Messages

  • Data Services 4.0 error when running job - not updating repository table

    Hi All,
    I am hoping someone might have come across this error before.
    When running a data services job, from within Data Services Designer, when trying to re-run the same job, I get the following error messages:
    9332     2572     DBS-070300     17/10/2011 10:38:39 AM     |Data flow DF_XXXX_Data_DW1Date
    9332     2572     DBS-070300     17/10/2011 10:38:39 AM     SQL submitted to Oracle Server <BO3> resulted in error <ORA-00001: unique constraint (DS3_ADMIN.SYS_C005632) violated
    9332     2572     DBS-070300     17/10/2011 10:38:39 AM     >. The SQL submitted is <INSERT INTO AL_BW_REQUEST (REQUESTID,TYPE,VALUE,DF_NAME,CREATION_TIME) VALUES (
    9332     2572     DBS-070300     17/10/2011 10:38:39 AM     'REQU_4NIVIZ1G9S5B7LUY0HHP65ZJU', 3 , '29', 'DF_XXXX_Data_DW1Date',  to_date('2011.10.17 10:38:39', 'yyyy.mm.dd
    9332     2572     DBS-070300     17/10/2011 10:38:39 AM     hh24:mi:ss') )>.
    9332     2572     REP-100109     17/10/2011 10:38:39 AM     |Data flow DF_XXXX_Data_DW1Date
    9332     2572     REP-100109     17/10/2011 10:38:39 AM     Cannot save <RequestID info> into the repository. Additional database information: <SQL submitted to Oracle Server <BO3>
    9332     2572     REP-100109     17/10/2011 10:38:39 AM     resulted in error <ORA-00001: unique constraint (DS3_ADMIN.SYS_C005632) violated
    When I go and look into the Data Services repository AL_BW_REQUEST  table, the first time the job is run, all five fields in this table populate with data successfully. When re-running the job, on 3 out of the five fields within this table are populated but the VALUE and DF_NAME field are not populated, hence causing the primary key violation.
    Here is the data below from the AL_BW_REQUEST  table:
    REQUESTID                                      TYPE  VALUE     DF_NAME                               CREATION_TIME
    REQU_4NIVIZ1G9S5B7LUY0HHP65ZJU     3                      10/17/2011 10:38:38 AM
    REQU_4NJ503RVIFD3VLBJJEKBJ3OE2     3                       10/17/2011 10:33:37 AM
    REQU_4NJ4ZHSP9F93L3OAUDV6RHCMY     3                       10/17/2011 10:32:31 AM
    REQU_4NIV1NKP9645E394E7H12Q796     3                      10/17/2011 9:53:53 AM
    REQU_4NEYFNI2U68MBJOEWFJWVWWU2     3  24     DF_XXXX_Data_DW1Date      10/17/2011 9:47:58 AM
    If I truncate this table and re-run the DS job, it will not populate the VALUE and DF_NAME fields. 
    Does anyone know what could be causing this? The target source is BW.
    Seems like a bug to me.
    Thanks,
    Ainsley

    Hi Ramesh,
    Am a HANA apps consultant in India, would like to get in touch with you. but don't know how
    regards,
    Tilak

  • SAP BO Data Services XI 3.2 - Cannot Handle Multithreaded RFC Connection?

    Hi Guys,
    Just want to ask for your inputs if Data Services cannot handle multiple RFC connection request to BW system?
    The scenario is:
    There is one BODI job using RFC connection and trigger the 2nd job at the same time and it happen that the 2nd job failed.
    Current version of SAP BO Data Services XI 3.2 that we are using is 12.2.2.1
    Thanks in advance,
    Randell

    Arpan,
    One way to get to the multiprovider data is to use Open Hub with a DTP that gets the data from the multiprovider and exposes it as an open hub destination to Data Services. With Data Services XI 3.2 we now fully support Open Hub where Data Services will (1) start the process chain to load the data (2) read the data when process chain ended and (3) notify Open Hub when done so that the data can be purged again.
    More info on Open Hub here : http://help.sap.com/saphelp_nw04/helpdata/en/1e/c4463c6796e61ce10000000a114084/content.htm
    But I will also look into the why we show the multiproviders when browsing the metadata, but get an error when trying to extract using the ABAP method (not via Open Hub). You could be right in your assumptions below and we might just need to hide the multiproviders when browsing metadata.
    Thanks,
    Ben.
    Edited by: Ben Hofmans on Jan 5, 2010 6:06 PM - added link to Open Hub documentation which references multiproviders as possible source.

  • SAP BO Data Services - Bits Are One - O - f O hex operator

    Hi Gurus,
    I need to implement the Bits Are One - 'O' Bit Sequence Comparison opertor in SAP BO Data Services. The equivalent in SAP ABAP would look like:
      IF <b> O hex01. ftab-inp = on. ENDIF.
      IF <b> O hex02. ftab-req = on. ENDIF.
      IF <b> O hex04. ftab-out = on. ENDIF.
      IF <b> O hex08. ftab-act = on. ENDIF.
      IF <b> O hex16. ftab-int = on. ENDIF.
      IF <b> O hex32. ftab-inv = on. ENDIF.
    I need to know how I implement this in SAP BO data services. Please help.
    The ABAP help for the same is as follows:
    Comparing Bit Sequences 
    Use the following three operators to compare the bit sequence of the first operand with that of the second:
    <operator>     Meaning
    O     bits are one
    Z     bits are zero
    M     bits are mixed
    The second operand must have type X. The comparison takes place over the length of the second operand. The first operand is not converted to type X.
    The function of the operators is as follows:
    O (bits are one)
    The logical expression
    <f> O <hex>
    is true if the bit positions that are 1 in <hex>, are also 1 in <f>. In terms of set operations with bit sequences, this comparison is the same as finding out whether the set represented by <hex> is a subset of that represented by <f>.
    Z (bits are zero)
    The logical expression
    <f> Z <hex>
    is true if the bit positions that are 1 in <hex>, are 0 in <f>.
    M (bits are mixed)
    The logical expression
    <f> M <hex>
    is true if from the bit positions that are 1 in <hex>, at least one is 1 and one is 0 in <f>.
    Caution: The following programs are no longer supported in Unicode systems:
    REPORT demo_log_expr_bits .
    DATA: text(1) TYPE c VALUE 'C',
          hex(1) TYPE x,
          i TYPE i.
    hex = 0.
    DO 256 TIMES.
      i = hex.
      IF text O hex.
        WRITE: / hex, i.
      ENDIF.
      hex = hex + 1.
    ENDDO.
    The output is as follows:
    00          0
    01          1
    02          2
    03          3
    40         64
    41         65
    42         66
    43         67
    Here, the bit structure of the character 'C' is compared to all hexadecimal numbers HEX between '00' and 'FF' (255 in the decimal system), using the operator O. The decimal value of HEX is determined by using the automatic type conversion during the assignment of HEX to I. If the comparison is true, the hexadecimal number and its decimal value are displayed on the screen. The following table shows the bit sequences of the numbers:
    hexadecimal     decimal     Bit sequences
    00     0     00000000
    01     1     00000001
    02     2     00000010
    03     3     00000011
    40     64     01000000
    41     65     01000001
    42     66     01000010
    43     67     01000011
    The bit sequence of the character 'C' is defined for the current hardware platform by its ASCII code number 67. The numbers that occur in the list display are those in which the same bit position is filled with 1 as in the bit sequence of u2018Cu2019. The sequence 01000011 is the universal set of the bit sequences.
    Best Regards, Murugesh

    *

  • How to Load External Data to SAP BPC using SAP BO Data Services

    Hi,
    We want to load data from an external MS SQL Server DB to SAP Business Planning and Consolidation (BPC 7.5 Netweaver version) using SAP BO Data Services 4.0 as ETL. What is the best way to load data to SAP BPC using Data Services?
    Thanks

    Hello Devi,
    There are three ways you can load Master Data in BPC
    1) Copy and paste.
    Download master data in flat file .Copy the  master data and paste in members of dimension after that process the dimension.
    2) Using SISS Pakage - load Flat File into BPC-Cube
    3) Using SQL Command.
    Thanks.
    With regards,
    Anand Kumar

  • SAP BI - Data Services connection

    Hello
    I am trying to set up SAP BI - Data Services connection.
    Couple of questions :
    1. Where from within the SAP can I get SAP gateway hostname and SAP gateway service name
    2. I have a developer right on BW. Is it enough to make connection with my user id?
    3. connection to BW is via client security portal. Does it change the approach?
    Thanks

    Hi,
    1. Where from within the SAP can I get SAP gateway hostname and SAP gateway service name
    From the sapgui.
    2. I have a developer right on BW. Is it enough to make connection with my user id?
    Yes
    3. connection to BW is via client security portal. Does it change the approach?
    What does that means? you need a user and password in BW (ABAP).
    As suggested by Andrei, read the wiki. It has all you need to make it work.
    Hope this helps.
    Cheers,
    Diego

  • Connect SAP BO Data Services to Azure Blob Storage

    Hi,
    I want to connect SAP BO Data service to Azure Blob Storage. Is there a way to achieve this?
    Thanks,

    Hi Anton,
    As of now, it is not possible for SAP BO Data Services to connect with Azure Blob Storage. However, you may put down your requirement in Azure Feedback, so that concerned development team can get it done in near future.
    http://feedback.azure.com/forums/34192--general-feedback
    Regards,
    Manu Rekhar

  • Error occured while opening SAP Data services designer - license error

    Hi When i open sap data services , error has been attached. I  followed note-1826666 , but it didnt work. I was following note - 1812861 , but not able to understand where i can find directory WOW64 and what exactly to be copied as per first point. Not able to understand its 2nd point also that says - "Add it to the properties mask of the cluster node configuration under the registry section" Our BO DS has operating system windows server 2008 R2 enterprise. Kindly advice hw to proceed.

    Go to the License Manager and Update your BODS license. When you are opening the BODS you will able to get the version.
    Log on to the CMC then click on the Help and then about, you will get the total information.
    Thanks and Regards
    Joydip.

  • Java API: repository.login error

    I MDM guru,
    i habe the "little" problem with JAVA API SP2.
    I have do the followings step:
    - download last JAVA API from  service.sap.com/swdc:
       Support Packages and Patches->SAP NetWeaver->SAP MDM->SAP MDM 5.5->JAVA API
    - download  "MDM Java API Samples Framework"
    - downloadn MDM_API_SAMPLES repository (import ad load it in the MDM server)
    When run Application.java (with program = KeyMappingProgram.RETRIEVE) when exextute this line
    repository.login(region, user, password);
    i have this error
    com.sap.mdm.commands.CommandException: com.sap.mdm.internal.protocol.manual.ServerException: Dati non convalidati da verifica CRC
         at com.sap.mdm.commands.AuthenticateRepositorySessionCommand.execute(AuthenticateRepositorySessionCommand.java:94)
         at com.sap.nw.mdm.rig.server.SessionImpl.authenticateRepositorySession(SessionImpl.java:136)
         at com.sap.nw.mdm.rig.server.SessionImpl.<init>(SessionImpl.java:37)
         at com.sap.nw.mdm.rig.server.RepositoryImpl.login(RepositoryImpl.java:61)
         at com.sap.nw.mdm.rig.Application.start(Application.java:208)
         at com.sap.nw.mdm.rig.Application.main(Application.java:157)
    Caused by: com.sap.mdm.internal.protocol.manual.ServerException: Dati non convalidati da verifica CRC
         at com.sap.mdm.internal.protocol.manual.AbstractProtocolCommand.execute(AbstractProtocolCommand.java:112)
         at com.sap.mdm.commands.AuthenticateRepositorySessionCommand.execute(AuthenticateRepositorySessionCommand.java:88)
         ... 5 more
    com.sap.mdm.commands.CommandException: com.sap.mdm.internal.protocol.manual.ServerException: Dati non convalidati da verifica CRC
         at com.sap.mdm.commands.AuthenticateUserSessionCommand.execute(AuthenticateUserSessionCommand.java:84)
         at com.sap.nw.mdm.rig.server.SessionImpl.authenticateUserSession(SessionImpl.java:87)
         at com.sap.nw.mdm.rig.server.SessionImpl.<init>(SessionImpl.java:41)
         at com.sap.nw.mdm.rig.server.RepositoryImpl.login(RepositoryImpl.java:61)
         at com.sap.nw.mdm.rig.Application.start(Application.java:208)
         at com.sap.nw.mdm.rig.Application.main(Application.java:157)
    Caused by: com.sap.mdm.internal.protocol.manual.ServerException: Dati non convalidati da verifica CRC
         at com.sap.mdm.internal.protocol.manual.AbstractProtocolCommand.execute(AbstractProtocolCommand.java:112)
         at com.sap.mdm.commands.AuthenticateUserSessionCommand.execute(AuthenticateUserSessionCommand.java:79)
         ... 5 more
    Where is the problem?
    This is my configuration:
    MDM Server 5.5
    - mds Version 5.5.61.48 Built on 2008-Jan-12
       Client Interface Version 5.5.61.12
       Console Interface Version 5.5.61.06
       Web Interface Version 5.5.61.12
    mdm-core.jar:
        Build Version 5.5.62.83
    Public Interface Version 5.5.62.00 [Interface CRC=0xab59b8dc]
    Console Interface Version 5.5.62.01 [Interface CRC=0xf3c104b6]
        Web Interface Version 5.5.62.06 [Interface CRC=0x86541e49]

    well i got this error while creating a repository session. but the crc is for version mismatch as said in the previous post.
    Check the following wiki for details on the error
    https://www.sdn.sap.com/irj/sdn/wiki?path=/pages/viewpage.action?pageId=4119
    I got this error when i moved my EP Server to MDM Java 602 and my MDM server was at 5.5
    Then i moved by EP server back to 5.5 and resolved the issue.
    I hope this will help.

  • Data Services Management Console Error.

    Hi Experts,
    i have installed SAP Data Services 4.2 , at the time of installation "Data Services Management Console" are works fine , but now when i am tryiing to open it is giving error"web page is not available" , please guide me to troubleshoot the issue.
    Regards
    Ajit

    HI Arun Kumar
    Thanks for your reply.
    I checked the service Property and path to which it is executing it was correct and i didn't find any file call .conf in the Conf folder
    Can you please elaborate me where to check this, this is very much needed for my task.
    Thanks in advance
    Ajit

  • Missing Data Cleanse package option in Data services Repository Manager

    Hello, I am trying to create a repository for data cleansing package repository in database using Repository Manager, but the drop down list box is not giving an option "Data Cleansing" to create repository. Only three values are available (Local,CEntral, and Profile).
    Using Data Services 3.0 Version. Any help or any workarounds creating a repository with our Repository Manager.
    Thanks,
    Kiran

    We searched log files and found no errors.
    We then decided to attempt re-creating the local repository.  We checked the Show Details box.
    The local repository was reported has having been successfully created.  This was the result we had before.
    We then checked for canned functions and the list matched to those of our Oracle and SQL Server local repositories.
    So, best guess is that something went wrong on the initial local repository creation that was either not reported or reported, but we missed.

  • DR on SAP BusinessObjects Data Services

    Hi Experts,
    Greetings.
    We are planning to implement the DR setup for Business Objects Data services. It would be helpful if you could share us step perform the DR on SAP business objects Data services.
    Regards
    Sebastian A

    Hi,
    Data Services Repositories are usually hosted in databases. This means the DR recovery options setup for the database server that hosts the Data Services will protect the code held in the repositories for DR purposes.
    As far as setup is concerned, you can take a point-in-time image of the data services app server, jobserver and configurations so that it can be used for DR purposes.
    This is only high level. But you can use this as the base to discuss disaster recovery options with your infrastructure counterpart defining the DR recovery options.
    kind regards
    Raghu

  • "Error 3000: Data Service is unavailable" error message (Web)?

    Ever since I got my Palm, I've had difficulty getting on the web.
    It says: "Connecting to Broadband Access" but then an error message box appears saying: "Service Connection Progress: Error 3000: Data service is unavailable".
    I then have to soft reset every single time, and then I am able to access the internet just fine.
    Is something wrong with my Palm? This is a brand new Palm I purchased through Verizon in June.
    What can I do to fix this issue, without having to soft reset every time I want to access the internet?
    Post relates to: Treo 700p (Verizon)

    I have the same error (and other errors too) with my 700P from Verizon.  This is what I have found with playing.  All can be repeated.
    1)  If I turn off phone radio then turn back on I can browse the web all day long, I can send MMS messages, I can check my email, etc.  All relating to the "data" portion of the Verizon service.  No Problems. But.........
    2)  As soon as I make a call (use the "voice" portion of the Verizon service) and then try to do one of the following above mentioned I get all kinds of ERRORs depending on the specific program I'm in/trying to use.  No matter what.... error, error, error, bla, bla.
    3)  I can turn the phone radio of then back on and all works fine "data" wise until I make another call.
    4)  Note, you don't have to do a soft reset or take the  battery out to get it to begin working again, just turn the phone radio off then back on.
    I HAVE DONE THIS AND CAN MAKE IT REPEAT EVERY TIME WITH THE PHONE FRESH OUT OF THE BOX OR AFTER PERFORMING A HARD REST or with all normal apps installed.  Does not matter.
    Some other tid bits of info....
    1) It appears to not matter what city I am in.  The problem is the same as discribed above.  Confirmed cities are: Atlanta-GA, Savannah-GA, Memphis-TN, Columbia-SC, Bristal-TN.
    2) It appears to ALWAYS happen on the "EDVO" network as the "EV" is always showing on the phone screen.  Have not been able to try in an area with out the EV, aka the 1x area.
      This PROBLEM of course is a MAJOR pain in the rear.  I have called Verizon tech support about the problem multiple times.  Eash time they said they had no "record" of me calling about the problem documented in their computer.  The first tech said it was my software causing the problem and to do a hard reset and don't load the problem software back on (even though I already told him I did that).  The next tech said it was a currpted file and to do the hard reset and reinstall and all would be fine (even though I already told him I did that) and said to trust him, he see this all the time.  The next tech said the phone was bad and FedEx'd me a new phone.  It did the samething right out of the box as described above.  The last tech said they need to "re-provisioned" my phone and said that would fix the problem.  So she did something on her end then told me to "program my phone" doing the *228, option 1.  Still does it.  No correction to the problem.

  • SAP to Data Services System (Business Objects)

    Hi,
    Currently there is an RFC connection between Data Services and R/3 which exchange three idocs. Each idoc has an volume of 30k per day.
    As we are trying to introduce PI as central broker, will it be recommended to bring PI into the scope thinking on the performance head.
    As this would be simple idoc to idoc conversion, let me know the things that will help to reduce the performance overhead.
    Also should i be using RFC adapter between PI and Data Services.
    Also since the licensing model is based on CPU, what effect will it bring with these three interfaces?
    Is there any other connectivity that we can try apart from simple RFC

    Hi,
    >>>Do you mean to say with dual stack, Idoc adapter is available both in ABAP as well JAVA.
    yes you can use any of the two
    but if you want to use ICO you can only use IDOC_AAE (java stack idoc adapter)
    >>>I thought idoc adapter would present in Java stack when you go for java stand alone installation only.
    no, with dual you also get it
    >>>>That would solve my volume issues. What is the best way to find the size of an idoc?
    send it via PI or easier and without PI - send it to an XML port (but this will give you the XML idoc size)
    Regards,
    Michal Krawczyk

  • Data Services Address Cleansing Errors

    Hello all,
    Having trouble getting a US Data Cleansing transform to work.  It's throwing a few errors:
    1.  At least 1 RETAIN_POSTCODE_IF_VALID_FORMAT option must be present in this group
    2.  At least 1 DUAL_ADDRES option must be present in this group
    3.  At least 1 DISABLE_CERTIFICATION options must be present in this group
    4.  At least 1 REPORT_OPTION must be present in this group.
    I'm new to BoBJ DS and I've tried playing around with different options in the transform but can't get these errors to go away, any thoughts as to what could be causing this?  I'm sure it's probably something really simple.

    Hi Guys,
    This problem can usually be remedied by importing the base URAC.atl file:
    1. In Designer, right-click in the Local Object Library
    2. Select Repository > Import From File
    3. Browse to LINK_DIR\Admin\Repo and select the transform to be re-imported (e.g. urac.atl)
    4. Click Open
    5. Select Yes and OK
    If you need to import an .atl from an older version, see the following KB article:
    https://bosap-support.wdf.sap.corp/sap/support/notes/1431746
    Thanks,
    Brandon Jacobson

Maybe you are looking for

  • How can I change an existing podcast?

    My webmaster put up a podcast into iTunes before I had a chance to edit the title and description. I would like to change the title and description. Is there a way I can do this or do I need to delete the first one and put up another? If I do have to

  • Lightroom 3 super slow on new Windows 7 64 bit...Why?

    I've recently switched over to  Windows 7 64 bit Home Premium, running 8GB DDR3 RAM, 1GB ATI Radeon 4800  series video card, 1920px monitor and have found the performance in  Lightroom 3.4.1 much slower than I did on Windows XP, 32 bit running 2GB  o

  • Struck thread issue with weblogic 9.2

    Hi, could you please help me find out the reason why lots of thread in my weblogic application are stuck. My application is a jsp based web application which is using accenture grnds framework and i can see lots of threads stuck at EDU.oswego.cs.dl.u

  • My notebook cannot save ac power ; it sudden shut-down when I plug-off . Battery has expired??

    Is there HP center at Puntip Pratunuum ,Bangkok,Thailnd?  I  want to check and repair  my  NB. Thank  you. This question was solved. View Solution.

  • SUP sync problem: Category products not found on WSUS

    Hello, Updates stopped working suddenly for clients, and the clients reported back with message: "Client check passed/Active". I can't say much about it because I have to be honest, I didn't do much troubleshooting. I went straight to re-configuratio