There is no table  in database system BW_POS

hi gurus,
i am trying to access tables from SQL Server using DB connect.i have created one source system using SAP library help.
when right click source system and selected
'select Database tables' i am getting the following error.
<b>"There is no table in database system BW_POS"</b>
BW_POS is my source system name.
help needed urgently.
thanx in advance..

hi guys,
thanx for your advices,
while creating the source system i have followed that note <b>512739</b> and i checked that the all the tables and fields are in UPPER case.even the roles and authorizations are given for create VIEW and selct the DB tables.when i check the same DBuser with the client and executed the SQLquery(in SQL Query Analyzer) i am getting the records in that.
hi dinesh,
i have checked the source system also it is saying that source system OK.
<b>the problem is not solved.</b>
is there any way of checking the source system using any tables or to check any table entries..
help is appreciated and advance thanx.

Similar Messages

  • DB Connect Error - There is no table in database system

    I am trying to get DB Connect to work in our BI 7.0 system.  I believe I have the DB Connect source system setup correctly.  In BI, I execute the following steps:
    1. Right-click on the DB Source system and select Additional Functions > Select Database Tables (3.x)
    2. Enter my DB Source System
    3. Check Select Tables and Select Views
    4. I get the message 'There is no table in database system'.
    Can some please make some suggestions on what I have done wrong?
    Thanks.
    Regards,
    Ron

    Whatever the Database user name you define in SAP the views/tables in the DB system should have the same owner.
    Ex: If connection between BW and DB is defiend under user SAP1 then the owner of the database should also be SAP1.
    Also check this doc:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b031fd32-f109-2a10-5486-ccddf1660ce5
    Edited by: sam hennry on Feb 22, 2008 12:36 PM

  • DB Connect: No tables in the database system

    I have a DB connect into a SQL database, the database link is working correctly and I can extract data from previously created datasources.
    I am having problems adding new datasources for other DB tables.
    The system keeps reporting There is no table in database system.
    I also have the same issue if I create new copies of the datasources which already work.
    Has anybody had similar problems and how did they solve?
    Many thanks,
    Matt

    Hello Matt,
    The problem may be in the DataSource, so try to generate the Datasource again and replicate to BW and then try.
    Please see this blog
    /people/happy.tony/blog/2006/09/01/installing-db-connect-with-mssql-server-database
    Thanks
    Chandran

  • Database Systems Supported By J2SE

    Good day,
    May i know what are the open source database management systems supported by Java?is Interbase supported?
    Do I need any additional drivers?
    thanks...

    there are many open source database system supported by java...
    example : postgresql, mysql, hsql
    and, yes, you do need a driver(jdbc) ...or you can use odbc-jdbc that provided by
    java...

  • After compressed the database table affect the system performance

    There is a very big database table in my system called MSEG. It is about 910G and the wasted tablespace is about 330G. I want to compress the table, but the table is written and deleted frequently. will it affect the system performance if I compress the table. Or I can only select reorganize the dababase table avoid it affect the system performance? Thanks.

    Hi Huiyong,
    If you talk about table compression, it cannot be done online. we need to do this with a planned downtime. Table compression has some percentage of overhead on CPU. Refer SAP note for
    1289494
    FAQ: Oracle compression
    1436352
    Oracle Database 11g Advanced Compression for SAP Systems
    If you talk about online table reorg, yes definitely there would be impact on user performance.
    As the table size is very big it may take some days or hours to perform online Reorg.
    Other faster method is to perform table export import which is faster than online reorg. But it will again require downtime .
    Hope this helps.
    Regards,
    Deepak Kori

  • Is there a way to determine which rows are inserted in JDT1 table by the system automatically?

    Hi,
    Is there a way to determine which rows are inserted in JDT1 table by the system automatically? Example, many GLs which are mapped in GL Account Determination, like Foreign Exchange Gain / Loss, Rounding Account, etc. are inserted by the system automatically in the Journal Entry on various scenarios, like during Incoming Payment, etc.
    Which SQL query can give me those rows? Basically the WHERE condition should be based on which column or multiple columns in JDT1 table?
    Thanks.

    Hi Rajesh,
    I'm not entirely sure but I think the TransId is the same in the header that belongs to the transaction.
    OINV.TransId = JDT1.TransId
    Best regards,
    Pedro Magueija

  • I created new table in database and want to bind with system form

    Hi All,
    1) i created new table in database and want to bind with system form .
    2) How i bind this field to system form sale order where i added new folder tab in that i added some fields that fields i want to bind with database. when i click on the next ,previous ,first and last button
    bind value should change.
    Awaiting soon reply
    Rajkumar G.

    hi,
    try this
    Public Sub BindDataToForm()
            Dim oItem As SAPbouiCOM.Item
            Dim oEdit As SAPbouiCOM.EditText
            Dim oComboBox As SAPbouiCOM.ComboBox
            '// getting the matrix column by the UID
            'oItem = oForm.Items.Item("docname")
            'oComboBox = oItem.Specific
            'oComboBox.DataBind.SetBound(True, "OSRI", "BaseType")
            'oItem = oForm.Items.Item("docno")
            'oEdit = oItem.Specific
            'oEdit.DataBind.SetBound(True, "OSRI", "BaseEntry")
            oColumn = oColumns.Item("Code")
            'oColumn.DataBind.SetBound(True, "", "DSCardCode")
            oColumn.DataBind.SetBound(True, "OSRI", "ItemCode")
            oColumn = oColumns.Item("Serial")
            oColumn.DataBind.SetBound(True, "OSRI", "IntrSerial")
            Try
                oColumn = oColumns.Item("Inspection")
                oColumn.DataBind.SetBound(True, "OSRI", "U_Inspection")
            Catch ex As Exception
                MessageBox.Show(ex.Message)
            End Try
            oColumn = oColumns.Item("Quality")
            oColumn.DataBind.SetBound(True, "OSRI", "U_Quality")
            oColumn = oColumns.Item("Status")
            oColumn.DataBind.SetBound(True, "OSRI", "U_Status")
            oColumn = oColumns.Item("Finish")
            oColumn.DataBind.SetBound(True, "OSRI", "U_Finish")
            oColumn = oColumns.Item("Thickness")
            oColumn.DataBind.SetBound(True, "OSRI", "U_Thickness")
            oColumn = oColumns.Item("uom")
            oColumn.DataBind.SetBound(True, "OSRI", "U_NetUOM")
            oColumn = oColumns.Item("length")
            oColumn.DataBind.SetBound(True, "OSRI", "U_Length")
            oColumn = oColumns.Item("height")
            oColumn.DataBind.SetBound(True, "OSRI", "U_Height")
            oColumn = oColumns.Item("sqf")
            oColumn.DataBind.SetBound(True, "OSRI", "U_sqf")
            oColumn = oColumns.Item("sqm")
            oColumn.DataBind.SetBound(True, "OSRI", "U_sqm")
        End Sub

  • There is no table dba_network_acls in my database

    there is no table dba_network_acls in my database
    I have created this database manually in oracle 11G manually.
    i think i have istall a package to create this table
    can anyone tell me the package name and how to install it or is there any other method

    Possibly you didn't install XML DB?
    http://www.oracle-base.com/articles/11g/FineGrainedAccessToNetworkServices_11gR1.php

  • Use database table in different system?

    Hi, experts,
    I am new to WD. I have a question here:
    For example, now my WD application is in IB* system and the database table I need is in IS* system. I want to create functions in IB* system to operate the data from database table in IS* system and I will then use BAPI to call the created functions to transfer the results to WD. Is this possible?
    Best Regards
    Fan

    Hi, Jagdish,
    thank you for your reply. Do I need to do anything special to call the function module in another system? Or the WD wizard of making service call will automaticlly identify the position of the needed function module after i specify the name of the function module?
    Best Regards
    Fan

  • Index does not exist in database system ORACLE??????

    Hi Experts,
    I created a Secondary Index in DEV, its fine and the message is,
    <b><i>Index KNA1~Z01 exists in database system ORACLE</i></b>
    I moved it to TEST and there I got the message is like,
    <i><b>Index does not exist in database system ORACLE</b></i>
    So,
    1 - Wht I hv to do now? Shuld I see BASIS people?
    2- Why its happened like that? Coz of not enough space?
    ThanQ.

    thanq sudheer,
    I got the return code as 4, so Can I go for creation of new request and there by moving to test?
    1 - Anyways, so, after Activating Seconadyr Index, Shuld I come back and Do I need to activate the Table also?
    or
    2- Just activating the index is enough?
    thanq.
    Message was edited by:
            Srikhar

  • Index exists in database system Oracle

    Hi Experts,
    I have created a table with idexes. But i want indexes to be in satus "Index does not exist in database system".
    But rather its giving me some other status as "ndex exists in database system Oracle"
    How to achieve the same.
    Please help.
    Moderator message: standard task for any system administrator,  please search for available information.
    Edited by: Thomas Zloch on Jun 30, 2011 11:26 AM

    thanq sudheer,
    I got the return code as 4, so Can I go for creation of new request and there by moving to test?
    1 - Anyways, so, after Activating Seconadyr Index, Shuld I come back and Do I need to activate the Table also?
    or
    2- Just activating the index is enough?
    thanq.
    Message was edited by:
            Srikhar

  • Deleting obsolete logging tables in SLT system

    Hi Experts,
    Need help to sort out below issue,
    There are many obsolete logging tables in SLT system ,might have been left out after dropping SLT schemas, previous replications.
    These logging tables exist in ABAP dictionary but not in database. Due to this, it shows inconsistencies in DB02 > Diagnostics > Missing Tables and Indexes. There are in total 252 missing tables in DB. Currently DB migration is stuck due to this issue.
    Is there any way to remove the tables from dictionary without deleteing them manually through SE14 ?
    How to avoid having such tables ? Am I missing any steps while deleting the previous schemas?
    Regards
    Kartik

    Hi Kartik,
    these obsolete objects/logging could be also there becasue someone refreshed/copied the systems.
    There is also one transaction IUUC_REMOTE in the source system to delete the logging tables. But I am not sure if it distinguish between db or ddic level. Have a try and post the result.
    Best,
    Tobias

  • Client Based Database System

    I'm trying to come out with a design for a client-based database system. i wanna create at least 20 databases all linked to one main server and i can make updates whenever i want either manually or thru the update table that will update automatically all the other databases.
    each client can look other's information on the server and get access to it as well as clients will get the ability to communicate thru the server or sub-servers within the network.
    im really confused myself how to start this and what will be the ideal shema or design to start off with.
    i d really appreciate any hints guys.
    thanks

    If the goal is disaster recovery, you want to be looking into something like DataGuard to provide a hot standby. Basically, you take archive logs from the primary, copy them to the standby database running in a physically separate data center, and apply the logs to the standby. In the event of a failure on the primary, you simply transition over to the hot standby database. You can configure DataGuard in a variety of modes, including zero data loss (though there will be perforamance and availability implications for this sort of setting).
    I don't understand the second part of your question.
    how are the tables gonna be structured? This will depend entirely on your application. You don't need anything special in your data model to use DataGuard.
    because this is a client based application...so it requires an updatable table or sourceI don't follow this at all.
    can i get some details or a shema that shows how to put these tables togetherNor do I follow this
    let's say we have one main server or source and only two other client applicationsWhat do you mean by "two other client applications"? Do you really mean applications (i.e. a collection of J2EE, .NET, PHP, etc components)? Or are you coming back to a multiple database setup with replication?
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Homegeneouscopy  R3load procedure generated more tables on target system

    Hi All
    My source system is 46C SR2 /oracle 817/HP_UX PARISC and
    Target System is 46CSR2 /Oracle 10202/HPUX IA
    I used R3load procedure to export database from source system and completed import successfully into target system without any problem.The new system is up and running.
    My Source system has total 23193 tables but the target system has 23771 tables and source system has 27011 indexes and the target system has 27701 indexes.
    Can someone tell me why there are additional tables and indexes in my Target system.Is it due to oracle 10g.
    Your help will be appreciated.
    Thanks
    Amit

    Markus,
    I got this information from DB02 first screen where it shows number of tables and indexes.
    Actually I used r3load procedure to export data from source and prepared target system also by r3load,
    The source systems had less tables but the target got more.I have upgraded the target system to ecc6
    and working fine.UAT completed and gone live.
    Auditors have raised the question .
    Let me know if there is any way to find this difference of tables though target is now ECC6.
    Thanks
    Amit

  • Error loading data from bw table into BW system

    Dear all,
    I have created and fill z tables in bw system, and try to load data into same bw system.
    What i am facing is error message saying "Error in module RSQL of the database".
    and when i check st22 for dump analysis, it says:
    Runtime Errors         DBIF_RSQL_INVALID_RSQL
    Exception              CX_SY_OPEN_SQL_DB
    how come?
    Thanks

    Can you try again by activating the generic datasource in RSO2. It should work.
    And also make sure the tables are active.
    Ravi

Maybe you are looking for