How can we release the locked objects..

Hi,
I have created some objects such as pages and iviews in the portal. If i edited any of the object, then when next time when i access the object, I am hgetting a message as object is locked by admin, you canot edit it. Infact, I have logged in as admin.
How can we release the lock of objects?
Your help and suggestins solicited...
Best regards,
Sudhesh...

Login as the Portal Administrator.
Go to System Administration > Monitoring ->Detailed navigation -> Object Locking
Here you can find all the objects that are in locked state.
Now to unlock,  tick mark the object that you want to work with & click on the "Unlock" Button.

Similar Messages

  • How can we release the lock

    hi
    my sap user has been locked, anybody can sugges me how can i unlock my user
    rajini

    hi,
    you can use this and try "BAPI_USER_UNLOCK".
    hope it helps.
    thanks
    syed

  • How can I drop the java objects from a schema

    hi..good afternoon all...
    How can I drop the java objects from a database schema???
    suppose the credentials are scott/tiger@db1
    Another thing is that...I have to do this from cmd(command prompt) as there is no plsql developer or sqldeveloper installed in the machine.
    plss help...thanks in advance...

    hi...i have already tried all the options..but it is showing the error..
    ora:01435 - user does not exist
    but when i have given the command...
    select object type, object_name, status from user_objects where object_type like'%JAVA%';
    then it is showing that the java_object is present....
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL>
    SQL>
    SQL>
    SQL> set linesize 200
    SQL>
    SQL>
    SQL>
    SQL> select object_type, object_name, status from user_objects where object_type
    like '%JAVA%';
    OBJECT_TYPE OBJECT_NAME
    STATUS
    JAVA CLASS javaclass1
    VALID
    JAVA SOURCE javaclass1
    VALID
    SQL> drop java source javaclass1.java;
    drop java source javaclass1.java
    ERROR at line 1:
    ORA-01435: user does not exist
    SQL>

  • How can I remove the lock screen from my iphone5s

    how can i remove the lock screen from my iphone5s. Please help.

    JModi wrote:
    I want to get home screen as soon as I click the top lock screen button.
    The "lock screen button" locks the phone. It will not take you back to the home screen. Thus the difference in the nomenclature for the "HOME" button and the "LOCK" button...

  • HT5934 How can I disable the lock screen option. I do not want to punch in a multi-digit security code every time I need to use the phone

    How can I disable the lock screen option? I do not want to punch in a multi-digit security code every time I need to use the phone.

    System Preferences - Security & Privacy - unselect the box called Disable automatic login

  • My macbook keeps locking all of my folders and files, even when I try unlocking them myself in Get Info and disabling autolocking in Time Machine, how can I stop the locking as well as unlock my files?

    My macbook keeps locking all of my folders and files, even when I try unlocking them myself in Get Info and disabling autolocking in Time Machine, how can I stop the locking as well as unlock my files?

    Managed to solve this myself. Just went to properties > hidden.

  • Help! How can i remove the lock sign on my ipad3? it can't open, rotate or turn to next page because there is a lock sign at the bottom?

    Help! How can I remove the lock sign on my ipad3? it cannot rotate, turn to next page, or even open when it's on standby mode, even when i press the home button it cant open..thanks

    I'm not sure exactly what you are seeing but .....
    If you see a lock icon in the upper right corner of the screen - then the screen orientation is locked.
    Try the side switch above the volume rocker first and see if that unlocks the screen. If that doesn't do it, double tap the home button and swipe to the right and look for the lock icon all the way to the left.
    If the iPad is not responsive and you cannot slid to unlock the screen - try this.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • How can I get the Doc object from any other object?

    Dear colleagues,
    in FrameScript it is dead-simple to get to the document part of any object, just add .Doc to the variable.
    How can I achieve the same with ExtendScript? I amtired of passing the document object next to AFrames or Pgfs along into subroutines, because those objects already contain the information about their document. But how do I access this?
    Thanks for pointers,
    - Michael
    PS: Almost the same is true for the page an object lives on. With FrameScript we use .Page, with ExtendScript you have to move up the object tree until you reach the UnanchoredFrame.PageFramePage…
    PPS: It would be great to see some convenience properties like .Doc and .Page implemented natively.

    I'll preface this response by admitting this far from an elegant solution, but I did write a function addressing this question, mostly as an exercise.
    If passed an object with an InTextFrame property (Pgf, AFrame, Cell, Fn) that resides in an open document, the function will return the Doc object. Otherwise, it returns undefined.
    function getParentDoc(testObj) {
        //Get object for current page
        try { var curPage = testObj.InTextFrame.FrameParent.PageFramePage; }
        catch(er) {return;}
        //Step backwards to first page in document
        var prevPage = curPage.PagePrev;
        while (prevPage.ObjectValid())
            curPage = prevPage;
            prevPage = prevPage.PagePrev;
        //Compare with first pages of open documents
        var testDoc = app.FirstOpenDoc;
        while (testDoc.ObjectValid())
            if (curPage.id==testDoc.FirstBodyPageInDoc.id) return testDoc;
            testDoc = testDoc.NextOpenDocInSession;    
        return;
    To your PPS: Rather than seeing the native framework grow bloated to address additional features, I would love to see Adobe and other developers publish libraries of useful functions and class extensions.

  • How can I get the underlying object from the ObjectReference

    Dear friends,
    I think this question has been asked a couple of times. But, I am still wondering if anybody has found an answer to it. Maybe this is some common need ...
    I would like to get the underlying object for which the ObjectReference is
    a mirror For example, I have a class Customer in my application, and I can get an ObjectReference through JDI during runtime. But how can I get the target VM's object which is a real instance of Customer, by which I can invoke methods defined in Customer?
    Thank you so much for any input!
    SunnyDay

    I'll preface this response by admitting this far from an elegant solution, but I did write a function addressing this question, mostly as an exercise.
    If passed an object with an InTextFrame property (Pgf, AFrame, Cell, Fn) that resides in an open document, the function will return the Doc object. Otherwise, it returns undefined.
    function getParentDoc(testObj) {
        //Get object for current page
        try { var curPage = testObj.InTextFrame.FrameParent.PageFramePage; }
        catch(er) {return;}
        //Step backwards to first page in document
        var prevPage = curPage.PagePrev;
        while (prevPage.ObjectValid())
            curPage = prevPage;
            prevPage = prevPage.PagePrev;
        //Compare with first pages of open documents
        var testDoc = app.FirstOpenDoc;
        while (testDoc.ObjectValid())
            if (curPage.id==testDoc.FirstBodyPageInDoc.id) return testDoc;
            testDoc = testDoc.NextOpenDocInSession;    
        return;
    To your PPS: Rather than seeing the native framework grow bloated to address additional features, I would love to see Adobe and other developers publish libraries of useful functions and class extensions.

  • On the iPad Air, how can I get the lock screen to stay on longer like it was with an iPad 2?

    Since getting an iPad Air the lock screen does not stay on but for a few seconds after startup, how can I adjust the time of it? It used to stay on with my iPad2.Thanks

    I guess I never noticed that the swipe to open doesn't stay on very long.  But, I've not found this to be an issue as I usally swipe the moment I have the option to swipe.  It's been so long since I had a 2nd generation iPad that I honestly can't remember if it stayed on longer.  It's still not a problem for me.  There is no setting which will let you keep the swipe to open on longer, so it would reasonable for Apple to say there is nothing wrong with your iPad

  • How can I set the Lock Model and data structure ?

    Hi ,
    I just have two questions about JE:
    1) Is there some method for me to set the lock mode level , such as record lock, page lock and database lock in JE?
    2) I learned that there are Btree and Hash,etc , data structures , How can I set the data structure when using JE ?
    Thanks in advance !
    Chris

    I think you're confusing our DB (C-based product) with JE. JE does not have lock mode levels, page locks (it does not have pages), or database locks. JE only has the BTREE method, it does not have the HASH method. For JE, please be sure to reference the JE doc page:
    http://www.oracle.com/technology/documentation/berkeley-db/je/index.html
    --mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How can i refresh the session object

    Hello..
    I am jst learning jsp... i hav a problem plz help me...
    I am using <jsp:useBean id="util" class="myUtilClass" scope="session" />
    I hav modified the object content...
    how can i refresh the object...
    ie...i want to access the modified data in the session object...

    You don't do that. It should already be reflected.
    Unless you modified another instance of it. If this is the case, then fix your code logic accordingly that it modifies the right object instance.

  • How can I use the same object in the different jsp files?

    I am doing a project. I have finished my jave source files and compiled them successfully. And I also wrote a main method to test my classes, they also worked well. Now I am trying to use my jave code in the jsp files. But I meet a problem, in my method of java source file, I can generate a object of a class, and use it in the whole main method. But in the different jsp files, how can I do same thing?
    For example, in the .java file,
    Vector vl = new Vector();
    While ...{
    vl.add(...)
    In each of my .jsp file I want to do one loop of the above, meanwhile I want to do that in the same object.
    I hope you can understand what I mean. Really need your help!

    put your object into a session and you can the use it in all the jsps as long as the session is valid. Or you could create a static variable in the class that only creates one instance off an object and then create a static method to return this object.

  • How can I change the PDAnnot object font?

    Hello All,
    How can I set/change the font for a PDAnnot object?
    Thanks for any help,
    Bob

    I think this question is about the OLE interface, not plug-ins? If so, you cannot. It's a very old interface.
    Maybe it can be done with JavaScript, I don't know the API well enough. But note that the great majority of annotation types do not accept a font; you need to understand exactly what kind of annotation you need (probably with reference to the PDF specification).
    Sounds like a job for a plug-in, but working with custom fonts and annotations even there could turn out to be pretty challenging.

  • How can I set the lock timeout ???

    I got to a point where I needed to increase my initrans since I got an ITL lock ...
    I dont know why the database did not return an exception after many hours....
    is there any parameter I can set so in case of LOCK it will throw an exception ?
    I know I can use "select for update..nowait" or "select for update wait n"...
    but that does not help me with UPDATE statements or such ITL deadlocks...
    (using 9.2.0.4)
    Thanx

    Hello nirbasson,
    I got to a point where I needed to increase my initrans since I got an ITL lock ...How did you analyze the problem or how did you reproduce it.... because there must be many updates to the same block to get this problem (because of the ITL slots itself and the fill up of the block with the ITL slots if needed)
    but that does not help me with UPDATE statements or such ITL deadlocks...If you got an ITL deadlock ... oracle will determine this problem and write a trace file and put an ORA-error into the alert.log ... after that the "problem" will be eliminated by oracle.
    If you do an update statement... and another session wants to update the same block.. no.. there is no timeout... besides the 2 sessions are blocking them self. Then a deadlock is triggered and the issue is solved by oracle.
    lets say I am doing an update to same record from 2 different sqlplus sessions :
    update X set Y=5;Ok but this has nothing to do with an ITL Wait.
    Regards
    Stefan

Maybe you are looking for

  • How many elements can I insert into a form?

    When creating my form I received a notice that I had reached the maximum number of elements for my form!  I was near the end stages of my design, Ouch!  What can I do?  Is it possible to cut and past sections of my form to create a new form(s) and li

  • SQL server configuration in SUP

    Hi Friends, I have an requirement, Configure Microsoft SQL server in SUP. I downloaded sqljdbc4.jar file from website and pasted to "C:\Sybase\UnwiredPlatform\Unwired_WorkSpace\Eclipse\sybase_workspace\mobile\eclipse\plugins\com.sybase.uep.com.sqlser

  • I need help regarding moving my music from pc to PalmPre+ and my amazon account. . .

    Recently I had to have my Palm Pre+ replaced w/warranty. I'd backed up my stuff onto my pc. When I tried to drag & drop my music to my replacement palm, instead of it saying, 'copy to music', like it usually says, it had a circle with a line through

  • I am unable to back up to external drive since loading lion

    Since installing Lion my Western Digital external drive refuses to cooperate with Time Machine - any thoughts?

  • Master table in SU01 TRANSACTION

    hi in su01 transaction, in display mode u can see profile and role tabs. in that tabs when u press F4 one can see list of profile and roles. my question is what the master tables sap is using to show list of profile and list of roles when i press F4