Accessing view ALL_WM_LOCKED_TABLES

We have a problem executing selects against the Workspace Manager view ALL_WM_LOCKED_TABLES. In all cases, the error message "Table or view does not exist" is returned. Using Enterprise Manager, we checked and confirmed that the status of the view is valid. A re-compilation of the view does not have any affect.
Activating SQL_TRACE and looking at the returned log file, it appears that the request against the view ALL_WM_LOCKED_TABLES triggers other select-statements against tables listed in the table wmsys.wm$modified_tables. This table contains a number of references towards tables that do no longer exist and hence cause the error mentioned above when the select-statement is executed.
At this point, we would like to know how this situation can be cleaned-up and how it can be prevented from happening again. We are reluctant to just delete the entries from the wmsys.wm$modified_tables because we don't know if there are other cross-references to be considered.

Hi,
10.1.0.6 is the latest version for a 10.1 database. However, the 10.1.0.5 version that you are using has the fix that I was referring to. So, it may be a different issue than the one that was fixed. So, from the trace of the all_wm_locked_tables view, you will need to call disableversioning on any tables for which the referenced view no longer exists.
If when running disableversioning, an error occurs, you can set the ignore_last_error parameter to true to allow disableversioning to continue. This may have to be done a number of times depending on how many of the views were already dropped.
If this does not solve the problem, then I would recommend to file a TAR on this issue.
Regards,
Ben

Similar Messages

  • Creating a photo book, How can I access / view all the versions?

    I used 247 versions to create a book in Aperture 3.5.1. I am reviewing the book. Only 93 versions are now displayed! I cannot access/view the other ones. Up to friday it was fine. What happens? How do I solve this issue?

    You can not - they are soreted by date
    --  the only solution I have seen is to put them in an album sorted the way you and and then use the batch cnage command to redate them with a small invrement between so a data sort matches your desired sort  --  I personally do not want to redate a bunch of my photos nor do i want  to have to go through and un-re- date a bunch
    suggest a change to Apple - iPhoto menu ==> provide iPhoto feedback
    LN

  • Log access (viewing / display) to sensitive infotypes, e.g. IT0008

    Hi all,
    I am currently working in a customer project, the requirements are to log access (viewing / display) to sensitive infotypes, e.g. IT0008 when accessing through e.g. transaction PA20.
    Knowing Audit Trail and also logging functionality on a db table level which are only logging changes to data and/or deleting data (as far as I know...can it also be configured to log display/view access as well??).
    For this customer project I am looking for a solution to log simple access like viewing/display of e.g. IT0008 through PA20 with time, userid and terminal. Is this supported with SAP HCM? How can this be achieved?
    I know probably the simplest solution would be just to restrict user privileges properly. But the client definitely wants this logging feature (log viewing/display access to e.g. IT0008).
    Thx for your help, Stefan

    Dear Manoj,
    thanks for your answer. Indeed increasing db table size could be a problem.
    I am still wondering if there is not a standard SAP solution for this problem. Is this not a common customer request having
    infotype access (display access) being logged?
    I understand that for revision purpose it is necessary to have a change log on infotype data however in my understanding there must be the need on customer side as well to have logging for display access on sensitive infotypes to prevent misuse of data or at least set up a higher hurdle for prevention.
    Any more insights on this?
    Thanks again, Stefan

  • Error 500 when accessing View rights option in CMC XI3.1

    My customer has installed bo XI3.1 with web sphére serated in an other server, when he want to access view rights in CMC section, he received "error 500 :" he is using QWAS like a web server in a separete server without any fire wall.
    Can you help me please.

    Hi,
    This behaviour has been documented here:
    https://service.sap.com/sap/support/notes/1508359
    Regards,
    Julian

  • Is there any way to send some one a password protected pdf that only they can access/view with a password?

    Is there any way to send some one a password protected pdf that only they can access/view with a password?
    Thanks!

    Hi wonderingtoday,
    Yes, you can! If you have Acrobat, you can assign an "Open Password" to the PDF, so that only people who have that password can open the PDF. If you don't have Acrobat, you can try it for free for 30 days. For more information, see www.adobe.com/products/acrobat.html.
    Best,
    Sara

  • Unaable to access view layout in NWDS tool

    Good afternoon all,
    when i'm trying to access view layout in NWDS it is displaying the layout for a second and then  it is redirecting to some other screen because of this im unaable to access the layout of the viewand unable to place UI elements on it in designing mode.
    Can anyone suggest what might be the problem and what is the remedy to it?
    The version we are using is netweaver 7.1 CE.
    Thanks and regards
    sam
    Edited by: sumankumar kurimilla on Jan 11, 2008 11:37 AM
    Edited by: sumankumar kurimilla on Jan 11, 2008 11:50 AM

    Hi Venkat,
    Did you get any solution for this?
    Regards,
    Sreeram

  • How to access View Context thr' View Controller; and not thr' View....

    Hi
    As we know that we can access Component Context Attribute by Component Controller in view as:
    wdThis.wdGet<Component_Name>Controller().wdGetContext().currentContextElement().
    get<Component_Context_Attribute>
    whereas wdThis.wdGet<Component_Name>Controller() is the Component Controller.
    So, in the same way, I was just wondering do we have any way to access the View Context through View Controller.
    Generally for view context, we use wdContext which is (= wdThis.wdGetContext() ) means accessing view context thr' view.
    i want to access View context thr' View Controller which is wdThis.wdGetAPI().
    Thanks....

    Hi
    Get the detailed description and understanding of these webdynpro jorgens from [here|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0ba2c45-0518-2a10-73be-9b785e10aef1]
    Best Regards
    Satish Kumar

  • Accessing view object class (impl) method from bean (or vice versa)

    Halo everyone, I am using JDeveloper 11.1.2.1.0
    I have a UsersViewImpl class with a method which refresh the user table like below.
    public void resetEmployeeSearch() {
    removeApplyViewCriteriaName("viewCriteria");
    executeQuery();
    and I have a UserBean class with a method which reset the search fields values like below.
    public void resetInput(ActionEvent actionEvent) {
    ........RichInputText = input ...
    input.setValue("");
    AdfFacesContext.getCurrentInstance().addPartialTarget(searchForm);
    I would like to implement it in such a way that, once I press a button, both methods will be called.
    I have tried to call from bean method using UsersViewImpl vs = new UsersViewImpl ..... which is wrong and wont work.
    I have read about doing something like ViewObject vo = am.findViewObject("DeptView1") but I duno how to use it because I cant have a proper example.
    Any suggestion on accessing view object class (impl) method from bean (or vice versa)?
    Or is there any way to combine both method in the same class ?
    Thank you :(

    User, if you get class not found exceptions you need to tell us which classes you can't find. The JSFUtils and ADFUtils classes needing some other libraries which should already be part of your Fusion Web Application template (which your adf application should be based on). If you did not use this application template, you may have to add some libraries yourself.
    What is the diff of using the ADFUtils and OperationBinding way?
    The ADFUtils can get you access to the application module which you then use to call exposed methods on. The disadvantage of doing this is that you have to implement your own exception framework which then handles exceptions thrown by the application module. An other thing is that if you e.g. alter a VO which you use on the page this changes are not seen on the page until you refresh the page. The binding layer does not know about these changes so the iterators (which are used on the page to show the data) are not refreshed and so you don't see the changes.
    In general you should avoid using the application modul in a managed bean method and always use the binding layer (OperationBinding) to call methods. This ensures that exceptions are all handled the same way and that changes to the data model are reflected in the GUI.
    Timo

  • Can't access "View Account" in Game Center on IPhone 4s?

    (I have an IPhone 4s, version number 6.1.3.)
    I wanted to go into the Game Center and change my username, but whenever I tap "View Account" it just loads a green screen and before I can even do anything, it just "saves", and I never get to chance to see my account. I've reset my phone and logged out of the Game Center multiple times, but no luck. Everytime I try to access this, it just gives me this screen and just "saves" in a second, even if I haven't tap anything. Please help!

    alright here's the best shot i have.
    -hold down your home and sleep buttons until your screen fades to black, and keep holding them. now the apple logo will show up and you can let go.
    -go to itunes app and ensure you are logged in from there
    -go back to the game center app, and go to whatever the first tab is on the bottom (achievements, friends, games etc) and scroll to the bottom of the tab
    -click on your Apple ID, and hit View Account
    that should work

  • Getting error while accessing view

    Getting following error message while trying to access a view (Database Version 9.2.0.4) through JDeveloper preview version 10.1.3. Accessing the same view through different client tool (DBDevPartner) is occurring without error.
    The error its throwing are:
    ORA-01874: time zone hours must be between -12 and 13
    ORA-02063: preceding line from CDFTS_SYSADM_DBL
    Any insight?

    Hi,
    According to the documentation for error ORA-01874,it says:
    Cause: The time zone hour specified was not in the valid range.
    Action: Specify a time zone hour between -12 and 13.
    How was this View initially created?
    Can you access this View using SQL*Plus?
    Can you post the SQL for the View?
    Regards,
    Lisa Sherriff
    JDev QA

  • Accessing view area dialog box controls

    I'm really new to DIAdem, and I have been having trouble finding documentation for the various methods and objects that are used when writing scripts. I am trying to access a button on a dialog box in the view area. Here is what I have tried so far:
    View.Sheets("Sheet 1").Areas("Dlg1").DisplayObj.Dialog.Controls("FetchData").OnClickCode.Code = ...Some code...
    The problem seems to be with the Areas(). Apparently it doesn't like "Dlg1", but I'm not sure what parameter I'm supposed to use.
    How do I figure out what to use instead of "Dlg1"?

    Hi Benjamin,
    In DIAdem 2012 you have to programmatically review and/or edit VIEW area names, something like this:
    Set Sheet = View.ActiveSheet
    FOR Each Area In Sheet.Areas
    i = i + 1
    Msg = Msg & "Index = " & i & vbTAB & "; " & "Name = """ & Area.Name & """"
    NEXT ' Area
    MsgBox Msg
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments

  • Access Views through Public Synonyms

    Hi Friends,
    I have query need to clear. My current application is running on a schema *(s1)* associated with workspace *(w1)*. Now i have made one more schema *(s2)* in the same workspace *(w1)* where i have to create new tables.
    The thing is i want to use few tables column of s1 on s2. What will be the best practice for this. I have made views of columns of s1 schema and now i am thinking to create public synonym in s2 schema to access those views of s1 schema. Just want to confirm any changes or updates made on forms or report made on synonym of s2 will reflect in the base table (which is table of s1). Want to clear the concept of synonym through this. I am sure it will not update the table of s1 schema because i have made synonym of that in my s2 schema and for all page creation i am using objects of s2 not objects of s1.
    Would like to hear from you experts on this. If you have some other better soln for this, do suggest me. All my intension is to not update the tables of s1, just to use the required columns of s1 schema objects and use it in s2 schema
    Regards
    Edited by: User_Apex on Jul 7, 2010 2:21 AM
    Edited by: User_Apex on Jul 7, 2010 2:28 AM

    Hi,
    A synonym just helps you to avoid using the schema name before the object name. If you want to use some columns from tables in s1 just do the following:
    1. Create the views
    2. Create a role for that privilege (for example: select_s1_role), grant select to this role over the views and assign it to s2.
    3. Create the synonym in s2 to s1 views (just to avoid put s1. before the view name).
    For the steps above is required that s1 and s2 have the proper system privileges.
    Kind regards,

  • How to access Views of ERP with Netweaver BPM?

    Hello,
    i want to create an example-application with Netweaver BPM and Visual Composer.
    For this, more employees should share the creation of a new Material in an ERP Backend.
    Every emplyoee should enter data of a different View of MM01 ! (like Basic Data, Sales..., Purchasing., ..)
    I thought about using the Service "Create Material Basic Data" but there are only little options for the data you can enter
    (only InternalID, Base Units, Description...).
    So my question is, how can i get access to the usual views of MM01 with Netweaver BPM and Visual Composer?
    Or how can i enter more Materialdata with Webservices?
    Thanks for your help,
    Oliver

    What you could also do is make use of MDM Webdynpro Components since your intention is probably to update master data at the end you can use MDM Webynpro Components and then use them a webdynpro application. Use the webdynpro component in the BPM Process in return or use the option given in the previous reply as well.
    http://help.sap.com/saphelp_nwmdm71/helpdata/en/4a/387eb4a7ea1ca2e10000000a42189c/content.htm
    Link to MDM WD Comps

  • MS Access view of objects

    How can I limit the objects that appear in
    an ODBC logon to Oracle8i to import tables to Access? Now it seems that
    all_objects is what is displayed or combo of all_synonyms, all_tables, all_views. I would like to limit the view just to what the user
    actually owns. Is there a way to do this thru a profile or some other way? I looked at fine grained security, but looked like it
    would have to go against Public items, not sure if that would work.
    There also appears to be a security issue here due to automatically displaying all of the public stuff + java directories.

    txtHeadLine is a local variable created within a function and
    for the
    lifetime of that function pointing towards the TextField
    created in that
    function.
    If you promote it to a class member (like articleHeight etc.)
    it should
    work. It would have to be a public variable though.
    Other option is to create a method accepting a string as
    parameter and
    placing it in the textField. Then the reference to the
    textField could
    be private.
    There are more ways to do it, but the last would be mine
    probably.
    Bortiquai wrote:
    > this is the code from the file Article.as:
    > package {
    >
    > import flash.display.Sprite;
    > import flash.display.Shape;
    > import flash.text.TextField;
    > import flash.text.TextFormat;
    >
    > public class Article extends Sprite {
    > private var articleHeight:Number=196;
    > private var articleWidth:Number=436;
    > private var backColor:Number=0x333333;
    > private var txtFmt:TextFormat = new TextFormat();
    > private var txtOverFmt:TextFormat = new TextFormat();
    >
    > public function drawBack():void {
    > this.graphics.clear();
    > this.graphics.lineStyle(0,0);
    > this.graphics.beginFill(backColor);
    > this.graphics.drawRect(0, 0, articleWidth,
    articleHeight);
    > this.graphics.endFill();
    > }
    >
    > public function Article():void {
    >
    > var txtHeadLine:TextField = new TextField();
    >
    > this.txtFmt.color=0xFFFFFF;
    > this.txtFmt.font='Arial';
    > this.txtFmt.size=11;
    > this.txtFmt.bold=false;
    >
    > txtHeadLine.height=22;
    > txtHeadLine.width=275;
    > txtHeadLine.x=15;
    > txtHeadLine.y=14;
    > txtHeadLine.setTextFormat(txtFmt);
    > txtHeadLine.htmlText='This is the original text';
    >
    > this.addChild(txtHeadLine);
    >
    > drawBack();
    > }
    > }
    > }
    >
    > int the frame of the main movie, i have:
    >
    > var artItem:Article = new Article();
    > mc_articleView.addChild(artItem);
    > artItem.txtHeadLine.htmlText = 'Now, this is the edited
    text';
    >
    > When I run the movie, i get:
    > 1119: Access of possibly undefined property txtHeadLine
    through a reference
    > with static type Article.
    >
    >

  • Accessing Views via ODBC from MSAccess

    Hello,
    This started as a simple thing, allow somebody to access to a database on a SQL 2005 server so they could get to it from MSAccess. I have created a login (Windows Authentication) so they can see the database and gave them "public" and "datareader" abilities.
    The user then informed me that while they could see the views they could not see the data. Not being a DBA (sorry) I added "public" to the view's permissions (under properties) and granted it "Select" access and nothing else. After I completed this the user could not even see the views to pick them (via the ODBC link from MSAccess) and when I try to remove "public" from the permissions it dissapears, but when I reopen the permission "public" is back.
    I then find out there is no data in the views and so the user would not have been able view anything anyway.
    So what I want to do is remove "public" from the views permissions, is this possible?
    Thanks for any help,
    Tyrone

    Is anybody still curious about this?
    Thanks!
    Ed Price, Power BI & SQL Server Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

Maybe you are looking for

  • Sub-Contracting PO

    In Subcontracting PO for a Material with Serial Number sent to Vendor, (1) Do we have to maintain MRP2 View in Material Master as 30 under special Procurement Key. If we donot maintain, what would be the consequences. Scenario : We issue the Material

  • My iMac freezes and makes loud bleeps!

    Hello Having major problems - my iMac keeps freezing and plays beeps (3 at a time) so I have to force shut down. Is it anything to do with Lion? I installed it recently. It's an iMac 3.6 core i5 with 8gb or ram, around 8 months old. Hope you can help

  • Spotlight does't find everything in Mail.app

    Morning. If I want to find something in Mail.app and type the searches item into the search field of Mail.app, not all items containing the string will be found. But if I search for the same item with the system wide Spotlight search I find it. What

  • Question about Ipad authorizations

    I am having trouble with my Ipad on a new hard drive, and am trying to troubleshoot it.  My question is this: Suppose I have 4 authorizations on my Ipad already (I know the limit is 5  and then I have to wipe them all out).  If I deauthorize 1 of tho

  • Cant get bootcamp to recognise thunderbolt to vga

    cant get bootcamp to recognise thunderbolt to vga