Object is Lock in Normal View.

I am new in InDesign. For Book & Newspaper I worked QuarkXpress. But Now I want work in InDesign. I make a master page in InDesign, But when I view normal page my design is not editable because everything is locked. I want know why object is locked. And how i edit master pages matter to normal pages?

Hi,
I would add here that the only objects that should appear on your master page(s) are those that never change from page to page. Any content that you need to change for each page doesn't belong on a master.
Regards,
Malcolm

Similar Messages

  • Service template problem - Unable to perform the job because one or more of the selected objects are locked by another job - ID 2606

    Hello,
    I’ve finally managed to deploy my first guest cluster with a shared VHDX using a service template. 
    So, I now want to try and update my service template.  However, whenever I try to do anything with it, in the services section, I receive the error:
    Unable to perform the job because one or more of the selected objects are locked by another job.  To find out which job is locking the object, in the jobs view, group by status, and find the running or cancelling job for the object.  ID 2606
    Well I tried that and there doesn’t seem to be a job locking the object.  Both the cluster nodes appear to be up and running, and I can’t see a problem with it at all.  I tried running the following query in SQL:
    SELECT * FROM [VirtualManagerDB].[dbo].[tbl_VMM_Lock] where TaskID='Task_GUID'
    but all this gives me is an error that says - conversion failed when converting from a character string to uniqueidentifier msg 8169, level 16, State 2, Line 1
    I'm no SQL expert as you can probably tell, but I'd prefer not to deploy another service template in case this issue occurs again.
    Can anyone help?

    No one else had this?

  • Unable to remove a host from VMM - Error (2606) Unable to perform the job because one or more of the selected objects are locked by another job.

    I am unable to remove a host from my Virtual Machine Manager 2012 R2. I receive the following error:
    Error (2606)
    Unable to perform the job because one or more of the selected objects are locked by another job.
    Recommended Action
    To find out which job is locking the object, in the Jobs view, group by Status, and find the running or canceling job for the object. When the job is complete, try again.
    I have already tried running the following command in SQL Server Management Studio
    SELECT * FROM [VirtualManagerDB].[dbo].[tbl_VMM_Lock] where TaskID='Task_GUID'
    I received this error back:
    Msg 8169, Level 16, State 2, Line 1
    Conversion failed when converting from a character string to uniqueidentifier.
    I have also tried rebooting both the host and the Virtual Machine Manager Server.  After rebooting them both, I still receive the same error when trying to remove the host.
    Here are my server details
    VMM Server OS = Windows 2012 Standard
    VMM Version = 2012 R2 3.2.7510.0
    Host OS = Windows 2012 R2 Datacenter
    Host Agent Version = 3.2.75.10.0
    SQL Server OS = Windows 2012 Datacenter
    SQL Version = 2012 SP 1 (11.0.3000.0)

    Hi there,
    How many hosts are you managing with your VMM server?
    The locking job might be the background host refresher job. Did you see any jobs in the jobs view, when the host removal job failed?
    If there is no active jobs in the jobs view when this host removal job fails, can you please turn on the VMM tracing, retry the host removal, and paste back the traces for the failed job (search for exception and paste the whole stack)?
    Thanks!
    Cheng

  • Pasteboard color in Normal View mode

    I know I can change the color of the pasteboard when in preview mode, but does anyone know of a way I can change the color of the pasteboard when in normal view? Or a way to have white-filled objects/text pop-up off the white pasteboard?
    (The white is great, but when working with a lot of reversed copy, dealing with frame edges across multiple text boxes can become confusing and having to switch between color and white text can be tedious)

    This is a total workaround:
    Go to the master page for the document.
    Draw a frame that covers the whole pasteboard.
    Draw a smaller frame that is slightly larger than the pages for the master.
    Select the two frames that you just drew.
    Choose Object > Paths > Make Compound Path.
    Apply a light color to this object. This object will color the pasteboard for all pages that use this master. Duplicate for any other pages.
    Optional steps
    Put this object on its own layer. This allows you to turn this color on or off.
    Set the layer as non-printing. This object shouldn't print because it doesn't touch the pages, but if you're paranoid, set it not to print.
    Save as a snippet that can be dragged onto other documents.

  • Objects are locked in open change requests during support packs update

    Hi All,
    We are applying support packs in the ECC Dev system. Its giving error in phase OBJECTS LOCKED..?  after that i checked with ABAP consultant he given requests which i unlocked the objects from SE03. Still the same error Objects are locked in open change requests is coming.
    If i checked requests which are not released, those are in hundreds which we can not release. How can i find a specific object which i need to unlock or any chance to skip the phase and continue. Because 15 days back i have updated the support packs without any of the issue.
    Please suggest me whether i can find the specific objects to unlock or any other process.
    Thanks & Regards,
    Sreekanth

    sreekanth jd wrote:
    Still the same error Objects are locked in open change requests is coming.
    >
    Hello,
    Normally when we double click on that error message 'objects are locked', system takes us to the transport requests containing those objects in question.
    And did you try SE03 --> Objects in Requests --> Search for Objects in Requests/Tasks ?
    Thanks

  • Using public static object for locking thread shared resources

    Lets Consider the example,
    I have two classes
    1.  Main_Reader -- Read from file
    public  class Main_Reader
         public static object tloc=new object();
           public void Readfile(object mydocpath1)
               lock (tloc)
                   string mydocpath = (string)mydocpath1;
                   StringBuilder sb = new StringBuilder();
                   using (StreamReader sr = new StreamReader(mydocpath))
                       String line;
                       // Read and display lines from the file until the end of 
                       // the file is reached.
                       while ((line = sr.ReadLine()) != null)
                           sb.AppendLine(line);
                   string allines = sb.ToString();
    2. MainWriter -- Write the file
    public  class MainWriter
          public void Writefile(object mydocpath1)
              lock (Main_Reader.tloc)
                  string mydocpath = (string)mydocpath1;
                  // Compose a string that consists of three lines.
                  string lines = "First line.\r\nSecond line.\r\nThird line.";
                  // Write the string to a file.
                  System.IO.StreamWriter file = new System.IO.StreamWriter(mydocpath);
                  file.WriteLine(lines);
                  file.Close();
                  Thread.Sleep(10000);
    In main have instatiated two function with two threads.
     public string mydocpath = "E:\\testlist.txt";  //Here mydocpath is shared resorces
             MainWriter mwr=new MainWriter();
             Writefile wrt=new Writefile();
               private void button1_Click(object sender, EventArgs e)
                Thread t2 = new Thread(new ParameterizedThreadStart(wrt.Writefile));
                t2.Start(mydocpath);
                Thread t1 = new Thread(new ParameterizedThreadStart(mrw.Readfile));
                t1.Start(mydocpath);
                MessageBox.Show("Read kick off----------");
    For making this shared resource thread safe, i am using  a public static field,
      public static object tloc=new object();   in class Main_Reader
    My Question is ,is it a good approach.
    Because i read in one of msdn forums, "avoid locking on a public type"
    Is any other approach for making this thread safe.

    Hi ,
    Since they are easily accessed by all threads, thus you need to apply any kind of synchronization (via locks, signals, mutex, etc).
    Mutex:https://msdn.microsoft.com/en-us/library/system.threading.mutex(v=vs.110).aspx
    Thread signaling basics:http://stackoverflow.com/questions/2696052/thread-signaling-basics
    Best regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • In normal view, half the page disappears off right of screen. in full screen this does not happen. what can be done to correct the screen ratio for normal screen?

    version 5 loaded on windows 7. all went well for a while. one day while using, ratio of normal screen doubled in width; i.e. half the page disappears off the screen to the right (on a wide screen). when full screen mode applied, ratio is fine. it only happens in normal view, which is the usually prefered option. I cannot determine any means within the program to resize the normal screen. nothing else is affected, only mozilla firefox in normal view. not that when program is opened from keyboard the page is correct for a moment, then enlarges the width with 1/2 page dissappearing.

    This issue can be caused by the Babylon Toolbar 1.1.8 extension
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • Does a normal view write to any log i.e archive or undo log

    Hi ,
    can i check if a normal view writes to the archive or undo log ?
    e.g
    select a.* , b.* from A , B
    tks & rdgs

    SELECT statements, including those that are selecting views, aren't making any data changes, so there would be no reason to generate UNDO or REDO log entries. There would be nothing to undo or to redo.
    Justin

  • IPhone 6: i accidentally tapped my iPhone 6 and everything got huge on my screen. now i can't even log onto my phone because everything is so big on the screen. how do i get it back to normal view, so i can log on?

    i accidentally tapped my iPhone 6 and everything got huge on my screen. now i can't even log onto my phone because everything is so big on the screen. how do i get it back to normal view, so i can log on?

    i googled for answer to resolve the zoom problem.  all the anwers just told you to read links but didn't tell how to fix the screem back to normal then it can be able to go to Setting to fix the zoom funciton.  HOWEVER, I accidentally found the solution myself by using a fingers or more
    to draw circles clockwise on the screen....it will reset it normally.  I spent hours trying to go diagonally, compressively still didn't work.

  • How do I get Internet Explorer back to Normal View on my Treo Pro

    Hi
    I have the Treo Pro through Sprint.  I switched by Internet Explore to full screen view.  I used the 5-way button to scroll to the top and to the bottom and the address bar does not show up.  What do I do to get it back to normal view.
    Thanks
    Post relates to: Treo 650 (Sprint)

    tap and hold on the screen then when the menu opens tap on full screen to uncheck the it...
    Message Edited by BOLTRON73 on 05-30-2009 09:58 AM

  • Why are line graphics not showing up in Preview Mode when they show in Normal view mode?

    I am using CS4, I've used InDesign for 4 years. I can not figure out why this is happening...
    From the Tools panel, I am using the line and circle tools. Drawing lines (arrows) and circles on my document, with a stroke weight of 1. The lines are the top item on my page, the last thing I draw. I draw lines that would go over not only other graphics, but over text as well.
    Problem is that they only show up in Normal view, not Preview view. Hence, I don't think they will show up on the final document.
    I've used these tools often, and the lines not showing is a new problem. Can anyone shed some light on why this might be happening?
    Thanks, Louise

    I looked and yes "nonprinting" was ticked in the Attributes panel.  THANK YOU :-) 
    I knew there had to be a simple solution and I was so frustrated it was eluding me.
    Thanks again.

  • Regarding performance of normal view and materialised view.

    I have a task to load records from a remote database (db2) tables to oracle database. I have created a private dblink in oracle to access the tables in DB2 database. Then i have created a normal view for the table say employee in oracle using the dblink and created synonym for normal view. When i do a select using the synonym emp_sy from oracle using a where clause emp_id = 10 the time to fetch the records the records performance is very poor. My question is how to improve the performance. Can i create index on a column emp_id using the synonym i.e create index emp_idx on emp_sy(emp_id). ? If created will it improve the performance. Or should i go for a materialized view.
    thanks,
    Vinodh

    If you want to load the data into your oracle database then a select is not enough. At least for the normal view solution. You must also use an Insert. If you use a materialized view, then whenever the view is refreshed it will select the data from DB2 and insert it into oracle (into the mat. view table).
    As soon as the data is loaded into oracle you can start to put indexes on it etc.

  • Yellow Boxes around type in normal view mode but not in preview?

    There are these yellow boxes that appear around type when in normal view mode, but when in preview mode it disappears.....any idea of what I can do to alleviate this issue? Here is an image of the problem....  

    This link should explain it:
    Field Guide to Composition Highlighting | InDesignSecrets

  • How do you get the display to normal view. Cannot see top menu

    Display seems magnified. How to get it to normal view to be able to see top menus

    Could be because it does not work. It does not work in my Mavericks.
    Joe Bailey wrote:
    I am surprised the article referenced by lllass does not mention the use of the Esc or in some cases Command+Esc to exit full screen mode. It seems a strange ommission of a common technique.

  • When running Firefox with normal view with bookmarks and tabs the display for the tab is jumping up and down about 1/4 of inch - display is ok if used in full screen but when go back to normall havers again. this ony started happening last night after

    Am having problems with display hovering in open tabs. I used Full screen last night when browsing for first time and since then when I go back to normal view the window shakes up and down about 1/4 inch and have to go to full screen for steady view. The toolbars are all steady it is only the web page.
    == This happened ==
    Every time Firefox opened
    == Last night after using full screen.

    Do you have any saved bookmarks on the Bookmarks Toolbar, or that that Toolbar empty and you have it being displayed??
    Try opening View > Toolbars and click on the Bookmark Toolbar item to remove the check-mark, and then see how that affects that "jumping" or vertical oscillation of the UI.
    If that doesn't solve your problem, you can try the Firefox SafeMode and verify that problem doesn't exist in that troubleshooting mode.
    [http://support.mozilla.com/en-US/kb/Safe+Mode]
    If it is gone in SafeMode, see this:
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

Maybe you are looking for