Configure BI JDBC system for VC

Hello,
I am new at VC and try to configure a BI JDBC system (BW 3.5) for VC. I have downloaded
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/6209b52e-0401-0010-6a9f-d40ec3a09424
(How to Configure a BI JDBC System for Visual Composer.pdf) but do not know how to proceed after step 8 where SDK_JDBC is required. In my Visual Admin --> Cluster tab --> Services --> Connector Container --> Runtime tab --> under sap.com/com/sap.ip.bi.sdk.dac.connector.jdbc node SDK_JDBC must be selected. However, such node does not exist, how can I install it? Please help!
Thank you very much,
Elias Negrin

Hello Elias,
Please see my comments on your last post below:
> Hi Deep,
>
> In step 7 I have to specify location of JDBC JARs
> provided by RDBMS vendor (<b>Oracle 9i</b> in our case). I
> have already done step 6 where added <b>MSSQL </b>jar files
> (JDBC Connector --> Runtime tab --> Datasources -->
> Drivers). What am I missing?
>
> Thanks again,
> Elias
I highlighted in bold where the issue is, you went ahead and loaded the JDBC driver for Microsoft's SQL Server on the JAVA WebAS and not the JDBC driver for Oracle 9i, which is the RDBMS you are using. You can download the appropriate JDBC driver from the site below.
http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/index.html
Once you have done this install the Oracle JDBC Driver and you should be fine.
Good Luck,
Cheers,
Scott

Similar Messages

  • Configuring BI XMLA system for Visual Composer

    Hello all,
    I am using VC 6.0 patch 4 and want to configure BI XMLA system . I got the document on "How to configure BI JDBC system for VC", but not able to find any help for configuring XMLA system.
    Also I have created the system using "com.sap.portal.systems.BIUDI" par file for XMLA, but not able to fill the required parameters properly.
    So anyone of u have done this before plz send me the help or  document link.Also if u want, u can send me the document on "[email protected]"
    Hoping to hear from u soon.
    Thanks and Regards,
    Amol.

    Give the following properties for the system you create using BIUDI par file - XMLA.
    Connection Properties:
    Data Source Name: <Name of the data source>
    Server URL: http://<BW Server:port>/sap/bw/xml/soap/xmla
    Statefulness : <can leave it blank>
    User Management Properties:
    if you do not have SAP Logon Tickets set up then maintain the user mapping field.
    I am working with VC 6 Patch 6.
    Regards,
    Smitha

  • How to configure a Logical System for XI External System

    I'm following the 'How to configure SAP XI to use the standard SAP communications APIs (idoc, pabi, rfc) from external system - How to create XI content with the Integration Builder' document.
    I have everything configured, but in section 6.7 when I try to do a transaction BD10 on to send a MATMAS01 idoc using my Logical System IQS_EXTERN to my external system, it says '1 master IDocs set up ...', then it says '0 communication IDocs generated ...' and my external system does not get the IDoc. The NX7 Integration Engine does not get a message from SAP_CE8  to IQS_EXTERN.
    How do I specifically configure my Logical System IQS_EXTERN to communicate with my external system via XI (NX7)?
    I'm using the ICC Test-System CE8, SAP R/3 Enterprise 4.7 IDES and the NX7 Exchange Infrastructure (http://iccpi7.sap.com/rep/start/index.jsp).
    Thanks,
    Ed Culnane
    Edited by: Ed Culnane on Oct 15, 2008 7:02 PM

    Check whether you have setup Partner profile for receiving system ( Here its XI system). You need to create outbound parter profile for XI system.
    Check out this forum ...
    Re: trying to send Idoc using Standard Outbound Processin option
    and blog ..
    Introduction to IDoc-XI-File scenario and complete walk through for starters.
    Hope this will help.
    Nilesh

  • JDBC System For MS Access

    Hi,
        I want to create a system object in portal which will access MS Access database which is on my PC. Can anybody tell me what should I give in system properties:
    Connection URL and
    Driver Class Name
    I am using EP7.0 (Netweaver 2004s SPS10).
    Cheers
    Jayant

    Hi,
    You can use the JDBC ODBC driver which is of type 1 driver to access the MS Access from Java. This driver is already present in your JRE, so the dirver is
    <b>sun.jdbc.odbc.JdbcOdbcDriver</b>
    http://www.javaworld.com/javaworld/javaqa/2000-09/03-qa-0922-access.html
    But using this method needs configuration of ODBC datasource on your PC where access is installed.
    http://www.anticlue.net/archives/000617.htm
    So the connection URL from above article will be:
    String url = "jdbc:odbc:Northwind"
    Greetings,
    Praveen Gudapati
    [Points are always welcome for helpful answers]

  • Right way to configure Tomcat JDBC resource for MaxDB

    Hi,
    i need to configure one tomcat server with a pool of connections for a MaxDB instance with follow database parameters:
    MAXUSERTASKS=150
    SESSION_TIMEOUT=60
    i do this configuration on tomcat:
    <Resource name="jdbc/myApp"
                    auth="Container"
                    type="javax.sql.DataSource"
                    username="DBUSER"
                    password="secret"
                    driverClassName="com.sap.dbtech.jdbc.DriverSapDB"
                    url="jdbc:sapdb://dbserver/DBNAME"
                    maxActive="150"
                    maxIdle="75"
                    validationQuery="SELECT NOW() FROM DBA.DUAL"/>
    is this the right way? there is a way to check if the pool is working at database side? at java side i checked that the javax.sql.DataSource.loginTimeout is Unavailable, then what is the better way to avoid errors like:
    2008-06-02 13:54:36  2165 WNG 11824 COMMUNIC Releasing  T187 command timeout
    i think that this problem occurs because the SESSION_TIMEOUT is 60, and the loginTimeout is Unavailable at javax.sql.DataSource then the DBCP of tomcat dont know when need to revalidate the session.
    thanks for any help.
    Clóvis

    Hi Clovis,
    to be honest, I'm no Tomcat expert at all. All I can do is read the documentation.
    The error message you posted was about an timeout due to a too long idle session.
    From the changes in your connection pool setup I cannot see any parameter that would influence this.
    Instead - as already written - you may either want to change the session timeout in general, for the user or (by adding some connection parameters) for the sessions.
    Concerning the question on wether it's better to have many connections or just a few - well this depends on what the java tasks do with the sessions.
    The connection pool is used for saving resources on the database side and the time necessary to logon and create a session.
    So whenever any of the java tasks needs a db connections it should "just get one" from the pool.
    When you have "high load" (by the way what exactly does that mean? High CPU usage on the J2EE server? Huge transaction volume? Many parallel transactions?) this does not change.
    Anyhow you have to be aware of the fact that the database can only process as many SQL requests in parallel as there are user kernel threads (UKTs) and each of the UKTs need to be able to run on a seperate CPU core. Therefore if it's necessary to have real parallel SQL activity many connections may not be the best idea.
    On the other hand this requirement is seldom necessary - most often sessions can wait a bit until they get the reply from the database and synchronize on each other later on. At least that's how we do it with NetWeaver.
    KR Lars

  • Configuration of JDBC drivers for ocnnecting from BOE to Oracle

    HI all,
    I am trying to configure jbdc drivers in solaris for connecting BOE 3.1 sP2 to oracle 10g database.
    issue is not able to create connection in universe designer using jdbc drivers
    i couldnt get the exact info on this, please provide me the steps for connecting to oracle through jbdc drivers, Thanks,
    Thanks
    Ram

    I am now up and running.  Several tips were found on both Adobe and Oracle sites that were helpful. Here is a brief summary of the steps:
    Step 1, download* the Oracle Database11G release 2 Client for Microsoft Windows x64. (not the Instant Client). Follow the instructions provided on the download site. Select just the items you need from the custom install form.
    Step 2, add your datasources using the Oracle Net Configuration Assistant**.  Select Local Net Service Name Config. Follow the prompts, answer the questions.
    Step 3, add your datasources on Windows 2008 Server with Administrative Tools Datasources. Similar to step 2.
    Step 4, in CF10 Administrator set up your datasources. The first thing to do is set your Class Path to the location of the jdbc .jar files.  When you configured the Oracle installation you specified the location of the files. Go there and look for the\jdbc\lib folder. It contains the jar files for your drivers. Example:  C:\\Oracle\home\jdbc\lib\.  Now add your datasources. Select Other from the drivers drop-down list. This may be the tricky part. You will need the database information for connecting, such as host name, port, user, password, etc.  The connect url will look like: jdbc:oracle:thin@hostname:portnumber:servicename. Class: oracle.jdbc.OracleDriver  Name: whatever
    * download from:  oracle.com/technetwork/database/enterprise-edition/downloads/112010-win64soft-094461.html
    ** This utility should be selected as an item to install from step 1.

  • Configure 64 Bit System for Flash

    Newer 64 Bit Systems are becoming the norm - How can Adobe
    not not make flashplayer compatible? Are there instructions for
    configuring for a 32 Bit browser on a 64 bit system? This is so
    frustrating and renders newer computers useless for lots of
    applications. Please help! Thank you.

    Odd, I have a Vista 64-bit system and it installs no problem.  What is the exact message you're getting?  I'd start by trying to redownload from the BlackBerry.com site (use this link: http://na.blackberry.com/eng/services/desktop/) and then try to provide any additional info you can.
    If you have an antivirus program running, also try turning off protection while installing the program.  Sometimes antivirus programs interfer with the installation, so that's another thing to try.
    If you want to thank someone for their comment, do so by clicking the Thumbs Up icon.
    If your issue is resolved, don't forget to click the Solution button on the resolution!

  • How to Configure Location based Accounts system for a company

    Hi Experts,
    My client using SAP B1 2007B PL13.
    I am configuring the Accounts part. here My client is involved in manufacturing business. so there are 3 locations like
    Location 1: Head Office
    Location 2: Factory1 and Warehouse1.
    Location 3: Factory2 and Warehouse2.
    they are asking the financial report for all three locations to find the expenditure and returns. Under this scenario i am confused to configure the accounts system for them, whether,  i have to create a 1) segmentation accounts 2) Profit center and 3)cost center.
    can anyone guide me to decide and explain a breif work around for my scenario.

    Hi rakesh,
    Yes, I am just started implementation for my client. their requirement is to take the report on location wise.  so initially i have to decide , weather i can use segmentation or profit center ?
    note: number of location will increase in future. so having this in mind , i have to decide the best method to make the process easier to the end user in future times too.
    are am clear?  can u help me out.!!
    Thanks & regards,''
    Dwarak

  • BI JDBC system does not appear in a search in Visual Composer of CE7.1

    Hi All,
    I have configured BI JDBC system in CE7.1 but it does not appear in a search in visual composter.
    I have using following connection parameter while configuration of BI JDBC system in CE 7.1.
    Oracle Deriver - classes12.jar / ojdbc14.jar
    Connection URL - jdbc:oracle:thin:@xx.xx.xx.xx:1527:BWI;SYSTEM;xxxx
    Driver Class Name - oracle.jdbc.driver.OracleDriver
    Platform details for BI and CE 7.1
    OS AIX 6.1
    Database Oracle 10.2
    Apart from this I already check SAP Note 1247283,1169625,1138877,773401 but still is not working.
    Please help me on same.
    Thanks,
    Harshal

    Created BI master system and problem is solved.
    Edited by: Harshal Subhash Dusane on Aug 12, 2010 2:03 PM

  • Create JDBC System in EP

    Dear All,
    I am using EP 7.0 SP6.
    We encountered a problem in creating a jdbc system for us to configure a jdbc stored procedure iView in EP.
    Here is what we have done:
    1 - In System administration> System Configuration, create a new system (from template)
    2 - Select 'jdbc system'
    3 - Provide the system name etc
    4 - Provide the jdbc driver url etc information.  The jdbc driver is already deployed on the J2EE engine via Visual administrator and tested to be ok
    5 - We provided valid username/password via user mapping
    However the creation fail and here the error message on EP screen:
    =============================================
    Test Details:
    The test consists of the following steps:
    1. Retrieve the default alias of the system
    2. Check the connection to the backend application using the connector defined in this system object
    Results
    Retrieval of default alias successful
    Connection failed. Make sure user mapping is set correctly and all connection properties are correct.
    ================================================
    Thanks.
    Kelvin

    Hi KL, jdbc system doesn't have any other mistery...
    May be the drivers that you are using aren't the propers.
    for SQL:com.sap.portals.jdbc.sqlserver.SQLServerDriver
    and URL: jdbc:sap:sqlserver://servername:port;DatabaseName=PruebaPortal
    for ORACLE:com.sap.portals.jdbc.oracle.OracleDriver
    and URL:jdbc:sap:oracle://servername:port:1527;SID=PruebaPortal
    Best Regards,
    Nacho

  • Sql server jdbc system

    Hello All,
    My connnection tests for sql server fail when I create a JDBC system object.  I used the exact same steps to create a oracle system object (user mapping,permissions)(of course, i used the url string and driver class pertinent to sql server) and the oracle system connection test works.
    Can anyone advise me regarding this?
    Thanks

    Hi Vijay,
    1. Minimum parameters for SQL Server are
    Connection url-jdbc:sap:sqlserver://server.domain.com:1433;DatabaseName=Northwind
    Driver class name-com.sap.portals.jdbc.sqlserver.SQLServerDriver
    Validate connection- Yes
    User Mapping type- admin,user
    2. Maintain Alias.
    3. Maintain user-mapping in personalize link in mast head.
    4. Test the connection.
    Suppose if it still fails the test, then specify the IP address of the server name in connection url. For more info follow the SAP note - 773401 (Configuring Portal JDBC System connection properties ).
    Hope this helps,
    Thanks,
    Praveen
    PS.Dont forget to reward points

  • Where i will get  the .jar files for JDBC connector for MSSQL Server

    Hi,
    i am trying to configure the JDBC connector for the MSSQL server. For this we need to add the .jar files for MSSQL Server. Can any body tell , where i will will get the jar files to finish this connection.
    Database version is MS SQL Server 2000
    Portal version is       Portal7.0 sp9
    Regards
    vijay

    Hi Vijay,
    If you are looking for the exact steps as to how we can configure the JDBC Connector for accessing the MS SQL Server, have a look at this document:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/b00917dc-ead4-2910-3ebb-b0a63e49ef10
    Follow the steps till page 12 of this doc.
    Bye
    Ankur
    Do reward points for helpful as well as solved answers!!

  • Alert system for chain process

    Hello,
    I want to configure the alert system for when an error occurs in processing chains.
    I followed the steps in the forum THROUGH ALRTCATDEF transaction, but I can not do the following, which is what I really need;
    That the key responsibility for a particular user cube notifications will arrive Error loading this cube, not all the cubes.
    All I've got to make is that the error messages will reach all key users regardless if you have access to that hub or not.
    Sincerely,

    Hi Use
    Use Tbales RSSELDONE and REREQDONE and take the status an dthen raise a message using the following Program
    DATA : is_doc_chng        TYPE sodocchgi1,
           it_objtxt          TYPE STANDARD TABLE OF solisti1,
           is_objtxt          TYPE solisti1,
           it_objpack         TYPE STANDARD TABLE OF sopcklsti1,
           is_objpack         TYPE sopcklsti1,
           it_objbin          TYPE STANDARD TABLE OF solisti1,
           is_objbin          TYPE solisti1,
           it_reclist         TYPE STANDARD TABLE OF somlreci1,
           is_reclist         TYPE somlreci1,
           w_lines_tx         TYPE i.
           is_doc_chng-obj_descr = 'Auto genareted Mail from BW'.
           is_objtxt-line = 'This is an automatically generated mail. Please do not reply  to it.'(028).
           APPEND is_objtxt TO it_objtxt.
           is_objtxt-line = space.
           APPEND is_objtxt TO it_objtxt.
    DESCRIBE TABLE it_objtxt LINES w_lines_tx.
    READ     TABLE it_objtxt INTO is_objtxt INDEX w_lines_tx.
    is_doc_chng-doc_size = ( w_lines_tx - 1 ) * 255 + STRLEN( is_objtxt ).
    CLEAR is_objpack-transf_bin.
    is_objpack-head_start = 1.
    is_objpack-head_num   = 0.
    is_objpack-body_start = 1.
    is_objpack-body_num   = w_lines_tx.
    is_objpack-doc_type   = 'RAW'.
    APPEND is_objpack TO it_objpack.
    is_reclist-receiver = 'SURENDRA.REDDY'@'ABC.IN'.
    is_reclist-rec_type = 'U'.
    APPEND is_reclist TO it_reclist.
    CLEAR is_reclist.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
      EXPORTING
        document_data              = is_doc_chng
        put_in_outbox              = 'X'
        commit_work                = 'X'
      TABLES
        packing_list               = it_objpack
        contents_txt               = it_objtxt
        receivers                  = it_reclist
      EXCEPTIONS
        too_many_receivers         = 1
        document_not_sent          = 2
        document_type_not_exist    = 3
        operation_no_authorization = 4
        parameter_error            = 5
        x_error                    = 6
        enqueue_error              = 7
        OTHERS                     = 8.
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    Thaks
    Reddy

  • Information needed on having one more CEN system for the monitored systems

    Hi Everyone,
    I need some information regarding configuring of one more CEN system
    system for the systems which are already being monitored by another
    central system.
    1) Do I need to register a new CCMS agent on the monitored system for the NEW CEN system again. As I already have sapccm4x registered in the monitored system for the old CEN system, which i think can't be used for the new CEN system.
    If I can go with configuring NEW CEN system for the same monitored systems, can you tell me how should I proceed.
    Can anyone help me by providing the information for this issue.
    Regards,
    Bharath Kumar.K

    1) yes you can use DSL with what you have, but you want more RAM and I would recommend getting OSX.3 or above because the web browsers for OS9, which I assume is what you are running, are a bit dated and not well supported any longer.
    2) Yes you can add more RAM. The 64meg stick in there can be removed. You can add up to 1 Gig of RAM via two 512Mb PC100 or PC133 DIMMS.
    See here: http://tinyurl.com/qdlo3
    I would add at least 512 Mb if you use OSX and no less than 256 mb if you are using OS9
    3) No you can not use CD-R or CDRW with the hardware you have. That iMac only has a CDRom drive and can not burn CDs. You can buy an external CD burner if you want to back up to CDRs
    PS: You may want to remove your serial number from your post. Granted the warranty has expired but there's no need or reason to list it.

  • JDBC System and DQE

    Hi,
    I am using EP7 SP9. I want to create a JDBC System for the Query iView. I got the problem while setting DQE properties in the system properties.
    I have check DQE service in our Visual admin. It is running properly.
    Reply soon. Its very urgent.

    Vadim
    I did all steps mentioned by you.
    Still my issue is not resolved...
    Thanks,
    Ramakrishna

Maybe you are looking for

  • PL/SQL-Error: ORA-00604 - ORA-01422 makes no sense. Any Idea anyone ?

    Problem: No matter if creating new or recompiling old procedures (that had been compiled successfully lon ago), I always receive the very same error message: ORA-00604: ...recursive SQL level 1 ORA-01422: exact fetch returns more than requested numbe

  • Funny how some questions get answered and others just viewed

    Any one care to comment on this?

  • Enterprise search: error when indexing (CRM 7.0)

    Hello, I need your help. We want to use enterprise search in our demo system (CRM 7.0). I use the Web dynpro application ESH_ADMIN_UI_COMPONENT. However, when indexing we get the following errors: Data of NW authorization objects could not be indexed

  • Field audisp MRP-relevant not modified in Production Order.

    I would like to know if there is a way (Exit, BADI, customizing, etc) to modify the field Field audisp MRP-relevant before or after add a new component or operation in a production order. The system always get the value form the customizing of the pr

  • Expanded RSS support

    I started playing with Sienna yesterday and quickly ALMOST had an app fully working. The issues I have: the audio player can not hide the image (that I could find) - worked around this for now by setting an image to use the rss data source doesn't su