Error RSAR 146 in the treatment them objects it type R3TR UPDR

Hi People:
I am carrying a project from BW PS to Quality and request accused to Error RSAR 146 in the treatment them objects it type R3TR UPDR
What I must make?
Edited by: Luiz André Sá Freire on Apr 3, 2008 3:39 PM

Hi,
As stated above , there may be some pre requisites for the present objects .
So check weather all the IO are active or not .
Assign points if helpful
Regards
Venkat

Similar Messages

  • Error Message: JBO-25009: Cannot create an object of type:oracle.jbo.domain

    Hi, When im giving a default value to a date column in the attribute settings i get this error when im running my jsp page (bc4j web application):
    Error Message: JBO-25009: Cannot create an object of type:oracle.jbo.domain.Date with value: 31-dic-2099
    How can i fix that? I�ve already trying all possible date formats.
    Thanku

    The default format for Date (oracle.sql.DATE which is the superclass of oracle.jbo.domain.Date) is yyyy-mm-dd.

  • Error Thrown while assinging the value into OBJECT TYPE

    Hi Oracle Experts:
    i was create one Oracle OBJECT, that object contain only one variable, and i created one function which is return the object(system date), but while i complied that procedure i was thrown the error message like ORA-06530: Reference to uninitilized composite .
    can any one tell me how can i use the object variable in the select statement into clause .
    Below i pasted my code.
    CREATE OR REPLACE TYPE str_batch IS OBJECT
    sys_date DATE
    CREATE OR REPLACE FUNCTION F_Ln_Getodperd
    p_s_actype VARCHAR2,
    p_s_acno VARCHAR2,
    p_n_bal NUMBER,
    p_d_prodt DATE
    )RETURN str_batch
    IS
    lstr_od str_batch ;
    BEGIN
    SELECT SYSDATE  INTO lstr_od.sys_date FROM dual; -- Error(Error message shown in below)
    dbms_output.put_line('');
    RETURN lstr_od;
    END;
    Error:
    ORA-06530: Reference to uninitilized composite
    Thanks in advance
    Arun M M

    Hi Mr. Saubhik
    Below i Paste my original source code. Still am facing the same problem while i execute the function. can you please tell me the solution for this.
    OBJECT :
    CREATE OR REPLACE TYPE str_batch IS OBJECT
    batchno NUMBER,
    batchslno NUMBER,
    act_type VARCHAR2(20),
    act_no VARCHAR2(20),
    curr_code VARCHAR2(10),
    amount NUMBER(23,5),
    MOD VARCHAR2(10),
    drcr VARCHAR2(2),
    cheqno VARCHAR2(20),
    cheqdt DATE,
    sts VARCHAR2(4),
    operid NUMBER,
    narr VARCHAR2(300),
    srno VARCHAR2(10),
    rem_type VARCHAR2(10)
    Function :
    CREATE OR REPLACE FUNCTION F_Ln_Getodperd
    p_s_actype IN VARCHAR2,
    p_s_acno IN VARCHAR2,
    p_n_bal IN NUMBER,
    p_d_prodt IN DATE
    )RETURN str_batch
    IS
    lstr_od str_batch ;
    -- Variable Declaration
         v_n_perd     NUMBER;     
         v_n_lnperd     NUMBER;     
         v_n_mon NUMBER;
         v_n_effmon NUMBER;
         v_n_instno NUMBER;
         v_n_odno NUMBER;
         v_n_actual NUMBER(23,5);
         v_n_diff     NUMBER(23,5);
         v_n_inst     NUMBER(23,5);
         v_d_first     DATE;
         v_d_exp DATE;
         v_d_oddt     DATE;
         v_d_lastprod DATE;
         v_s_instmode VARCHAR2(10);
         v_s_inst     VARCHAR2(10);
         v_s_branch VARCHAR2(10);
         v_s_errm VARCHAR2(20000);
    BEGIN
    SELECT F_Get_Brcode INTO v_s_branch FROM dual;
         SELECT pay_c_final,lon_d_expiry, lon_d_lastprod
         INTO     v_s_inst,v_d_exp, v_d_lastprod
         FROM      LOAN_MAST
         WHERE branch_c_code = v_s_branch AND
              act_c_type      = p_s_actype AND
              act_c_no      = p_s_acno;
         IF (p_d_prodt > v_d_exp) THEN
              SELECT CEIL(MONTHS_BETWEEN(p_d_prodt,v_d_exp)) INTO lstr_od.batchslno FROM dual;
              lstr_od.cheqdt := v_d_exp;
              SELECT v_d_lastprod - p_d_prodt INTO lstr_od.batchslno FROM dual;
              --lstr_od.batchslno = DaysAfter(DATE(ldt_lastprod), DATE(adt_prodt))
         ELSE
              IF (v_s_inst = 'N') THEN
                   IF p_d_prodt > v_d_exp THEN
                        SELECT CEIL(MONTHS_BETWEEN(p_d_prodt,v_d_exp)) INTO lstr_od.batchslno FROM dual;
                        lstr_od.cheqdt := v_d_exp;
                   ELSE
                        lstr_od.batchslno := 1;
                   END IF;     
              ELSIF (v_s_inst = 'Y') THEN
                   SELECT first_d_due,lon_c_instperd,lon_n_perd
                   INTO v_d_first,v_s_instmode,v_n_lnperd
                   FROM LOAN_MAST
                   WHERE branch_c_code = v_s_branch AND
                        act_c_type      = p_s_actype AND
                        act_c_no          = p_s_acno;     
              SELECT CEIL(MONTHS_BETWEEN(p_d_prodt,v_d_first)) INTO v_n_mon FROM dual;          
                   IF v_n_mon > 0 THEN
                        SELECT NVL(ln_n_balance,0),NVL(ln_n_instlamt,0),NVL(ln_n_instlno,0)
                        INTO v_n_actual,v_n_inst,v_n_instno
                        FROM LOAN_INST_SCH
                        WHERE act_c_type = p_s_actype AND
                             act_c_no     = p_s_acno AND
                             ln_d_effdate = (SELECT MAX(ln_d_effdate)
                                                           FROM     LOAN_INST_SCH
                                                           WHERE act_c_type = p_s_actype AND
                                                                     act_c_no = p_s_acno AND
                                                                     ln_d_effdate < p_d_prodt);
                        IF (p_n_bal > v_n_actual) THEN
                             IF v_n_inst > 0 THEN
                             lstr_od.batchslno := (p_n_bal - v_n_actual) / v_n_inst;
                             END IF;
                        ELSE
                             lstr_od.batchslno := 1;
                        END IF;
                        IF lstr_od.batchslno = 0 THEN
                        lstr_od.batchslno := 1;
                        END IF;
                        --FOR FULL OD
                        IF (v_n_mon > v_n_lnperd) THEN
                        lstr_od.batchslno := (v_n_mon - v_n_lnperd) + lstr_od.batchslno;
                        END IF;
                        IF v_s_instmode = 'Q' THEN
                        lstr_od.batchslno := lstr_od.batchslno * 3;
                        ELSIF v_s_instmode = 'H' THEN
                        lstr_od.batchslno := lstr_od.batchslno * 6;
                        ELSIF v_s_instmode = 'Y' THEN
                        lstr_od.batchslno := lstr_od.batchslno * 12;
                        END IF;
                        SELECT p_d_prodt - lstr_od.batchslno INTO lstr_od.cheqdt FROM dual;
                        IF v_s_instmode = 'M' THEN
                        v_n_odno := v_n_instno - lstr_od.batchslno; -- TO get OD DATE
                             SELECT ln_d_effdate
                             INTO lstr_od.cheqdt
                             FROM LOAN_INST_SCH
                             WHERE act_c_type = p_s_actype AND
                                  act_c_no     = p_s_acno AND
                                  ln_n_instlno = v_n_odno;
                             IF SQLCODE = -1 THEN
                             lstr_od.batchslno := -1;
                             RETURN lstr_od;
                             END IF;
                        END IF;
                        ELSE
                        lstr_od.batchslno := 1;
                        END IF;                                             
              END IF;                                             
              END IF;     
    RETURN lstr_od;
    EXCEPTION
    WHEN OTHERS THEN
    v_s_errm := SQLERRM;
    dbms_output.put_line(SQLERRM);
    lstr_od.batchslno := -1;
    RETURN lstr_od;
    END;
    /

  • Getting Error while test executing the Web-Dynpro object.

    Hi All,,,,,,,,
    I am new to Web-dynpro and this is my 1st demo application.
    Application simply contains two Views : First used to submit a field which is collected in the second view for display.
    While test runnning the application as: Web Dynpro_Component -> Create -> Web Dynpro Application, I am giving the Plug name as 'DEFAULT'.
    While testng the Web-Dynpro I get the error : Starter Plug DEFAULT does not exist..
    Please suggest what is to be done.
    Thanks in Advance........
    Abhi..........

    Hi Sharma,
                         When u created a Web Dynpro Application , In Properties tab of the application,mention the view that displays,when application starts. Coming to the View ,make sure that In Bound Plugs of that view is having plugname DEFAULT  as  startup plug.

  • Error In IR at the time of activating data types

    I am getting an error at teh time of activating the data type
    Namespace urn:rfctoftpserver:am is not defined in the software component version SAP_ECC_DABUR_POS , 9.5 of sap.com.
    How ever I have saved the name space in Display Software component version!!
    Pls help!

    Hello,
    This problem basically happen due to the following reasons:
    1) when you try to copy the datatype from one Object to other and the namespace is not activated in course of it.
    2) If you have deleted the datatype but it still remains in the Objects list
    Resolution:
    1) Try to change the datatype name and activate
    2) if it still doesn't work have a look at the Software component relation with the datatype namespace relation

  • Javascript error throws the portal theme configuration page

    General Description: Javascript error and jump to the portal theme
    configuration page
    EP: NW04s SP12 including KMC
    We have a problem when we entry to the portal, a javascript
    error happens and immediately jumps to the portal theme configuration
    page. We entry at the portal with a user that have assigned the next groups.
    LR_Administrador LR_Administrador Base de datos UME
    Everyone Built-in Group Everyone Adaptador de grupo integrado
    Authenticated Users Built-in Group Authenticated Users Adaptador de
    grupo integrado
    The group LR_Administrador have assigned this role
    Nombre unívoco:
    pcd:portal_content/kof.com.mx.EP6_FLD_KOF/kof.com.mx.FLD_MX_LR/kof.com.mx.FLD_MX_LR_Roles/kof.com.mx.LR_MX_ROL_Administrador
    Nombre de visualización: kof.com.mx.LR_MX_ROL_Administrador
    Ubicación:
    pcd:portal_content/kof.com.mx.EP6_FLD_KOF/kof.com.mx.FLD_MX_LR/kof.com.mx.FLD_MX_LR_Roles
    Descripción: Libro Rojo
    ID unívoco: ROLE.PCD_ROLE_PERSISTENCE.38yt+Psq/fFQuE3Uxdt52Azfdpg=
    The role LR_MX_ROL_Administrador, have assigned only one page called:
    LR_MX_PAG_Edicion
    This page contains a KM Navigation iview.
    When we entry with this user, the browser show us this javascript error:
    Linea: 107
    Car: 116
    Error: 'children' es nulo o no es un objeto
    Codigo: 0
    URL: http://fedbdvep:50000/irj/portal
    And immediately show the portal theme configuration page.
    We need that the user see the page assigned, but this error shows him
    always the portal theme configuration page. This kind of error happens with
    other roles too. We've found a workaround
    for this situation, doing click on the first level navigation, the
    LR_MX_PAG_Edicion page shows normally.
    Thank for any help.
    Regards
    Jose

    Thanks for your update, we have resolved the issue with this help. Very thankfull.
    regards,
    kishore

  • Captivate 7: "Cannot apply the new theme"

    Hi all,
    I'm trying to apply a new theme on a Captivate 7 project and keep getting the error message "Cannot apply the new theme".  Any suggestions as to how to fix this? It's driving me insane and I really don't want to start my project from scratch.
    Thanks in advance!

    You posted this also on a thread by another user.
    When you reinstalled, did you first delete the Public Layouts folder, not the one in the installation folder of CP? Which OS do you use, I'm on Win7, and this is the path to that folder:
    You can still delete it now, when you restart Captivate it will be refreshed, recreated. Same question about Preferences....
    Lilybiri

  • Cannot initialize the data source object of OLE DB provider "Microsoft.ACE.OLEDB.12.0" for linked server "Excel_Test"

    Here,
    I have created a Linked Server Called Excel_Test And its working fine ( For Retrieving data from excel to Sql Server Database Table ) ...
    I have written a Stored Procedure for inserting data , When i Execute that stored procedure it is inserting data to Table Which i have
    given.
    And the data which is in table should be shown in the application,
    But, Am getting the following error.
    Cannot
    initialize the data source object of OLE DB provider "Microsoft.ACE.OLEDB.12.0" for linked server "Excel_Test".
     Please help me on this.
     Thanks in Advance....

    Even am able to retrieve the data from Sql Server management studio.
    The same retrieved data should be shown in the application (Dashbord).
    Query : Select * from OpenQuery(Excel_Test,'Select * from [Sheet1$]')
    Am getting the output excatly the data in the excel sheet.
    But when am opening that application where the above data should be shown am getting the below error.
    Cannot
    initialize the data source object of OLE DB provider "Microsoft.ACE.OLEDB.12.0" for linked server "Excel_Test".
     Is this error is because of problem in Dot Net Coding or in the linked server.
    Thanks in Advance.....

  • Error 8 when compiling the upload program

    When loading data to the Infocube it gives the following error
    "Error 8 when compiling the upload
    227, message: Data type /BIC/CCFBZ
    found in a ne   "                 
    It doesnot go any further from thr infopackage also..

    Error when compiling the upload program (Message no. RSAR233)

  • Object of type Novell.Zenworks.ActionManager.ActionResult cannot beserialized{}

    What the heck does
    Object of type Novell.Zenworks.ActionManager.ActionResult cannot be
    serialized{}
    mean?
    Seems like app deploy of ZESM 3.5 client is not reporting status to ZCM
    10.1. ZESM client tries to deploy over and over and over and over. Ended
    up having to set bundle requirements so it checks to see if c:\program
    files\novell\zenworks security client\stengine.exe exists so it won't
    install if it's already there. I don't really like this workaround.
    It seems as though, partway thru the ZESM client install, the workstation
    looses its connection to the network (I see the systray icon indicating
    it's broadcasting for a dhcp address.). During this time, Adaptive Agent
    cannot send updates to the zcm server. Eventually the workstation
    reboots (even though I've specified in the bundle AND in the ZESM msi not
    to reboot). When it comes up, ZESM client is installed, but Adaptive
    Agent does not think so, and tries to install again. The occurs for
    eternity, until I reimage the workstation, or go into safe mode and
    disable services, etc... Which sure ain't cool.
    Bundle is set to install MSI once per device. Runs as logged in user.
    Run at user login.
    Thanks in advance for any clues
    paul

    craigalanlewis,
    Comments in-line.
    >The reason I am asking a second time is I suspect you know the answer,
    >but just ignored the question.
    I wasn't actually for sure if I did know what it meant. Sorry I was not
    more open about that.
    My understanding of serialization is simply a method to which move
    objects, either to a file (stream) or to another object or system.
    >What does this error mean. I am getting
    >it when ( I think) I am just trying to deploy a simple windows
    >application bundle in ZCM10.1.1. i.e. I am attempting to launch a
    >windows executable. I say I think so, because the error does not
    >indicate which package/bundle generated the error.
    >
    There might not be anything wrong with the bundle or package now that I
    think about it. Of course we don't want the error message, but in general
    there might not be anything wrong other than this specific situation.
    >So the action manager goes through and one by one attempts to perform
    >the appropriate action (in my case launch) for each object for which a
    >user/device is assigned ? and if any one of those objects in this
    >(serial) string of events fails, then this error is generated ?
    >
    >I am wondering of some of these are as simple as, the user logs out,
    >before the action manager finishes its list. ?
    I am wondering if the bundle is deploying the ZESM client and wants to
    send back a message to the ZCM server about the launch status or
    distribution status. This could be done, I don't know for sure as I am not
    a developer for ZCM, but this could be done with serialization. So the
    bundle is sending a status message back to ZCC, but the ZESM client
    install is killing the network connection at the exact time this is
    happening which is generating the serialization error.
    We might need to do more testing before we can find a fix for this.
    Are you saying that other simple bundles do not have this issue? Example:
    A bundle that launches calc.exe does not have an issue?
    Jared Jennings - Data Technique, Inc.
    Novell Support Forums Sysop
    My Blog and Wiki with Tips, Tricks, and Tutorials
    http://jaredjennings.org

  • Importance of object dependency  type procedure

    Hi Friend,
    Good Morningu2026
    Could any one explain the importance of object dependency  type procedure and its uses with same scenario.
    Thanks in advance,
    Mohan M

    Hi Mohan,
    Procedures are used to infer values for charecterisitcs. These are a type of object dependencies used in VC.
    Procedures can overwrite defualt values or they can set defualt values for charecterisitcs,  several procedures can be assigned to an object (for eg. a BOM item or operation) and define processing sequence.
    These are maintained in Charecteristics, Charecteristic values, configuration profiles, BOM item, Routing operation etc.
    Eg: Processing Sequence:
    A configurable material has characteristics COLOR and PRESSURE. The following procedures are allocated to the configuration profile of the material.
    0010 $SELF.COLOR = u2018GREENu2019 IF PRESSURE >= 10
    0020 $SELF.COLOR = u2018YELLOWu2019 IF PRESSURE >= 50
    0030 $SELF.COLOR = u2018REDu2019 IF PRESSURE >= 100
    The sort sequence ensures that pressure greater than or equal to 100 always sets the color u2018redu2019.
    Inferring Charecteristic Values with procedures:
    Let's assume Configurable material BIKE has the following characteristics:
    CharacteristicS AND THEIR Values                 
    WEIGHT
    FRAME                                          Aluminum                  10 KG
                                                         Steel                           14 KG
    EXTRAS (multiple-value)              Mudguard                   0.5 kg
                                                          Luggage rack             1.0 kG
    Procedure
    1. Create a procedure for the weight of the BIKE, depending on the frame.
    2. This procedure has the following source code:
    $SELF. WEIGHT = 10 if FRAME = u2018Aluminumu2019,
    $SELF. WEIGHT = 14 if FRAME = u2018Steelu2019.
    3. Allocate the procedure to the configuration profile of material BIKE.
    The weight of a bicycle increases if you select additional extras, such as mudguard or luggage
    rack.
    1. You define a procedure with the following source code:
    $SELF.WEIGHT = $SELF.WEIGHT + 0.5 if EXTRAS = 'Mudguard',
    $SELF.WEIGHT = $SELF.WEIGHT + 1 if EXTRAS = 'Luggage rack'
    2. Allocate the procedure to the configuration profile of material BIKE.
    Result
    1. When you configure the bike, the value u2018Aluminumu2019 is selected for characteristic FRAME.
    This triggers the first procedure, which sets the value 10 kg as the WEIGHT.
    2. Characteristic EXTRAS has values u2018Mudguardu2019 and u2018Luggage racku2019. This triggers the
    second procedure, which increases the value of characteristic WEIGHT to 11.5 kg.
    You can also use procedures to count or summurize values of charecterisitics.
    You can use procedure to change the values in master data such as BOM / routing. and also to maintain default values.
    Hope this will be helpful to you. Any queries, Please post.
    Regards,
    Pavan

  • "there was an error opening this document the root object is missing or invalid" adobe reader 9

    I get the following message every time I try an open some of my saved PDF files in Adobe Reader 9
    "there was an error opening this document. the root object is missing or invalid."
    these files are not down loaded from a website, they are files I greated some time back and I have not opened in a while.
    I am runing window XP and this dos not happen with all my PDF files.
    can you help.
    James

    Sounds like the files are corrupt. Time to restore them from a good backup.

  • "An unknown error has occurred in the HsvDataSourceImpl object." - HFM App

    Hi, their
    I need help to solve HFM application’s related issue
    Installed: - Database-Oracle 11g & EPM 11.1.1.3 (HSS, EPMA, HFM, Workspace, Reporting & Analysis)
    Scenario: - I have created total 4 applications, 2 from Workspace (EPMA) classic application creation & 2 from Hyperion Financial Management Desktop. Applications created in Financial Management Desktop where upgraded to EPMA & registered all 4 of them to Shared Services through Workspace.
    Remark: - Now I am able to view all 4 applications under “Application Group” (Financial Management) in Shared Service Console & provided all provisions regarding applications to default “admin” user.
    Issue:-
    From Shared Service Console –gives following error while accessing any one of 4 applications-“Error: Unable to connect to "Stat”, ensure that the application is up and running and the user has the appropriate rights to access this application”
    From Workspace Console – gives following error while accessing any one of 4 application -
    “An unknown error has occurred in the HsvDataSourceImpl object.
    Error Code: -2147214848” –
    Detail -“Trace: Error Reference Number: {574AEE09-1BD2-4755-816A-6CE0C6303CCD};User Name: admin@Native Directory<BR>Num: 0x80041a00;Type: 0;DTime: 7/28/2011 11:56:51 PM;Svr: HFM;File: CHsxServerImpl.cpp;Line: 1880;Ver: 11.1.1.3.0.2413;<BR>Num: 0x80041a00;Type: 0;DTime: 7/28/2011 11:57:01 PM;Svr: HFM;File: CHsxServerImpl.cpp;Line: 2176;Ver: 11.1.1.3.0.2413;<BR>Num: 0x80041a00;Type: 0;DTime: 7/28/2011 11:57:02 PM;Svr: HFM;File: CHsxServerImpl.cpp;Line: 3876;Ver: 11.1.1.3.0.2413;<BR>Num: 0x80041a00;Type: 1;DTime: 7/28/2011 11:57:02 PM;Svr: HFM;File: CHsxServer.cpp;Line: 1481;Ver: 11.1.1.3.0.2413;DStr: OpenApplication: EDENFM;<BR>Num: 0x80041a00;Type: 0;DTime: 7/28/2011 11:57:02 PM;Svr: HFM;File: CHsxClient.cpp;Line: 2373;Ver: 11.1.1.3.0.2413;<BR>Num: 0x80041a00;Type: 0;DTime: 7/28/2011 11:57:03 PM;Svr: HFM;File: CHFMwManageApplications.cpp;Line: 206;Ver: 11.1.1.3.0.2413”
    OR – “communication error”

    Hi,
    How did you resolve this? Please let me know.
    AA

  • Error while activating the business content object

    Hi guru,
    We have installed a new BI system, and hence we need to activate all the business content object as they are available in delivery version.
    So as there was an requirement i tryed to activate the business content object ,that is 0mat (MATNR) material number,
    but once done with the installation when i try to find the object and display it
    that is i select the object 0mat , context menu and say display or change it does not show the complete screen as it appears for a characterstic and gives a error
    "_settings for material number conversion not found"_*
    so please help me out what is the problem
    Thanks

    Thanks Subash Balakrishnan for replying,
    but let me inform you that i already did that as i need to install this object and now the object is showing with green instead of grey,
    Now my problem is that after selecting grouping and collection when i go to infoobject menu under modelling and find out the object 0mat, it shows in green , but as i need to observe the properties of this object like data type , length etc , i select the object 0mat and right click and select display,
    then instead of showing me the object properties screen it gives me the error as mentioned above,
    so as you say it has to be in active versoin , but i can not view the normal screen which appears after creating any object ,
    now i hope my problem is quiet explanatory so please help me.
    Thanks

  • Nternal ERROR: Can not find the ACL containter for object ...

    We are using OWB 10.2.0.3. We tried to introduce two basic roles to prevent user A from accessing certain parts of our project. Somehow (I cannot really say how) we ended up in the error message below whenever we want to modify the security properties of an object.
    Neither in metalink nor in the oracle forums I could find any hint about that error.
    Can anyone help??
    Thanks in advance, Maren
    Internal ERROR: Can not find the ACL containter for object:CMPMap@1ba11bc/id=2023180/owningFCO=2023180/proxyFor=(CMPMapGen@1a4d5c6/id=2023180/stname=CMPBatchMap/pname=LOAD_XML/lname=LOAD_XML/status=CLEAN/committed=true/persistent=true/propsLoaded=false)
    Internal ERROR: Can not find the ACL containter for object:CMPMap@1ba11bc/id=2023180/owningFCO=2023180/proxyFor=(CMPMapGen@1a4d5c6/id=2023180/stname=CMPBatchMap/pname=LOAD_XML/lname=LOAD_XML/status=CLEAN/committed=true/persistent=true/propsLoaded=false)
         at oracle.wh.repos.pdl.security.SecurityPolicyManager.getAccessCharMapOfPrivilegeOwner(SecurityPolicyManager.java:166)
         at oracle.wh.repos.impl.foundation.CMPElement.getAccessCharMapOfPrivilegeOwner(CMPElement.java:2743)
         at oracle.wh.repos.pdl.security.OWBSecurityImpl.hasPrivilege(OWBSecurityImpl.java:820)
         at oracle.wh.repos.pdl.security.OWBSecurityImpl.internalSecurityCheck(OWBSecurityImpl.java:1449)
         at oracle.wh.repos.pdl.security.OWBSecurityImpl.securityCheck(OWBSecurityImpl.java:649)
         at oracle.wh.repos.pdl.security.SecurityModuleImpl.securityCheck(SecurityModuleImpl.java:660)
         at oracle.wh.repos.pdl.security.SecurityModuleImpl.securityCheck(SecurityModuleImpl.java:623)
         at oracle.wh.ui.common.WhSecurityHelper.securityCheck(WhSecurityHelper.java:112)
         at oracle.wh.ui.console.commands.EditObjectCmd.performAction(EditObjectCmd.java:107)
         at oracle.wh.ui.console.commands.TreeMenuHandler$1.run(TreeMenuHandler.java:188)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:189)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:478)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)

    Hi Maren
    Like you I get this error and do not know what steps caused it.In my scenario I have some mappings that give the error and some that do not - the repository user gets the error but the repository owner does not.
    Thinking back over the last number of months (as this project contains 7-8 months od work - we do have exports of the project) I think the ones giving the error are those that perhaps were copied from another to start the coding but I cannot be sure.
    I have read the metalink note mentioned above as well as the the queries posted by Oleg and yourself. The queries posted are slightly different, one has a where clause
    fco.classname = 'CMPACLContainer' (Maren's)
    and the other
    fco.classname='CMPMap' (Oleg's).
    Was this intentional Maren on your behalf for your problem to be fixed?
    We are using 10.2.0.3.33 OWB client and 10.2.0.3.0 OWB repository.
    Thanks
    Edwin

Maybe you are looking for

  • How do I get firefox to open a new window when i click on a link in a webpage ?

    When I click on a link in a webpage in Firefox, generally it opens the new page in the window i am in (though some times it does not). How do I get it to open a new window (or tab) each time I click a link. For example, on www.bbc.co.uk if I click on

  • Troubleshooting problems with printing PDF's from Revit and Cad files

    I am unable to print a readable pdf from AutoCad and Revit.  Any Suggestions?  I do not have problems with Microsoft or Adobe products..Just AutoCad.  I have already spoken with my AutoCad dealer and they concluded it was an Adobe issue.

  • Clock running 10 minutes slow

    I have an iMac, 2.4GHz, Intel Core 2 Duo running 10.5.8. (iMac7,1 id number). I'm told this is related to the CMOS Battery and that I can't change it myself. I've tried all the other options: resetting and setting the time to do the automatic time ch

  • Read the last record in the database table..

    Hi.. I am new to ABAP. So i have one condition to read the address number field in the last record from database table by using the person number where clause field. But the person number is same for some the records. So can any tell me the logic for

  • Problem in activating the environment in COPA operating concern

    Dear Experts, I got the following message when I tried to activate the environment based on client-specific part for my newly created operating concern. << Inconsistency in the dictionary for the structure "KOMK_KEY_U" >> Does anyone know what happen