Can't read repository tables

I'm a bit confused about OWB 11.1 structure. I have OWBSYS which is repository owner, OWBREP which is a target user and workspace owner, OWB which is a workspace. I refer to the workspace like that: OWBREP.OWB.
Where can I find the repository tables??? The tables I want exist in OWBSYS, but the select * returns nothing. It seems the table is empty. I searched in other database users, but I couldn't find that.
I can see the audit details perfectly in repository browser, but I can't do a customized query in the metadata repository.
Is there any reason I can't access the repository tables? Is there any other place I have to search?
Thanks.

Hi
In 11gR1 you have to set the workspace by calling
exec wb_workspace_management.set_workspace(<wksp_name>, <wksp_owner>)
In 11gR2 there is a workspace default.
You can then query for example SELECT * from OWBSYS.ALL_IV_PROJECTS
Cheers
David

Similar Messages

  • DAC: "error while reading repository table". Please help!

    Hi everybody,
    I copied DAC directory from server to a workstation.
    DAC client on server machine runs normally.
    When trying to run DAC client on the workstation, I get an error message "Error while reading repository table".
    I tried to find any DAC log file to get some additional information, but I couldn't.
    The connection in DAC seems to be configured properly (test connection successful).
    The only difference I found between server and workstation is that there are two Oracle homes installed on the workstation and one - on the server.
    Thanks,
    Alex

    So you can read the tables now? Good to know.
    Just as a hint: if you "tnsping" your data source from a command window, you'll see which path and file is used, so you can find out which home.
    TNS Ping Utility for 32-bit Windows: Version 11.1.0.6.0 - Production on 04-MAR-2009 16:42:43
    Copyright (c) 1997, 2007, Oracle. All rights reserved.
    Used parameter files:
    C:\Oracle\product\11.1.0\client_1\network\admin\sqlnet.ora <--- my 11g home is used and not the 9i or 10g which also reside on this machine.
    @DAC client can't connect to server: i.e. the icon stays red?
    - Is your server up and running? (I don't want to start a flame war, but it happens to the best of us)
    - Did you go through the steps here? http://download.oracle.com/docs/cd/E12513_01/doc/bic.101/e12653/dac_configure.htm
    Cheers,
    C.

  • DAC: error while reading repository table

    Hi everybody,
    I installed DAC (copied from server to a workstation).
    When trying to run DAC client on the workstation, I get an error message "Error while reading repository table"
    The connection seems to be configured properly (test connection successful).
    DAC client on server machine starts normally.
    What can be a problem?
    Thanks,
    Alex

    Hello again!
    Has anybody seen this problem?
    What can it be?
    Where can I find DAC logs?
    Cheers,
    Alex

  • NWDS 7.31 SP11 p2 - update issue - can not read repository

    Hello Experts at SAP,
    I have a brand new NWDS 7.31 Sp11 P2 installation and want to test the update (although I know its the latest version).
    Firstly I found that the preconfigured upgrade path is wrong on that patch level. There is one / too much between NWDS and NW in the url.
    OK i fixed that.. Now I get the error below.
    Unable to read repository at https://nwds.sap.com/swdc/downloads/updates/netweaver/nwds/nw/731/content.xml
    I checked certificates, etc. that's not the issue, all green when I test the url in explorer.
    Any suggestions would be highly appreciated. Don't want to reinstall manually and transfer all the stuff when an update is available (assuming the update function does that for me)
    regards
    Oliver

    I just found a clue, seems to be a certificate issue but can someone help to resolve it ? Issue log below..
    Some sites could not be found.  See the error log for more detail.
      Unable to read repository at https://nwds.sap.com/swdc/downloads/updates/netweaver/nwds/nw/731/content.xml.
      sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
      No repository found at https://nwds.sap.com/swdc/downloads/updates/netweaver/nwds/nw/731/.
    thanks
    Oliver

  • How can I read MCHBH table ?

    Hi experts,
    Regarding to note 193554...
    I have a need to read/calculate some data from MCHBH table. The problem is that material was moved (101 -> MB51) at 10.2010 but in MCHBH table there are entries:
    LFGJA LFMON CLABS              CUMLM              CINSM              CEINM              CSPEM              CRETM
    2010  09                0,000              0,000              0,000              0,000              0,000              0,000
    2010  11                0,000              0,000             23,207              0,000              0,000              0,000
    Moreover if between periods there are no entries its mean that the data is the same as the period before ? (In note 193554 there is information about n + 1 period but I don't understand it)
    Really thanks.
    Edited by: Daniel Duras on Dec 6, 2010 11:11 AM

    MB51
    3205 321   4914721810    1 03.12.2010
    3205 321   4914721810    2 03.12.2010
    3205 102   5004547324    1 01.12.2010
    3205 101   5004486211    1 05.10.2010
    MCHBH
    MATNR                                    WERKS LGORT CHARG      LFGJA LFMON CLABS              CUMLM              CINSM              CEINM
    000000000004053794                       1100  3205  0133880102 2010  09                0,000              0,000           0,000              0,000
    000000000004053794                       1100  3205  0133880102 2010  11                0,000              0,000           23,207              0,000
    In MCHB should be entries about 12.2010 this is understood.
    I think that in MCHBH first row should be from 10.2010 ...
    Also how with this period is I mean how I should understand empty rows between existed ?
    There is FM MCHB_EXTEND but with no information about previous period ...

  • Ho to read intern table in update rule?

    Hello experts,
    I have the following start routine:
    PROGRAM UPDATE_ROUTINE.
    $$ begin of global - insert your declaration only below this line  -
    TABLES: /BIC/AZD_ODS_C00.
    DATA: ITEM_TABLE TYPE STANDARD TABLE OF /BIC/AZD_ODS_C00
          WITH HEADER LINE
          WITH NON-UNIQUE DEFAULT KEY INITIAL SIZE 0.
    DATA: gv_flag type c.
    $$ end of global - insert your declaration only before this line   -
    $$ begin of routine - insert your code only below this line        -
    fill the internal tables "MONITOR" and/or "MONITOR_RECNO",
    to make monitor entries
    SELECT * FROM  /BIC/AZD_ODS_C00 INTO TABLE ITEM_TABLE.
    SORT ITEM_TABLE BY /BIC/ZABOOKID ASCENDING.  
           LOOP AT ITEM_TABLE.
            AT NEW /BIC/ZABOOKID.
            GV_FLAG = 'X'.
            ENDAT.
           ENDLOOP.
    if abort is not equal zero, the update process will be canceled
      ABORT = 0.
    How can I read intern table ITEM_TABLE in a update rule?
    And will gv_flag be still available in update rule?
    thanx
    hiza
    Message was edited by:
            Hiza
    Message was edited by:
            Hiza

    Hi,
    I am just giving you a sample code which I had used
    just try to read this will help you
    PROGRAM UPDATE_ROUTINE.
    $$ begin of global - insert your declaration only below this line  -
    TABLES: ...
    DATA:   ...
    $$ end of global - insert your declaration only before this line   -
    The follow definition is new in the BW3.x
    TYPES:
      BEGIN OF DATA_PACKAGE_STRUCTURE.
         INCLUDE STRUCTURE /BIC/CSZRINF001.
    TYPES:
         RECNO   LIKE sy-tabix,
      END OF DATA_PACKAGE_STRUCTURE.
    DATA:
      DATA_PACKAGE TYPE STANDARD TABLE OF DATA_PACKAGE_STRUCTURE
           WITH HEADER LINE
           WITH NON-UNIQUE DEFAULT KEY INITIAL SIZE 0.
    FORM startup
      TABLES   MONITOR STRUCTURE RSMONITOR "user defined monitoring
               MONITOR_RECNO STRUCTURE RSMONITORS " monitoring with record n
               DATA_PACKAGE STRUCTURE DATA_PACKAGE
      USING    RECORD_ALL LIKE SY-TABIX
               SOURCE_SYSTEM LIKE RSUPDSIMULH-LOGSYS
      CHANGING ABORT LIKE SY-SUBRC. "set ABORT <> 0 to cancel update
    $$ begin of routine - insert your code only below this line        -
    fill the internal tables "MONITOR" and/or "MONITOR_RECNO",
    to make monitor entries
    break-point.loop at DATA_PACKAGE.if DATA_PACKAGE-/BIC/ZREMPID GE 5.delete DATA_PACKAGE.endif.endloop.
    if abort is not equal zero, the update process will be canceled
      ABORT = 0.
    $$ end of routine - insert your code only before this line         -
    Regards
    Rahul

  • How to read a table from a word file, using HWPF

    How can I read a table from a Word file using HWPF?
    I looked in API and Table class doesn't seem to have a constructor... very very strange for me. pls help

    the constructor is HWPFDocument = new HWPFDocument(/*file*/)
    Here is the API for that
    http://poi.apache.org/apidocs/org/apache/poi/hwpf/HWPFDocument.html
    Also here is another link to something that might help you more with tables
    http://www.aspose.com/Community/forums/thread/79182.aspx

  • Read internal table with key not equal to

    Hi,
    How can I read internal table with key not equal to some other field.
    Basically in read statement we can read only fields equal to others fields.

    Hi,
    Test the following Code you can Use Loop at for this But not Read Table
    DATA: BEGIN OF it_test OCCURS 10,
      f1(4),
      f2 TYPE i,
      f3(2),
      END OF it_test.
    DATA: it_test2 LIKE STANDARD TABLE OF it_test WITH HEADER LINE.
    it_test-f1 = '1000'.
    it_test-f2 = 10.
    it_test-f3 = 'B'.
    APPEND it_test TO it_test.
    it_test-f1 = '2000'.
    it_test-f2 = 10.
    it_test-f3 = 'A'.
    APPEND it_test TO it_test.
    it_test-f1 = '1000'.
    it_test-f2 = 10.
    it_test-f3 = 'B'.
    APPEND it_test TO it_test.
    it_test-f1 = '1000'.
    it_test-f2 = 10.
    it_test-f3 = 'A'.
    APPEND it_test TO it_test.
    it_test-f1 = '1000'.
    it_test-f2 = 40.
    it_test-f3 = 'A'.
    APPEND it_test TO it_test.
    LOOP AT it_test INTO it_test WHERE f3 NE 'A'.
      WRITE: / it_test-f1, it_test-f2, it_test-f3.
    ENDLOOP.
    Kind Regards,
    Faisal

  • How can I create a universe with the BO repository tables?

    Hi. I need make a universe with the BO repository tables, in order to get user information .
    But, when I try to insert tables in designer, using a new conecction to BO repository. I can't see tables.
    Someone can help me?

    The CMS repository is organized into both physical and virtual tables. Only the CMS can access the virtual tables, therefore you cannot create a universe on the CMS repository. You can access the CMS repository information through the Enterprise SDK.
    https://www.sdn.sap.com/irj/boc/businessobjects-sdklibrary

  • How can one  read a Excel File and Upload into Table using Pl/SQL Code.

    How can one read a Excel File and Upload into Table using Pl/SQL Code.
    1. Excel File is on My PC.
    2. And I want to write a Stored Procedure or Package to do that.
    3. DataBase is on Other Server. Client-Server Environment.
    4. I am Using Toad or PlSql developer tool.

    If you would like to create a package/procedure in order to solve this problem consider using the UTL_FILE in built package, here are a few steps to get you going:
    1. Get your DBA to create directory object in oracle using the following command:
    create directory TEST_DIR as ‘directory_path’;
    Note: This directory is on the server.
    2. Grant read,write on directory directory_object_name to username;
    You can find out the directory_object_name value from dba_directories view if you are using the system user account.
    3. Logon as the user as mentioned above.
    Sample code read plain text file code, you can modify this code to suit your need (i.e. read a csv file)
    function getData(p_filename in varchar2,
    p_filepath in varchar2
    ) RETURN VARCHAR2 is
    input_file utl_file.file_type;
    --declare a buffer to read text data
    input_buffer varchar2(4000);
    begin
    --using the UTL_FILE in built package
    input_file := utl_file.fopen(p_filepath, p_filename, 'R');
    utl_file.get_line(input_file, input_buffer);
    --debug
    --dbms_output.put_line(input_buffer);
    utl_file.fclose(input_file);
    --return data
    return input_buffer;
    end;
    Hope this helps.

  • How can I read a file with ASCII Special Character into a SQL table using SSIS 2008?

    I've tried everything to read this file and am getting no where.   Help how can I read this file and load a SQL table?
    RS - AscII - 30  (Record Separator)
    GS - AscII - 29 (Group Separator)
    Thank you for your assistance - Covi
    Mark Covian

    We can use script component as source/transformation to read the text file and assign the contains to a string. Split the string by chr(30)  i.e RS and finally stored into an array or write to the output buffer of the script component.
    For example on how to use script component refer this link
    http://social.technet.microsoft.com/Forums/en-US/6ff2007d-d246-4107-b77c-624781baab38/how-to-use-substring-in-derived-column-in-ssis?forum=sqlintegrationservices
    Regards, RSingh

  • How can i read local excel file into internal table in webdynpro for abap a

    Could someone tell me how How can i read local excel file into an internal table in webdynpro for abap application.
    thank u for your reply

    Deep,
    File manuplations...............................
    1. At the presentation level:
    ->GUI_UPLOAD
    ->GUI_DOWNLOAD
    ->CL_GUI_FRONTEND
    2. At the application server level:
    ->OPEN DATASET : open a file in the application server for reading or writing.
    ->READ DATASET : used to read from a file on the application server that has been opened for reading
    -> TRANSFER DATASET : writing data to a file.
    -> CLOSE DATASET : closes the file
    -> DELETE DATASET : delete file
    If file is on the local PC,use the function module GUI_UPLOAD to upload it into an internal table by passing the given parameters......
    call function 'GUI_UPLOAD'
    exporting
    filename = p_file
    filetype = 'ASC'
    has_field_separator = '#'
    tables
    data_tab = t_data
    p_file : excel file path.
    t_data : internal table
    <b>reward points if useful.</b>
    regards,
    Vinod Samuel.

  • Is ther a BAPI or RFC that can read any table ?

    I want to read 35 tables in SAP database. Is ther a BAPI or RFC that can read any table ?
    If I use RFC to read these tables, I will write a lot of codes. It may be a large work.

    Check these FM
    RFC_READ_TABLE
    RFC_GET_TABLE_ENTRIES

  • With in the internal table can I READ the same internal table for a record?

    With in the internal table can I READ the same internal table?
    For Suppose
    LOOP AT itab.
    can I do as below
    READ TABLE itab with key bukrs = itab-bukrs
                       belnr = itab-belnr.
    *and I have to compare
    IF itab-shkzg = itab-shkzg_ia.
    ENDIF.
    ENDLOOP.

    Hi,
    Yes..But use work area to differentiate..
    EX.
    DATA: WA LIKE ITAB.
    DATA: WA_READ LIKE ITAB.
    LOOP AT itab <b>INTO WA</b>.
    can I do as below
    READ TABLE itab <b>INTO WA_READ</b>
               with key bukrs = itab-bukrs
    belnr = itab-belnr.
    *and I have to compare
    IF <b>WA</b>-shkzg = <b>WA_READ</b>-shkzg_ia.
    ENDIF.
    ENDLOOP.
    Please reward for helpful answers.
    Thanks,
    Naren

  • Repository tables accessed during deployment

    Hi,
    I would like to generate and execute owb mappings without the control center. I have imported the mdl file, generated the code of the mappings and created the packages in the database. When I try to execute the package, I got this error:
    Error 100: ORA-01403: no data found
    ORA-06512: at "OWB_ADM10G.WB_RT_MAPAUDIT_UTIL", line 1027
    ORA-06512: at "AST_ADM.TESTE_MANUAL", line 2544
    ORA-06512: at line 6
    The error happens in this line: wb_rt_mapaudit_util.premap('TESTE_MANUAL', x_schema, x_audit_id, x_object_id);
    If I deploy the mapping using control center, then I can execute the mapping without errors. I think it happens because the object is not "registered" in the repository tables.
    I would like to do it manually, "registering" the mapping in the repository tables before executing it. I found deploy information at WB_RT_AUDIT_OBJECTS and WB_RT_AUDIT_DEPLOYMENTS, is there any other table or view I should verify?
    How can I simulate a deployment without using control center or omb plus??
    Thanks.
    Luciene

    Hi Luciene,
    The main function works as the main procedure. As far as I know, the only differences are that the function has only one parameter with all owb parameters in the structure WB_RT_MAPAUDIT.WB_RT_NAME_VALUES and returns the status. The main procedure is the recommended entry point by oracle.
    Try the main function with p_job_audit='FALSE'.
    If the mapping is not deployed correctly (via a control center), it is not known in the repository and therefore logging will be difficult.
    Regards,
    Carsten.

Maybe you are looking for

  • Different page formats in the same document

    Is it at all possible to create an InDesign-document with different page formats? Example: Page 1: 210x297 mm, page 2: 190x297 mm.

  • Has anyone had a problem with the calendar being one day off this year

    the birthdays in my contacts list is shown in my calendar.  However, they are showing up on the calendar one day earlier than the actual birthday.  I assume it's because of leap year.  I'm surprised that I haven't heard of a fix for this.  Thoughts?

  • Problem with restore win8 after change hardware. (GT70 0ND-492US)

    Hi everyone! I have de notebook model GT70 0ND-492US  this came with one msata ssd with 128gb and i add other the same model for use super raid, that came with win8, but i make the downgrade to win7.  But now i cant make the recovery to win8 with ori

  • Unable to find business operation

    Hi all: I am using WLPI 1.2.1. I have a workflow whose start node is of "Timed" type i.e it triggers at regular intervals. The first business operation that I perform after I have executed the start node is an operation on the Java Class. This Java c

  • Vpn-framed-ip-address issue

    Hi Guys, I'm using a cisco 5510 ASA at the headoffice to provide the VPN (remote access vpn) connectivity to the branch offices. My local network is - 192.168.30.0 /24 and I've used a part of same segment for the vpn_pool as well ( i.e 192.168.30.152