Page-level versioning/publishing

Is there a way to version and publish content at the page level? I'm able to version and publish content at the item level, but I don't see any way to do this at the page level.
Any help would be much appreciated.
- Justin

hi justin,
versioning is only possible at item level, not at page level.
regards,
christian

Similar Messages

  • How to programmatically identify that page is being published first time ?

    Hello,
    I need to check whether page has been published first time.
    using SPListitem.Level can check whether page is published/draft/checkout, however how can I check whether its being published first time ?
    Would you please let me know if there is any way ?
    Thanks and Regards,
    Dipti
    Dipti Chhatrapati

    hi
    try _listItem.File.Versions.Count instead. If it will still throw exception, then instead of retrieving count try to iterate over _listItem.File.Versions collection and check latest version inside loop body (see e.g. here:
    How to retrieve File version from SPListItem).
    Blog - http://sadomovalex.blogspot.com
    Dynamic CAML queries via C# - http://camlex.codeplex.com

  • Page level help text question

    APEX - 4
    DB version - 10g
    Web server architecture - OHS
    Browser - IE8
    Theme - 5
    I know how to set and display help text for a page item, and I see there is the option to add help text at the page level, but how does the user accessing the screen see the page level help text?
    I was thinking it might be a good way to add user help guide information at the page level.
    Thank you for any assistance.

    I know how to set and display help text for a page item, and I see there is the option to add help text at the page level, but how does the user accessing the screen see the page level help text?Using a Help page and region accessed via a help link (e.g. a navigation bar entry), or using the <tt>apex_application.help</tt> API method in a PL/SQL Dynamic Content region.
    This is covered in the APEX documentation which should be consulted before posting a question here.

  • Capturing the Page Level Navigation.

    Hi Experts
    The Requirement is like to capture the navigation at the Page level. The log file should contain the details about the user clicks.. for e.g, when a user is accessing a particular service in the portal, all the respective clicks which the user made to activate the desired service should get stored in the log file.
    Regards
    KRis

    Hi Michael,
    Thank you for the reply. IF you can let me know how, in portal or J2EE visual admin, we can capture the page name, then I think I can take it further from there.. Now what's happening is like the logs are been captured for at iView level. How do I capture at the page level.
    Portal version is EP 6.0 SP 14.
    These logs are getting generated in Appache Reverse proxy.
    Regards
    Kris

  • Pages 5.5.1: When opening a document created with Pages '09 (Version 4.0) with Pages 5.5.1 the page header and the page footer are deleted. How can this be prevented? Or is this a bug in Pages 5.5.1?

    Pages 5.5.1: When opening a document created with Pages '09 (Version 4.0) with Pages 5.5.1 the page header and the page footer are deleted. How can this be prevented? Or is this a bug in Pages 5.5.1?

    Same problem here (no graphics in header or footer) and the problem has been reported months ago. It is another bug/feature lost when Apple moves from 09 to the iCloud-compatible versions.  Complain to Apple, you may have better chance than me and they may finally listen to their users....

  • Extra Blank page in XML Publisher report

    Hi,
    I am getting extra blank page in XML publisher report.
    The RTF has two pages and each page has one table.These two tables will be populated with data based on some if condtion.
    eg:
    In RTF:
    for each Header
    if PMA='Y' THEN
    Table1 data in 1st page
    end if;
    pageBreak
    IF OTC='Y' then
    Table2 data in 2nd page
    END IF;
    end for each
    And also another issue is: The data is starting from the same page instead of new page.
    Please help me in solving the issue.
    Thanks,
    Srinivas

    Hi,
    Thanks for reply.
    I am using <xsl:attribute name="break-before">page</xsl:attribute> page break.
    I tried split-by-page-break also,but still its not resolved.
    Today I have noticed one thing: When generating this report locally,then there is no blank page coming.But when generating from APPS then blank page is coming.
    Please help me to resolve this issue.
    Thanks,
    Srinivas

  • Pages '09 version 4.2 (1008) won't update.

    I have Pages '09 version 4.2 (1008) that I bought as an add-on through the Apple Store on my iMac, not the App Store. App store has update but won't work, bc there is no record of purchase. How do I update apps not bought on App Store? If it was not bought on App Store, why are there updates available THROUGH App Store? I tried Software Update and pulls up App Store.
    Also had a problem with pre-installed iPhoto and iMovie not updating for the same reason, so Apple support gave me download codes to "purchase" it through App Store. Really dumb. Why do they have the option to add on applications like Pages when you order a computer online, if it can't be updated? I know iMovie and iPhoto come stock, so all the more reason it should just work.

    What do you mean it can't be updated? What is not happening. I bought the iWork dvd and now it will update through the Mac AppStore.

  • Page level total in a mulipage matrix report

    hi!
    I am facing a problem in marix reports because a very late change in customer requirement.he wants a page total at the end of every page in the report ,because these reports are matrix style,they involve cross product.i can get the grand total at the end of the report because the summary column works well at report level,but when i try to reset it at page level,at times it shows blank or generates an error that matrix report fetches everthing at report level and cannot generate results at page level.but now how do i get these page totals without changing these matrix reports.Plz reply ASAP
    Regards
    simer
    The Oracle Reports Team
    http://otn.oracle.com/

    Hi I was browsing through the forum, and found no reply to your question, if you still interested about the solution I can send you my RDF file where I did the page level total in matrix report as well as brought
    forward in next page, this is something very hard for me to explain in word, so if you can give me your email address I can send you the RDF file.
    Thanks & Regards
    Eamon

  • Page level validation to prevent duplicate data entry into the database

    Hello,
    Can anyone please help me out with this issue.
    I have a form with two items based on a table. I already have an item level validation to check for null. Now I would like to create a page level validation to check that duplicate data are not entered into the database. I would like to check the database when the user clicks on ‘Create’ button to ensure they are not inserting duplicate record. If data already exist, then show the error message and redirect them to another page. I am using apex 3.2
    Thanks

    Hi,
    Have you tried writing a PLSQL function to check this?
    I haven't tested this specifically, but something like this should work:
    1) Create a Page Level Validation
    2) Choose PLSQL for the method
    3) Choose Function Returning Boolean for the Type
    For the validation code, you could do something like this:
    DECLARE
        v_cnt number;
    BEGIN
        select count(*)
        into v_cnt
        from
        your_table
        where
        col1 = :P1_field1 AND
        col2 = :P2_field2;
        if v_cnt > 0 then return false;
        else return true;
        end if;
    END;If the query returns false, then your error message will be displayed.
    Not sure how you would go about redirecting after this page though. Maybe just allow the user to try again with another value (in case they made a mistake) or just press a 'cancel' button to finish trying to create a new record.
    Amanda.

  • Item Level & Page Level Validation..

    Hi ,
    What is the difference between Item Level validation & Page Level validation..
    in which sceneario it will be useful.
    Anoo..
    Edited by: Anoo on Dec 16, 2008 5:04 AM

    Hi,
    From the APEX help:
    * Item level validations are specific to a single item.
    * Page level validations do not apply to any single item, but apply to an entire page.
    {code}
    Paulo Vale
    [http://apex-notes.blogspot.com]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Item & page level validation

    1. How do I check/see if a validation rule is page level or item level, I couldn't find any difference in the definitions between the two as seen on the definition screens in APEX.
    2. (Could be related to 1.) I expected the validation rule 'Item in Expression1 contains at least one of the characters in Expression2' to imply that Expression1 can not be NULL. I had to create a separate IS NOT NULL validation rule however. To me that does not make sense or is there a reasonable explanation?
    tia,
    Martin

    Martin,
    As Tony said, there is no difference between page and item validations other than the ability for item validations to have error messages positioned right next to their label.
    As for the null value problem, the following "item comparison" -type validations do not produce a validation error if the specified item is null:
    * Item specified contains no spaces
    * Item specified is a valid date
    * Item in Expression 1 contains only characters in Expression 2
    * Item in Expression 1 contains at least one of the characters in Expression 2
    * Item in Expression 1 does not contain any of the characters in Expression 2
    This allows you to account for the null value case with a separate "not null" validation. Without this behavior there would have to be a "Item in Expression 1 is NULL OR <remainder of validation>" -type validation in addition to each of the above validation types.
    However, the following validation types do result in a validation failure if the item is null:
    * Item in Expression 1 equals string literal in Expression 2
    * Item in Expression 1 is contained in Expression 2
    This behavior appears to be an oversight, also spelled bug.
    Scott

  • How-to (easily) retrieve the ColorSpace at the page level

    Hello,
    I'm lloking for a method to (easily) retrieve the ColorSpace at the page level. Actually in my PDF there are ColorSpace at page level and also at element level.
    Moreover what is the behavior when there are more than one ColorSpace. Is it the ColorSpace described at the page level which is taken into account or the ColorSpace which is at the image level.
    Thanks in advance,
    Joe

    There is no such thing as a "page level CS" in PDF.  So I have no idea what you are referring to.  Please post a PDF.
    When rendering a page, a renderer (Acrobat/Reader in this case) decides what final output colorspace to use for the raster image based on a variety of criteria defined by the appropriate international standards - let's call this the "destination CS".  Once chosen, then as each object is being rendered its colorspace(s) (call them "source CS" - may be one or two) will be converted, if necessary to the destination CS. 
    That's the simplistic description of color handling when there is no transparency on the page.  If there is transparency involved - the complexity goes up by a magnitude...

  • How to implement a page level validation !!

    Hello ,
    I want to implement page level validation.
    thanks
    Edited by: kumar73 on Apr 21, 2010 1:41 PM

    Should be pretty easy - your condition would probably just be the click of the button (button name) or the request value sent by the button (SUBMIT?) You can do a function returning boolean as the type
    The code would be something like:
    begin
      if :P1_SHUTTLE is not null or
      :P1_SHUTTLE2 is not null or
      :P1_SHUTTLE3 is not null or
      :P1_SHUTTLE4 is not null or
      :P1_SHUTTLE5 is not null then
        return(true);
      else
        return(false);
      end if;
    end;

  • Quotes in a page level item not showing up as " when used in a hyper link

    Hi all,
    In my app, I need to hyper link to a crystal report application with parameters from my page. I have a page level item that puts my parameter in quotes, but when the item is utilized in the hyperlink, the quotes come across as & q u o t ; (spaces were put in to the post to avoid html conversion) how can my string be used to appear the way I want?

    I don't use Crystal Reports, but, in general, you should encode your URL. When you create your link, run the URL through utl_url.escape() first. Put it in your select statement.
    E.G.,
    select utl_url.escape('http://oracle.com/foo"bar') from dual;
    will escape/encode the quotation mark and give you:
    http://oracle.com/foo%22bar
    This translates the " into a URL-safe escape code, %22, that should (I hope) be understood properly by your Crystal Reports server.
    Good luck.

  • Setting font-family at Page level in xsl ???

    Hi All,
    I have a question regarding setting the attribute font-family at page level.
    I can use this attribute at block level , Is it possible to use it at Page level ie (simple-page-master).
    In simple terms use the same font across the page without having to declare it at each block in the page.
    Thanks.

    As Jorg stated, Group ACL settings are meant to control access at a page
    level.  As he also stated is possible to control access even further, but
    with additional effort and difficulty. But, nearly every client wants this
    done down to the component level and on a group by group basis.  So, what
    I've found, over the years that works is the following:
    - Configure the available components per template type per parsys
    - Further configure the available components at the group level
    For the custom built components, you can remove them at the group level by
    un-checking the 'read' ACL on the dialogs for the given component.  You
    don't want to un-check read for the whole component because then the users
    of that group experience random 'holes' in the content.  But, if you
    un-check 'read' for the dialogs, then the component will not display in
    Side-kick (at least on 5.4 and prior this is the case).
    The only caveat to this is the OOB components.  That is where you will run
    into a lot more difficulty.  Those should mostly be enabled/disabled at the
    design level for the entire page/parsys.
    Hope this helps.
    Todd

Maybe you are looking for

  • Is there a shopping cart in ME21N schedule line tab in AFS ?

    Hello Experts, My problem is exactly same as mentioned in following  [ link|; As explained in this thread regarding shopping cart in delivery schedule line items, in my system there is no shopping cart appearing in delivery schedule line items howeve

  • Reminder number logic in PO reminder letter

    Hi All, I am doing a smartform for PO reminder letter. I want to print the reminder number in the layout. Is there any standard FM or code where i can find the reminder number of PO? Thanks Kapil

  • In "my Documents" my back/forward buttons are grey, & inactive. Joe

    when I open "My Documents" the back/forward buttons are are "grey" & non-responsive, how can I retreive them?       Joe

  • Os x 10.5.8 to snow leopard

    i am trying to update one of my computers from os x 10.5.8 to snow leopard from a back up disk from my newer computer but its not accepting it. i dont want to go buy a disk of software i already own ? what do i do

  • CRM and IS-U

    Hello friends,                    I have few friends working on CRM in abap Now they have issue relating something called as Buisness Partner in IS-U but they coding in CRM since the issue has come up in CRM. now they run a method of a particular cla