Default view Mode

Hi I have different security class setup in shared services for a planning application. How can I have each users view to be the basic mode rather than the advanced mode? I want them to see the tasks list first when they navigate to the planning application. Really appreciate your time and help!

I am not sure why this has never been built into planning, it is one of questions that comes up time and time again.
There was even a bug/feature enhancement request from many years ago which I heard would go into version 11 but never did.
Cheers
John
http://john-goodwin.blogspot.com/

Similar Messages

  • Panel form in view mode when table row select

    Dear All,
    I have a table and a detail form(created by dragging the vo in form).
    by default when i select the row in af:table then the detail form is in edit mode. I want to have default view mode(panel form fields to be uneditable) and an edit button in the panelform when the user clicks the edit button then panelform fields should be in editable and other operation buttons(create,createInsert,commit,rollback,execute) to be visible.
    Any pointers to this type of problem.??
    Regards,
    Santosh.
    jdeveloper 11.1.1.4.0
    Edited by: Santosh Vaza on May 20, 2011 12:31 PM

    I'm not aware of a component which dose this out of the box. You can however implement a method in a bean which goes through the component tree beginning from your panel form and set all editable components to disable until you click the edit button. Then you use a similar method to set all components back to enabled.
    Timo

  • SOLVED: Limit default view with Multiple non-destructive filters mode

    This was solved:
    I deleted the { subPaths: "word" } within my dataset. The dataset was pulling and displaying the subpath content which I don't need.
    ==================================================================
    Hi,
    I’m using the Multiple Filters Mode Sample to filter headlines in my xml file by the keywords associated with them.
    My question is, with no filters selected, how do you display only one headline for the default view? So, instead of the <headline> node repeating itself for every keyword within that node, it just displays one headline. I just want to display only one headline instead of repeating the headline based on the amount of keywords associated with it.
    If you view the donut example given a donut is displayed for every topping associated with it.
    I’m not as experienced with JS but I thought that if I create an array of all the possible keyword combinations and then use an if-then to display just one combination then it might work. The problem is that the amount of keywords will grow with time. I might amass 15-20 keywords in the next month, so an array might not be practical.
    Also, my “Remove All Filters” doesn’t work. The debugger is giving me an error that states: ‘documents.forms.0.noneCB’ is null or not an object -This would mean that the checkbox has not been selected is this correct?
    I’ve included the code and my xml data below. Any assistance would be greatly appreciated!
    <html>
    <head>
    <script language="JavaScript" type="text/javascript" src="/SpryAssets/xpath.js"></script>
    <script language="JavaScript" type="text/javascript" src="/SpryAssets/SpryData.js"></script>
    <script language="JavaScript" type="text/javascript" src="/SpryAssets/SpryDataExtensions.js"></script>
    <script type="text/javascript">
    <!--
    var dsHeadlines = new Spry.Data.XMLDataSet("headlines_test.xml", "/headlines/headline", { subPaths: "word" });
    function ffNone(ds, row, index){ return (row.word == "None") ? row : null; };
    function ffJudicial(ds, row, index){ return (row.word == "Judicial leadership") ? row : null; };
    function ffProBono(ds, row, index){ return (row.word == "Pro bono") ? row : null; };
    function ffHearings(ds, row, index){ return (row.word == "ATJ hearings and events") ? row : null; };
    function ffCreation(ds, row, index){ return (row.word == "ATJ entities creation and structure") ? row : null; };
    function ToggleFilter(enable, f)
                if (enable)
                            dsHeadlines.addFilter(f, true);
                else
                            dsHeadlines.removeFilter(f, true);
    function RemoveAllFilters()
                document.forms[0]["noneCB"].checked = false;
                document.forms[0]["judicialCB"].checked = false;
                document.forms[0]["probonoCB"].checked = false;
                document.forms[0]["hearingsCB"].checked = false;
                document.forms[0]["creationCB"].checked = false;
                dsHeadlines.removeAllFilters(true);
    -->
    </script>
    </head>
    <body>
                <div class="liveSample" style="float: left; margin-bottom: 4px;">
                <form action="">
                <p>Select any of the following:</p>
                <ul style="list-style:none">
                    <li><label><input name="noneCB" type="checkbox" value="" onclick="ToggleFilter(this.checked, ffNone);" />None</label></li>
                    <li><label><input name="judicialCB" type="checkbox" value="" onclick="ToggleFilter(this.checked, ffJudicial);" />Judicial leadership</label></li>
                    <li><label><input name="probonoCB" type="checkbox" value="" onclick="ToggleFilter(this.checked, ffProBono);" />Pro Bono</label></li>
                    <li><label><input name="hearingsCB" type="checkbox" value="" onclick="ToggleFilter(this.checked, ffHearings);" />ATJ hearings/events</label></li>
                    <li><label><input name="creationCB" type="checkbox" value="" onclick="ToggleFilter(this.checked, ffCreation);" />ATJ entities: creation and structure</label></li>
    </ul>
                <p><label>Filter Mode: <select onchange="dsHeadlines.setFilterMode(this.value, true);"><option value="and" selected="selected">-- AND --</option><option value="or">-- OR --</option></select></label>
                <input type="button" value="Remove All Filters" onclick="RemoveAllFilters();" /></p>
                </form>
                </div>
                <div spry:region="dsHeadlines">
                    <table>
                        <tr><th>Title</th><th>Date</th><th>State</th></tr>
                        <tr spry:repeat="dsHeadlines"><td valign="top"><a href="{hyperlink}">{title}</a><p></p></td><td valign="top">{date}</td><td valign="top">{state}</td></tr>
                    </table>
                </div>
    </body>
    </html>
    <?xml version="1.0" encoding="UTF-8"?>
    <headlines>
      <headline>
        <id>1</id>
        <title>
          <![CDATA[Save the date! 2009 National Meeting of State Access to Justice Chairs will take place in Orlando in Saturday, May 16, 2009. Invitations will be mailed out in late January.]]>
        </title>
        <hyperlink>
          <![CDATA[http://www.abanet.org/legalservices/sclaid/atjresourcecenter/annualmeeting.html]]>
        </hyperlink>
        <state>FL</state>
        <date>20090516</date>
        <word id="0001">None</word>
      </headline>
      <headline>
        <id>2</id>
        <title>
          <![CDATA[ABA Day in Washington. ABA Day legislative visits on April 21-22 will focus solely on access to justice issues. Register and receive materials, training, and schedule of events free before March 14 at: http://www.abanet.org/poladv/abaday09/.]]>
        </title>
        <hyperlink>
          <![CDATA[http://www.abanet.org/poladv/abaday09/]]>
        </hyperlink>
        <state>DC</state>
        <date>20090421</date>
        <word id="0002">Pro bono</word>
        <word id="0004">ATJ hearings and events</word>
        <word id="0005">Judicial leadership</word>
      </headline>
      <headline>
        <id>3</id>
        <title>
          <![CDATA[North Carolina Bar Association and North Carolina Bar Association Foundation host second annual 4ALL Statewide Service Day ask-a-lawyer event at five call centers around the state. (3/6/2009)]]>
        </title>
        <hyperlink>
          <![CDATA[http://www.4allnc.org/]]>
        </hyperlink>
        <state>NC</state>
        <date>20090306</date>
        <word id="0002">Pro bono</word>
      </headline>
      <headline>
        <id>4</id>
        <title>
          <![CDATA[Wyoming Access to Justice Commission holds its first meeting. (2/27/2009)]]>
        </title>
        <hyperlink>
          <![CDATA[http://www.nlada.org/DMS/Documents/1236184561.24/AJC%20Appointing%20Order%202009.pdf]]>
        </hyperlink>
        <state>WY</state>
        <date>20090227</date>
        <word id="0003">ATJ entities creation and structure</word>
      </headline>
      <headline>
        <id>5</id>
        <title>
          <![CDATA[Tennessee’s Supreme Court launches Access to Justice Campaign with the first in a series of public hearings. (2/26/2009)]]>
        </title>
        <state>TN</state>
        <date>20090226</date>
        <word id="0003">ATJ entities creation and structure</word>
        <word id="0004">ATJ hearings and events</word>
        <word id="0005">Judicial leadership</word>
      </headline>
    </headlines>

    1) I deleted bridge-utils, netcfg
    2) I edited /etc/hostapd/hostapd.conf:
    interface=wlan0
    #bridge=br0
    edited /etc/dnsmasq.conf:
    interface=wlan0
    dhcp-range=192.168.0.2,192.168.0.255,255.255.255.0,24h
    and edited /etc/rc.local:
    ifconfig wlan0 192.168.0.1 netmask 255.255.255.0
    ifconfig wlan0 up
    3) I added in autostart these daemons: hostapd, dnsmasq and iptables.
    Profit!

  • Draft mode by default view

    Hello everyone,
    How i can set default view to draft mode in webi XI3.0?
    Please answer.
    Tnx.

    For change default view do next 3 steps:
    1steps: find viewReport.jsp in
    C:\Program Files\Business Objects\Tomcat55\webapps\AnalyticalReporting\viewers\cdz_adv\viewReport.jsp
    Edit file with text editor and find
    if (strPageMode.equals(""))
    strPageMode = objReport.getPaginationMode().toString();
    change it to
    if (strPageMode.equals(""))
    <!-- strPageMode = objReport.getPaginationMode().toString(); -->
    strPageMode = "Listing";
    2 steps: find viewDocument.jsp
    C:\Program Files\Business Objects\Tomcat55\webapps\AnalyticalReporting\viewers\cdz_adv\viewDocument.jsp
    Edit file with text editor and find
    if (strPageMode.equals(""))
    strPageMode = objReport.getPaginationMode().toString();
    change it to
    if (strPageMode.equals(""))
    <!-- strPageMode = objReport.getPaginationMode().toString(); -->
    strPageMode = "Listing";
    3 step: Restart Tomcat and WebI Processing server
    That all.
    Andrey

  • Editing the 'show help' view mode default page

    I have enabled the 'show help' view mode on a few of my pages to give users some insight into how a given portlet should be used. However, when clicking on the 'help' link now on portals Portal takes you to some default styled help page. On this page are links to Portal Navigator and Portal Builder which I don't want my users seeing or being able to access. Also I wish to style the page differently. Can this page be altered and where can this be accomplished?

    Yes I understand. In that package is where you can input code for each of the modes. In the section for help view mode I have one line
    htp.p('Hello');
    The issue is on the actual webpage when you click the 'help' button for the portlet it displays the output of the line above but also displays other links that portal decided to stick in like a link to the portal navigator, an image in the upper left, etc. I don't want these to show up and want to sytle the page myself. I was wondering where I can go to edit the way that page is displayed.

  • How to change default view in web plugin?

    Anyone know how to set a default view in the Reader plugin in Firefox and/or IE?  I'm getting sick of having to manually show the task bar and then un-toggle touch mode to get my scroll bar back every time I open a PDF. Thanks!

    Thanks! I turned off Touch mode there (Edit\Preferences\General --> set
    Touch Mode to "Never")
    Then I poked around more and fixed the default view in
    Edit\Preferences\Internet --> unchecked "Display in read mode by default"

  • How to change the 'Default operating mode' of a mapping on the repository and not from the client

    Hi everybody,
    I am using OWB 11.2.0.3 and under the mapping's configuration property, I have the necessity to change the Run time parameter "Default operating mode" to SET_BASED in almost all my mappings.
    Because I have 745 mappings in which the Default operating mode is different from SET_BASED, instead to open 745 times the 'Configure' and update manually the value, is there a way to update safely these values (with an oracle predefined script) directly on the repository ?
    I know that exists a view called CMPSTRINGPROPERTYVALUE_V based on a table called CMPSCOPrpClasses, but changing this table it's very complicated for me because contains only keys and then I don't know in which way is connected with all the other structures....
    If somebody knows a method more efficient to do these updates on the repository and not from OWB client I will appreciated it!
    Thanks in advance
    Alessandro

    Urgent... help!!! Thanks
    in short, my server log says transaction access mode is "read only", so my calling home.create() always triggers a transaction rollback. How to change the access mode to "read write"?
    Is possible to work out through one of the descriptor files? Or ini settings of the underlying pointbase database? Or any other way around?

  • REQ: Add 'Fit-width' or 'Fit-visible' view mode, in which the zoom level is automatically set based on the width of the _current_ page.

    Currently, the default zoom level when viewing a page of a PDF file is automatically calculated based on the width of the "widest" page of the document. This means that, if the document contains one page that is wider than the others or is in landscape orientation, then the default zoom, when viewing all the other narrower pages, is set in a way so that the page does not use the full width of the screen. This results in very poor experience, because the zoom level and the visible area of the page have to be constantly adjusted for each page. The latest update (at the time of writing) has added some extra view modes, but not the much needed 'Fit width' or 'Fit visible'.
    Personally, I can find no reason valid enough to justify the lack of such a view mode. Automatically setting the zoom level based on the width of the current page so as to take advantage of the full width of the screen should be a must have feature for mobile devices, if not the default behavior. The current default behavior regarding the zoom level is pretty much useless, even on 8"/10" screens. There should be a view mode in which the full width of the screen is always used to display the document.
    Examples of documents for which the Adobe Reader for Android provides a poor reading experience are:
    documents which contain some of their pages in landscape orientation.
    publications which, apart from the main content, also contain the full front and back cover in a single page (usually first page which is much wider than the content pages) or any other extra pages like cards or application forms (that are meant to be printed) which usually use an A4/Letter page size etc.
    documents which have been cropped by external utilities or scripts so as to eliminate unneeded white margins (in some cases not all pages have the same width).
    Please consider fixing the default behavior in future releases of the Reader for Android or add a 'Fit width' or 'Fit visible' view mode.
    Thank you in advance.
    Message was edited by: George Notaras
    Improved descriptions of example documents.

    To add to this, if you prefer you can separate your JavaScript from your JSF pages.
    Add a folder (I named mine 'js') to your application's ViewController project's public_html folder.
    Via JDeveloper, create a new JavaScript file inside your newly created folder and place your JavaScript functions inside it.
    You can then 'load' the .js file using the method Shantala described, with the addition of an added 'source' property to the af:reference tag.
    (This can also be a URI reference to a JavaScript file hosted on a web server)
    <f:facet name="metaContainer">
      <af:resource source="/js/myJsFile.js" type="javascript"/>
    </f:facet>The benefits of this 'split' are cleaner JSF page source and also code-highlighting and formatting within the .js file making finding and fixing bugs in your JavaScript much easier.
    It appears however, that when using <af:resource> to load scripts, once the page has been submitted even once, the JavaScript is no longer available to the page. Which isn't very useful.
    A solution is to use <trh:script>.
    Add xmlns:trh="http://myfaces.apache.org/trinidad/html" to your <jsp:root> tag and install the library.
    then in place of the above code use:
    <f:facet name="metaContainer">
      <trh:script id="script1" source="/js/myJsFile.js"/>
    </f:facet>Now after a page submit the JavaScript still functions.
    Edited by: Matthew Carrigy on 12/08/2009 10:39

  • Single page view mode in Acrobat Reader on android

    Is there a way for a pdf to dictate the view mode used in Acrobat Reader on a smart phone? By default I believe  it is set to continuous however I would like it to automatically change to single page when my pdf is opened.

    Mark -
    You are correct.
    In Acrobat Reader on my PC, I'm highlighting text and then adding a sticky-note comment to it.
    So, if I just insert a sticky note comment without highlighting the associated text in the document, I can see the sticky note when I view the document on my android device - - just tested this and it works!
    OK - I can live with that, but it would be good if the combination of highlighting AND sticky notes were visible when viewin the document in Android - the highlightimg feature makes it clearer to what piece of text the sticky bote relates to. Hope it can be incorporated in a furure release.
    Thanks for clarifying the situation for me.

  • How can I make folder view the default view when I open Organizer?

    I just bought Adobe Elements Photshop and Premier 11.  I spent 2 to 3 hours getting my picture video library into Adobe's organizer.  I had some problems with duplicate picture (that I wanted to be there - so I had to rename them) and a couple pictures with corrupted metadata.  After I got all that sorted out I am a bit miffed about the folder view on Adob'es organizer.
    I love that you can switch to folder view - since this is how I have been organizing my pictures for a long time.  I would like to continue organizing this way for now until I get a grasp on the other ways I can organize them in elements.  However, every time I close and re-open organizer it switches back to the default view instead of folder view.  PLEASE tell me that there is a way to set folder view to the default view!  HELP!

    99jon wrote:
    Perhaps it’s a design feature to speed up the Organizer launch.
    I am sure it is.
    - The normal use of the Organizer is not the folder view, it's the thumbnail view with an organization based on categories and folder. That way you should forget completely where your pictures are stored. Anyway, the folder view in the Explorer is not a map of the location of the different bits of your file, it's only a logical representation. That's easy to see when you are doing a defragmentation.
    - The folder view is useful even for those using normally the thumbnail view, but that is only for rare cases when you must change the folder organization, for instance moving files to another drive. The folder view is here to prevent you from changing things from the explorer and outside of the Organizer.
    - The new folder list view, which you find 'funny' is there to help better organizing using tags. Its huge advantage is that such a view is created extremely quickly by extracting the last subfolder in the media table : it's the way the database sees the folders, based on its own content,  totally ignoring the complex folder organization of your disk with media files or any unrelated other kind of data. You should use it in many cases, the main purpose being assigning tags when you have assigned descriptive folder names. I had suggested such a solution to prevent the long standing bugs in the folder view of previous versions.
    So yes, the purpose is:
    - to speed up switching modes
    - to help folder organization fans to migrate to tags organization
    - to hopefully get rid of the old folder organization bugs

  • Setting a default view

    I've noticed of late that the folders on our server (Samba) open in all sorts of states. Some are showing as 'View by Date', some as 'View By Name' and here and there I find folders expanded to show their contents. This is very frustrating and untidy.
    I don't not know if it is a Samba preference or OSX pref but is there a ways to standardize it all so that all the folders open in one view with no folders expanded?
    Thanks
    Sean

    Using View Options (which is what you get by pressing Command-J while viewing a Finder window) you can create a preferred group of settings and set that as Default. However, this will only be applied to newly-created folders, not to already existing ones.
    The view mode (as Icons, as List, etc.) is somewhat loose - changing the mode on one folder will affect those folders inside that folder, and on the Desktop will often affect adjacent folders.
    You can 'lock' any folder's view so that it won't change. With the folder's window open, open View Options (Command-J). Change the view to the one you want, then look to the top of the View Optins widow - there should be a checkbox there to set "Always open in Icon view" (or List view, etc., whatever it is set to). Checking that box will prevent casual changes to the view mode.
    Note - with View Options, you do not have to keep opening folders and pressing Command-J for each one. Leave the View Options window open to the side, and open each successive folder you want to change. As you open/close or move from folder to folder, the View Options settiings will change to reflect those for the active window.

  • Setting Default Views of Mounted Server Shares

    In OS X 10.5 server, how do I change the owner of a volume? So I can do the stuff below? Do I change the owner in the Finder...? Or do you use the OS X Server admin utility type programs?
    Thanks
    Re: Setting Default Views of Mounted Server Shares
    Posted: Dec 18, 2007 9:49 AM in response to: William Read
    Solved
    Have you tried this?
    http://docs.info.apple.com/article.html?artnum=107482
    You can set custom view options (window size, icon placement, and so forth) that clients see when they connect to a server volume via Apple File Service (AFP).
    You can customize the size, position, and other view options of the window that clients see when they connect to a server volume via Apple File Service (AFP). You can do this on a per-volume basis.
    To customize view options, follow these steps:
    1. Log in to a client computer.
    2. Using Connect to Server, connect to the target volume as the owner of the volume; the owner must not be an administrator account (see Notes 1, 2, and 3, below).
    3. Make any desired changes to the window position, view mode (Icons, List, Columns), icon arrangement, or any of the settings found in View Options window (Command-J).
    4. Disconnect from the server volume by dragging it to the Trash.

    In OS X 10.5 server, how do I change the owner of a volume? So I can do the stuff below? Do I change the owner in the Finder...? Or do you use the OS X Server admin utility type programs?
    Thanks
    Re: Setting Default Views of Mounted Server Shares
    Posted: Dec 18, 2007 9:49 AM in response to: William Read
    Solved
    Have you tried this?
    http://docs.info.apple.com/article.html?artnum=107482
    You can set custom view options (window size, icon placement, and so forth) that clients see when they connect to a server volume via Apple File Service (AFP).
    You can customize the size, position, and other view options of the window that clients see when they connect to a server volume via Apple File Service (AFP). You can do this on a per-volume basis.
    To customize view options, follow these steps:
    1. Log in to a client computer.
    2. Using Connect to Server, connect to the target volume as the owner of the volume; the owner must not be an administrator account (see Notes 1, 2, and 3, below).
    3. Make any desired changes to the window position, view mode (Icons, List, Columns), icon arrangement, or any of the settings found in View Options window (Command-J).
    4. Disconnect from the server volume by dragging it to the Trash.

  • Not able to find Interactive View Mode for WEBI in BI LaunchPad Preferences (BI 4.1 SP04).

    Hi
    I am not able to find Interactive View Mode for WEBI in BI LaunchPad's Preferences. It used to be there for BOXI R3. Is this feature has been revoked by SAP in this new release. Please confirm and clarify. Thanks!!

    Hi,
    In BI 4.0, We don’t have the option of Interactive mode, the only modes for viewing WebI documents are as follows:
    1) Web:  it is similar to the Interactive mode in XI 3.1. It means that you will use the HTML interface in BI launch pad to create, edit and analyze documents.
    2) Rich Internet Application: This is similar to the Java Report Panel in XI 3.1.
    You are using the Java interface in BI launch pad to create, edit and analyze documents .
    But this requires the download of a Java applet.
    3) Desktop (Windows only): in this case you are using Web Intelligence Desktop to create and edit documents, a standalone interface that works outside the BI launch pad. But this requires an install on your local machine.
    4)  PDF: Same as in BO XI 3.1
    All view modes except PDF, have "Reading" and "Design" mode.
    When you view a WebI document, the default mode is "Reading".
    When you modify a WebI document, the default mode is "Design".
    The user should use the modify option or view > Design, if he wants to modify a report.

  • 70D Live View Mode Not Working

    All of a sudden Live View Mode doesn't work on my 70D.  Setting is enabled.  Pictures show on my screen for a few seconds after it's taken, but screen is black while taking pictures even when shutter release button pressed down half way.  Any ideas on why this might be happening?

    Is exposure stimulation turn on/off? does the photo taken look dark? You can try to reset it to factory default.
    Weekend Travelers Blog | Eastern Sierra Fall Color Guide

  • Bring stripes in list view mode please!

    I don't know what happened! I lost the stripes (the alternated light blue line) in list view mode in Finder and in Mail and iTunes and every program that uses some sort of list view.
    I tried to use this command
    $ defaults write com.apple.finder FXListViewStripes -bool TRUE
    $ killall Finder
    but it didn't work... please help it's driving me nuts

    Ok now the strangest things is that the stripes appear when i switch in dashboard, and they disappaear once the shadow of dashboard is gone. It's crazy, the stripes appear only if a shadow is over them. Even in a picture of a supposed striped list view, the light blue color doesn't appear until i use dashboard (I'm starting to think there's something wrong with the graphic card rather than finder)

Maybe you are looking for

  • Appleworks Formula error on import to Numbers

    I have devised a spreadsheet for my VAT and TAX in Appleworks (6.2.9 It has worked fine for years. I recently decided that I should try and get it working in Numbers (09) to future proof it. I am having a problem with one of the formulae: =IF(X4Y4+AA

  • InitialLOBFetchSize causes ORA-03106: fatal two-task communication protocol

    After my previous problem with setting InitialLOBFetchSize to -1 (see {thread:id=2338611}) I worked with a setting of 5 KB. This works fine on our development and testing database (11.2.0.1.0 Windows x86). But on the database of our customer (11.2.0.

  • Panic Attack! Mac mini restarts after sleep

    My Mac mini is restarting after waking up from sleep.  I just purchased it in April 2012. Please help Here is what I have: Processor  2.5 GHz Intel Core i5 Memory  8 GB 1333 MHz DDR3 Graphics  AMD Radeon HD 6630M 256 MB Software  OS X 10.8.2 (12C60) 

  • How to export/upload iPhoto MVI video to Facebook Group?

    iPhoto connects to my personal Facebook page, but how can I connect iPhoto to a Group on Facebook?

  • Edit "auto correct"?

    For some reason, the word "website" expands to "Web site" whenever I type it in Mail or Pages.  I can't for the life of me figure out how to edit this out - I do NOT want this expansion. Help?  Thanks.