APEX 4 Bug: Wrong quickpicks in Item Page's Read Only section

This bug is an easy one
In Edit Page Item page, Read Only section, the predefined option list (now quickpicks) is as follows:
[PL/SQL] [item=value] [item not null] [request=e1] [page in] [page not in] [exists] [none] [never]
But if you look carefully, Conditions section has same quickpicks. Right quickpicks for Read Only should be:
[PL/SQL] [item=value] [item not null] [request=e1] [page in] [page not in] [exists] [always] [never]
Best regards.
Oscar

Hi Oscar,
this problem has already been filed as bug# 9752881 and will be addressed in a future release.
Thanks
Patrick
My Blog: http://www.inside-oracle-apex.com
APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins

Similar Messages

  • Querying up AR Customer OA page in read-only mode for a Single Customer

    We are building a Custom Form in which associated Customer <defined in AR> would be queried up.
    Now we want to give an option to the User to view the complete details of the Customer. We would be giving a menu option in Tools 'View Customer' thru which he would see the Full Customer Details. <AR Customer OA page>
    We have two requirements
    1> The Full Customer Details should show up in Standard OA Customer Page the moment page comes up. The user should not be required to query the details.
    2> It should be read-only and user should not be able to update any field.
    How can we achieve this requirement? I did some RnD but did not see any place in EBS where we display the Customer Page in read-only mode and that too quried up for one particular customer.
    Thanks
    Arun

    Hi Arun,
    Please let me know if find any solution for this. We have a similar scenario in which we need to call the customer Page with all the inforamtion populated, related to one customer.
    Thanks in advance,
    Mannuru

  • Locking a subset of Wiki pages as read-only: Is this possible?

    I have a workspace setup where all participants have workspace-member role privilege which allows them to update content - and in particular - wiki pages. This is a business requirement for this particular site purpose.
    However - I would like to lock down one (or more) wiki pages within the pages on this workspace - as read-only.
    Is it possible to have some pages within a workspace locked as read-only to named users - while the other wiki pages are available for update to workspace participants? If so - how?
    Thank you

    Hi,
    No, we cannot selectively lock down Wiki pages as read only unfortunately as we don't have access controls at the individual page level.
    However, what may be doable is for you to flag the page as non-changeable and to set up an RSS feed to the Wiki page and if anyone changes it you can go in an look at who did it and more importantly you can roll it back to the previous version as the change logs will be kept and can be backed out if required. There is an entry here: http://weblog.oraclecorp.com/weblog/team/Beehive that shows how to set up specific RSS feeds.
    Not ideal but a possible way of catching any unauthorized change and correcting it + giving you the culprit :-)
    Phil

  • How to make a page in read only

    Hello,
    I am using 11.1.1.4, I am having a requirement to display all the components on my page read only when first time page loaded, By clicking on 'Edit' button I have to make all components in editable. I am using Transient View object to render various components on my page. I have 50 components approximately on my page. How can I make page read only with very minimal changes?
    Thanks

    Try something like that:
            public static void disableControls(UIComponent component, Object[] disabledParam) {
               Iterator<UIComponent> i = component.getFacetsAndChildren();
               while (i.hasNext()) {
                     UIComponent child = (UIComponent) i.next();
                     Class mc = child.getClass();
                      try {
                         Class[] cls = {boolean.class};
                         Method setDisabled = mc.getMethod("setDisabled", cls);
                         setDisabled.invoke(child, disabledParam);
                         AdfFacesContext.getCurrentInstance().addPartialTarget(child);                 
                      } catch(NoSuchMethodException ex){
                      } catch(Exception e) {
                         log.error(...);
                     disableControls(child, disabledParam);
               } // of while      
            }if you pass {Boolean.TRUE} as second param, you will disable all children of first param component.
    Next, in the JSF page, yuo need something like follows:
            <af:clientListener type="load" method="onPageLoad"/>     
            <af:serverListener type="disable" method="#{myBean.handleDisable}"/>
        </af:document> The javaScript part:
    function onPageLoad(event) {
      var source = event.getSource();
      AdfCustomEvent.queue(source,"disable", {}, false);
    }And finally , here is handleDisable() Java method, in which you should call disableControls() utility method:
        public void handleDisable(ClientEvent event) {
            disableControls(_some_UI_comp, new Object[]{Boolean.TRUE});
        }

  • The document "spirit hawk.pages" could not be saved as "spirit hawk grape vine.pages". Read-only file system

    In recent days my Pages 09 has decided not save files and make them 'read only'
    Does anyone have any ideas on why this is so - any help would be appreciated.
    Many thanks,
    Gerry

    Isn't it just after the 10.7.3 update ?
    If it's that, download the free maintenance tool named Onyx
    http://www.titanium.free.fr/download.php
    and run it with these settings :
    I'm accustomed to urge users to apply MAINTENANCE bu Onyx was updated yesterdays so it may be matching more closely the system features.
    Yvan KOENIG (VALLAURIS, France) lundi 13 février 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.3
    My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k

  • Make a region editable while keeping the entire page as read only

    Hi All,
    I have made an entire page as readonly via the following :
    ClientUtil.setViewOnlyRecursive(pageContext, webBean);
    Now I want the entire page to be readonly except for a sub tab used in the page.
    <oa:subTabLayout id="subTabLayoutRn">
      <ui:contents>
        <oa:header id="tasksTabRN" extends="/oracle/apps/ozf/claim/webui/TasksTabRN"/>
      </ui:contents>
      <ui:subTabs>
        <oa:subTabBar id="subTabBarsRN">
          <ui:contents>
            <oa:link id="tasksTabLink" text="Tasks">
               <ui:primaryClientAction>
                  <ui:firePartialAction event="updateSubTab"/>
               </ui:primaryClientAction>
             </oa:link>
          </ui:contents>
       </oa:subTabBar>
      </ui:subTabs>
    </oa:subTabLayout>
    This sub tab i want to display as editable. Can anyone kindly provide any suggestions on how to achieve this?
    Thanks,
    Arpita

    Hi Sushant,
    Thanks for the reply.
    I am using setViewOnlyRecursive on condition basis only i.e.
    If (status of claim is close / cancelled / pending_approval)
    then
    ClientUtil.setViewOnlyRecursive(pageContext, webBean);
    But I want to make tasksTabRN of the subTabLayout as editable if status of claim is pending_approval.
    How do i code this condition ?
    In the below code, we can get the subTabLayout control but what to do next?
    if(webBean!=null)
    OASubTabLayoutBean subTabLayoutBean = (OASubTabLayoutBean)webBean.findIndexedChildRecursive("subTabLayoutRn");
    if(subTabLayoutBean!=null)
    UINodeList childList = subTabLayoutBean.getIndexedNodeList();
    if(childList!=null)
    RenderingContext rdgCtxt = pageContext.getRenderingContext();
    int size = childList.size(rdgCtxt);
    OAWebBean child = null;
    for(int i=0; i<size; i++)
    child = (OAWebBean)childList.getUINode(rdgCtxt, i);
    if(child!=null)
    String name = child.getUINodeName();
    if("tasksTabRN".equals(name))
    // We can set the value of  subTabLayoutBean as rendered or hideSubTab
    // But how do i make this as editable.
    //subTabLayoutBean. ????
    break;

  • Bug? Folders created by transmission is read-only to Windows file sharing

    It's a nice thing that transmission is supported in the LenovoEMC version of firmware. The thing is, folders created by this transmission are read-only, which means file can't be added, deleted nor modified from Windows file sharing (They are still be deleted with transmission though, but that's irrelavant).
    From my experience, this issue is caused by the value of unmask not properly set up in the settings.json file. This file can be modified when transmission is not running, but I didn't find a way to stop transmission from running / restart itself even after being killed from SSH.
    Please help.

    You have to have root access (which will void your warranty) to modify settings.json, that's why I wish Lenovo can come up with an official solution.
    If you don't mind viod the warranty, then after you stop transmission, you can log in as root via putty, then use nano to modify settings.json as mentioned below:
    http://forum.nas-central.org/viewtopic.php?f=279&t=7877&sid=30b572be20744201c78d224e3db49c97&start=1...

  • Creating a read only page

    Say I have a page with 80 items on it. Is there any way to make the page/regions read-only instead of doing it by individual items. I've search the forum and it looks like it is by item only. Has anyone come up with a workaround or now of a solution that they are willing to share.
    I'm using version 2.0.0.00.49 with IE 6.0
    Thanks,
    Derek

    Derek - Check out this wizard: Create Page > Form > Summary Page. It isn't exactly what you asked for but you might be able to use it.
    Scott

  • AJAX and Read-Only Items

    I used the examples from Carl Backstrom and Denes Kubicek to get my cascading select list working.
    I have two select list fields (Origin and Type) that I use to determine the data to appear in a third select list field (Customer).
    With help from people on this forum I was able to get things to work.
    Now I have an issue when I conditionally make the Origin field "read-only".
    When this occurs, data appears in my "Customer" select list on the INITIAL display of the form.
    However, when I change the value in the "Type" select list field, no data appears in the Customer select list.
    If I change the "Origin" field to NOT be read-only, I can change the value in the "Type" select list field and everything works OK.
    I hope I have given enough information.
    THANKS in advance.
    Raymond

    Raymond,
    It looks like read-only select is really special:
    (I replaced < > with [])
    When select is not read-only generated html is:
    [select name="p_t01" size="1" id="P1_ORIGIN_NO"
    onchange="get_AJAX_SELECT_XML('P1_ORIGIN_NO','P1_DISPLAY_SSA','','','P1_CUSTOMER','CASCADING_CUSTOMER_LOV')";
    [option value="%null%"]%[option]
    [option selected="selected" value="001"]DOTIKI MINE[option]
    [option value="S01"]ECO COAL PELLETIZATION NO. 12, LLC[option]
    [select]
    It means that P1_ORIGIN_NO in  get_AJAX_SELECT_XML will be "001"
    But when select is read-only your html code is:
    [input type="hidden" name="p_t01" value="001" /]
    [span id="P2_ORIGIN_NO"
    onchange=
    "get_AJAX_SELECT_XML('P2_ORIGIN_NO','P2_DISPLAY_SSA','','','P2_CUSTOMER','CASCADING_CUSTOMER_LOV')";
    DOTIKI MINE
    [span]
    [pre]
    P2_ORIGIN_NO in  get_AJAX_SELECT_XML will be "DOTIKI MINE" which I think is wrong.
    It looks like for read-only you need hidden item with code of
    drop - down list or somehow you have to reach [input type="hidden" name="p_t01" value="001" /]
    Lev
    Message was edited by:
            le                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Possible to make an item editable for certain users and read only for other

    Is it possible to make an item editable for certain users and read only for others?
    I've been able to accomplish this by taken the select statement that I used to define an authorization scheme, placing it in the Read Only condition of the item. However, I would like to simply reference the authorization scheme to utilize caching, and to help keep things cleaner for future maintenance.
    Is it possible to reference an authorization scheme in an item condition similar to the way another item can be referenced by preceding it with a colon (i.e. :P1_First_Name)?

    Thank you, your suggestion worked.
    It would be nice on a future release of APEX if a drop-down box existed under the Ready Only section that would allow an existing Authorization Scheme to be selected or negated when applying the Read Only attribute to a form item.

  • Read only page level attribute

    Are there any plans to add a 'Read only' conditional attribute at the page level. It would save a lot of time if a page level read only attribute was available which was overrriden at the item level.
    The page level attribute would allow a page with lots of items to be rendered read only at the click of one option rather than having to go through each item on the page. (It would also be nice to be able to programatically set this via a function call)

    i know you can do this at the item level. Lets say you have 50 items on a page and you want to set the same condition for making each item read only. It would be a little tedious to have to go into each item to do this. Whereas a page level attribute would cascade down, being overrriden by the item level setting if a few of the items had different conditions or were not to be made read only.
    just think it would be a nice to have feature

  • How to make the OAF page Read-Only for one Responsibility?

    I have a requirement to make the entire OAF page to Read-only for particular Responsibility.
    Is there any direct option to make page Read-only ?
    Can anyone suggest some solution?

    Hi,
    Check one article on
    http://www.applikast.net/technical/oa-fwk/misc/making-an-oa-framework-page-readonly
    or you can do Personalization for each item on page.
    Thanks,
    Abhi

  • CRM Order - Item No at a Order Item becomes Read Only

    Hi All,
    We are creating an Order (SAP GUI) and enter a few products. For some products the ITEM NO becomes read only.
    We have 2 Item Category group (NORM, VOLL) and 2 Item Categories (TAN, ZTAN). For some products (NORM, TAN) or (NORM, ZTAN) or (VOLL, TAN) the Item no becomes Read Only.
    We do not have Higher level items or Alternate Items.
    Could you please let us know under what conditions would the Item No become read only.
    Thanks and Regards

    Hi,
    you would have to pass the variant condition keys (and pricing factors - default is 1) to the pricing engine. I have never seen this part of the application myself and it think it is difficult to achieve this as this might be direct communication between the configurator and the pricer. The variant conditions are passed in a reference characteristic called "VKOND" to the order and then to the pricer.
    Are you planning to use a configurable product or a non-configurable product for this task? If you use the later you can ensure the SAP configurator is not called and then just have to feed additional data into the pricing engine (e.g. via manual conditions or via user exits in pricing).
    Regards, Marcus

  • Make item read-only after Approved using SPD Workflow

    Hi All - Is it possible to create a workflow in SPD 2013 which can make approved items readonly for the creator of the item. 
    Regards,
    Khushi
    Khushi

    Hi,
           There are item-level permissions that can be set, so you can Provide list-level permissions on an item-by-item basis as read only. Adding this functionality into your existing workflow probably helps.
    You Can check the article mentioned in the below link.
    http://spdactivities.codeplex.com/wikipage?title=Grant%20Permission%20on%20Item&referringTitle=Home
    Once you have a workflow action for setting an item's permission level, simply add a step to your existing workflow to set
    Read permission.
    Regards,
    MS

  • Make jsp page read only

    dera frds,
    im working on a site,i make a web page based on jsp,that page has a download file,i want the authorized user can download that file,other can see that file as read only mode,but can't download,so plz provode me some program to make jsp page as read only.

    ya well i want that other can see that file,but only authories users can download that page or file.unauthories user can see that page or file,but can't download.
    basially assume that file might be having some course that can download by authoried users.

Maybe you are looking for

  • Any idea why airdrop dialog is wrong

    I can't get airdrop to work between macbook air 10.10.3 and iPhone 6 8.2ish iPhone works with other iOS devices. macbook air can't recognize ANY iOS devices that iPhone is seeing. Furthermore -   pop open your airdrop on a mac - are there two blue li

  • MapViewer Dynamic Theme help

    I am using MapViewer 10g to create a JSP map, using JSP Tags as in the TagMap example. All works well, however, in building the page in question, beside creating and printing the map, I also use a within_distance query to print out a list of values.

  • Can somebody tell me if they like or dislike my program

    i would like it if somebody could tell me what they think of my program. it is a map explorer. thank you in advance

  • PROJECT INVOICE DISTRIBUTION IN AP

    HI, When i am going to click on distribution after entering the project related header or line info. . . . .so its shows an error which stated that the default workflow for the payable account function project supplier charge account has not been cus

  • Freezing iTunes & won't sync or restore

    So I believe I had just recently updated iTunes to 8.1 and last night when I tried connecting my iPod to my computer it would freeze my iTunes! Sometimes if I just left it, it would tell me I had to restore it, but even when I tried restoring it iTun