Find a view

Hi
I am trying to find a view name on the web ic.  On the oppurtunities view, at bottom of the screen there is a tab page.  On this tab page there are two tabs that are of interest to me, the activities and the partner tabs.  I need to jump to the follow up view from the activities tab.  Does anyone know the name of this view.
Does anyone know an easy way of finding the view that you are currently looking at on the web ic.
Thanks for any help

If you only know the table name, but not the view name then use something like this:
SQL> create table t ( x number);
Table created.
SQL> create view v_t1 as select * from t;
View created.
SQL> create view v_t2 as select * from t;
View created.
select name, type, referenced_name, referenced_type
from user_dependencies
where referenced_name = 'T'
and referenced_type='TABLE'
SQL> /
NAME                                TYPE              REFERENCED_NAME                     REFERENCED_TYPE
V_T1                                VIEW              T                                   TABLE
V_T2                                VIEW              T                                   TABLE

Similar Messages

  • Re: [iPlanet-JATO] Re: onBeforeRequest(); Finding requested view from requestContext

    If you want to stop a JATO request in its tracks, you have a little black
    magic at your disposal: you can throw a CompleteRequestException. This
    indicates to the JATO infrastructure that it should immeditately stop
    handling the request, but not generate an error, as the develper has taken
    full control. You can generally throw this error from anywhere, at any
    point--it is a RuntimeException, and is "tunneled" through other exception
    handlers where appropriate.
    In your scenario, you want to check if the user is logged in, and if not,
    save the target URL using the parsePathInfo() method. Then, forward to the
    login page and then throw a CompleteRequestException.
    Todd
    ----- Original Message -----
    From: "nickmalthus" <nickmalthus@h...>
    Sent: Monday, January 07, 2002 3:05 PM
    Subject: [iPlanet-JATO] Re: onBeforeRequest(); Finding requested view from
    requestContext
    I guess what I am thinking about doing is capturing the requested URL,
    i.e. /appname/modulename/RequestName. In the onBeforeRequest(). I
    would then check to see if the user is logged in, and if not, set the
    URL in the session(or page session of the Login bean) and forward to
    the Login viewbean using the viewbean manager. Inside the login view
    in the handleSubmit() method I would authenticate the user and then
    get the URL out of the session (or pagesession). I would then
    magically get the ViewBean/Command object for the URL or otherwise
    "forward the request" as if the user had typed in
    /appname/modulename/RequestName, which is the behavior I am trying to
    acheive.
    It turns out I cannot forward in the onBeforeRequest() as it will
    output the viewbean and then continue to process the request which in
    turn trys to do a RequestDispatcher().forward after data has been
    written to the stream which does not bode well with the servlet
    container. Thus, it appears I have no control of the request in the
    onBeforeRequest() method. Is this correct?
    In light of this new observation I am now going to create a base view
    class that all views will extend from and override the
    onSecurityCheck() method to forward to my login bean. If I can't find
    any other way, I will get the URL from the page session and do a
    response.sendRedirect() to the URL.
    Thanks for the help!
    --- In iPlanet-JATO@y..., "Craig V. Conover" <craig.conover@s...> wrote:
    The problem is that you don't know what the target view is until it has
    been forwarded to.
    Think about it... the request handling view bean (or command object)has
    the request handler that has the code that will ultimately forward to
    another view bean. This is code that you have written. So, until that
    forwardTo() is invoked, there is no notion of a "target page".
    What you do know is which "page" (view bean) the request is coming from
    (the handling view bean or command class). You can get this from the
    HttpServletRequest. The attribute name is "viewBean".
    So you can get the view bean name by doing the following inonBeforeRequest:
    <HttpServletRequest>.getAttribute("viewBean");
    But I suspect this is not going to solve your current issue.
    You could add the target page name to the page session. If there ismore
    than one possible target page, it might get a little more involved.
    Let me know if the use of page session needs further explanation.
    c
    For more information about JATO, including download information, pleasevisit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp

    If you want to stop a JATO request in its tracks, you have a little black
    magic at your disposal: you can throw a CompleteRequestException. This
    indicates to the JATO infrastructure that it should immeditately stop
    handling the request, but not generate an error, as the develper has taken
    full control. You can generally throw this error from anywhere, at any
    point--it is a RuntimeException, and is "tunneled" through other exception
    handlers where appropriate.
    In your scenario, you want to check if the user is logged in, and if not,
    save the target URL using the parsePathInfo() method. Then, forward to the
    login page and then throw a CompleteRequestException.
    Todd
    ----- Original Message -----
    From: "nickmalthus" <nickmalthus@h...>
    Sent: Monday, January 07, 2002 3:05 PM
    Subject: [iPlanet-JATO] Re: onBeforeRequest(); Finding requested view from
    requestContext
    I guess what I am thinking about doing is capturing the requested URL,
    i.e. /appname/modulename/RequestName. In the onBeforeRequest(). I
    would then check to see if the user is logged in, and if not, set the
    URL in the session(or page session of the Login bean) and forward to
    the Login viewbean using the viewbean manager. Inside the login view
    in the handleSubmit() method I would authenticate the user and then
    get the URL out of the session (or pagesession). I would then
    magically get the ViewBean/Command object for the URL or otherwise
    "forward the request" as if the user had typed in
    /appname/modulename/RequestName, which is the behavior I am trying to
    acheive.
    It turns out I cannot forward in the onBeforeRequest() as it will
    output the viewbean and then continue to process the request which in
    turn trys to do a RequestDispatcher().forward after data has been
    written to the stream which does not bode well with the servlet
    container. Thus, it appears I have no control of the request in the
    onBeforeRequest() method. Is this correct?
    In light of this new observation I am now going to create a base view
    class that all views will extend from and override the
    onSecurityCheck() method to forward to my login bean. If I can't find
    any other way, I will get the URL from the page session and do a
    response.sendRedirect() to the URL.
    Thanks for the help!
    --- In iPlanet-JATO@y..., "Craig V. Conover" <craig.conover@s...> wrote:
    The problem is that you don't know what the target view is until it has
    been forwarded to.
    Think about it... the request handling view bean (or command object)has
    the request handler that has the code that will ultimately forward to
    another view bean. This is code that you have written. So, until that
    forwardTo() is invoked, there is no notion of a "target page".
    What you do know is which "page" (view bean) the request is coming from
    (the handling view bean or command class). You can get this from the
    HttpServletRequest. The attribute name is "viewBean".
    So you can get the view bean name by doing the following inonBeforeRequest:
    <HttpServletRequest>.getAttribute("viewBean");
    But I suspect this is not going to solve your current issue.
    You could add the target page name to the page session. If there ismore
    than one possible target page, it might get a little more involved.
    Let me know if the use of page session needs further explanation.
    c
    For more information about JATO, including download information, pleasevisit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp

  • Column width in finder LIST view

    I am using Yosemite.  This issue has been driving me mad for years and try as I may I cannot find the solution.
    How do you set a default column width in Finder LIST view for all folders?  Whatever I do (for example VIEW OPTIONS, USE AS DEFAULTS) does not work.
    Can anybody help? I would use third party plugins if I could find something that controls this.  Please note: I am using LIST view NOT column view.
    Many thanks

    Like Jim, I also generally use Icon view for folders containing images, and have the View Option to show item info selected. Column view will also show image dimensions (both of these work, provided the folder has been indexed by Spotlight).
    If you want to see the dimensions, but also want to view the folder contents in List view, the best you can do is bring up the Inspector (Command-Option-i), expand the More Info section, then move down the list using the arrow key. The Inspector pane's contents change with each new selected item, and the More Info section includes the dimensions.
    Francine
    Francine
    Schwieder

  • Photoshop thumbnails display improperly in Finder colum view

    I've just been noticing that Photoshop files with Channel masks do not display thumbnails properly in Finder colum view. The thumbnail is displayed with the mask blocking the image, rather than the composite view. This only occurs in Colum view; Icon and list view are normal. Can this be fixed? Thanks.
    G4, iBook   Mac OS X (10.4.8)  

    As I mentioned above you can see the mask being applied by Finder to the composite thumb if you have a large enough number of these type files in Group view in a search results window. And if you open the file and have two or more alpha channels, you can rearrange their order and change the appearance of the thumb, so YES it is the alpha channel, has nothing to do with layers. Furthermore, this is new behavior in Finder. It didn't do this before, and we're talking about going all the way back to psd files created many years ago and displayed correctly in Finder versions going back to at least 7.5, through OS X Panther.
    When I first noticed it I thought I had simply forgotten and left an alpha channel active when I saved the file. I soon discovered that was not the case: the alpha channel can be UNchecked, and Finder still applies it. This would be "a feature, not a bug" if in fact Finder applied the mask if it was active, but that is not the case. Finder used to work with these files in all views, and it still does work correctly in List and Icon view, using the Photoshop custom thumb in those views. This all means the problem has nothing whatsoever to do with Adobe's file format. In fact, Finder is actually reading the format, rather than displaying the proper thumb that is in the file's resource fork, in order to do its deed in the specific views affected by the problem, while it displays the provided thumb (as it should) in other views.
    Send feedback to Apple:
    http://www.apple.com/macosx/feedback/
    I did way back when I first noticed this problem. And let us hope it is fixed in the next version of Finder. I doubt anything is going to change in Tiger at this late date.
    Francine
    Francine
    Schwieder

  • Sort files in Finder Column View?

    Like to sort files by date in column view, is this possible? I know you can do it in List view, but can't seem to do this in column view. It would have to be folder specific, as the upper level (which are folders of folders) should be alphabetical, then the folder with files I'd like to sort by date created. Now, all are presented in alphabetical order, and then I have to scroll down to get to them.
    Thanks!

    Nope, can't be done in Finder column view - alphabetical is the only option.
    You can submit a feature request here:
    http://www.apple.com/macosx/feedback/

  • 10.4 style draggable timeline audio preview in Finder/column view?

    For the love of Steve please tell me this vital workflow feature/tool has been re-instated in SL. For folks who work with hundreds of audio files the removal in Leopard of the ability to scroll through audio files in a Finder column view window was a real kick in the teeth. In Leopard the only way to access a scrollable preview of an audio file is to open QuickView, effectively disabling ANY OTHER FINDER ACTION during the preview. Sorry to shout here but this is just...a dreadful step backwards. Not only functionally but also an annoying percentage of files (that should and do play in QT etc) will not play in QuickView and fast-ish previewing through multiple files will often crash QuickView.
    Please let it be fixed.

    I fedback btw, thanks for that.
    Overall Leopard is a fine beast. Basically all I would like is
    a/ scrolling and not only play in window columns
    b/ fix quickview so it plays all the files it should and
    c/ also doesn't crash
    If anyone else feels this way please let Apple know at OSX Feedback
    http://www.apple.com/feedback/macosx.html

  • SAP DBTech JDBC: [259] (at 26): invalid table name:  Could not find table/view RS_POOL_CLUSTER_TABLES in schema SYSTEM: line 1 col 27 (at pos 26)

    Hi Gurus,
    I am trying to load a HANA column table using the import function and get the following error even though the mappings from the file to the table are 1:1.
    I get the following errors:
    Error 1: SAP DBTech JDBC: Result set is positioned before first row.
    Error 2: SAP DBTech JDBC: [259] (at 26): invalid table name:  Could not find table/view RS_POOL_CLUSTER_TABLES in schema SYSTEM: line 1 col 27 (at pos 26)
    With the following stack trace:
    com.sap.db.jdbc.exceptions.JDBCDriverException: SAP DBTech JDBC: [259] (at 26): invalid table name:  Could not find table/view RS_POOL_CLUSTER_TABLES in schema SYSTEM: line 1 col 27 (at pos 26)
      at com.sap.db.jdbc.exceptions.SQLExceptionSapDB.createException(SQLExceptionSapDB.java:334)
      at com.sap.db.jdbc.exceptions.SQLExceptionSapDB.generateDatabaseException(SQLExceptionSapDB.java:165)
      at com.sap.db.jdbc.packet.ReplyPacket.buildExceptionChain(ReplyPacket.java:100)
      at com.sap.db.jdbc.ConnectionSapDB.execute(ConnectionSapDB.java:1141)
      at com.sap.db.jdbc.ConnectionSapDB.execute(ConnectionSapDB.java:888)
      at com.sap.db.jdbc.StatementSapDB.sendCommand(StatementSapDB.java:929)
      at com.sap.db.jdbc.StatementSapDB.sendSQL(StatementSapDB.java:978)
      at com.sap.db.jdbc.StatementSapDB.execute(StatementSapDB.java:256)
      at com.sap.db.jdbc.StatementSapDB.executeQuery(StatementSapDB.java:401)
      at com.sap.db.jdbc.trace.Statement.executeQuery(Statement.java:131)
      at com.sap.ndb.studio.bi.dataprovisioning.util.DBUtil.getPoolTables(DBUtil.java:200)
      at com.sap.ndb.studio.bi.dataprovisioning.util.DBUtil.getTablesToHide(DBUtil.java:188)
      at com.sap.ndb.studio.bi.filedataupload.ui.wizards.pages.SelectTableDialog.createDialogArea(SelectTableDialog.java:108)
      at org.eclipse.jface.dialogs.Dialog.createContents(Dialog.java:775)
      at org.eclipse.jface.window.Window.create(Window.java:432)
      at org.eclipse.jface.dialogs.Dialog.create(Dialog.java:1104)
      at com.sap.ndb.studio.bi.filedataupload.ui.wizards.pages.SelectTableDialog.create(SelectTableDialog.java:186)
      at com.sap.ndb.studio.bi.filedataupload.ui.wizards.pages.ImportFileSelectionWizardPage$14.widgetSelected(ImportFileSelectionWizardPage.java:779)
      at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248)
      at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
      at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1057)
      at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4170)
      at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3759)
      at org.eclipse.jface.window.Window.runEventLoop(Window.java:826)
      at org.eclipse.jface.window.Window.open(Window.java:802)
      at org.eclipse.ui.internal.handlers.WizardHandler$Import.executeHandler(WizardHandler.java:152)
      at org.eclipse.ui.internal.handlers.WizardHandler.execute(WizardHandler.java:279)
      at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:290)
      at org.eclipse.ui.internal.handlers.E4HandlerProxy.execute(E4HandlerProxy.java:90)
      at sun.reflect.GeneratedMethodAccessor33.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
      at java.lang.reflect.Method.invoke(Unknown Source)
      at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56)
      at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(InjectorImpl.java:243)
      at org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java:224)
      at org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextInjectionFactory.java:132)
      at org.eclipse.e4.core.commands.internal.HandlerServiceHandler.execute(HandlerServiceHandler.java:167)
      at org.eclipse.core.commands.Command.executeWithChecks(Command.java:499)
      at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:508)
      at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.executeHandler(HandlerServiceImpl.java:213)
      at org.eclipse.ui.internal.handlers.LegacyHandlerService.executeCommand(LegacyHandlerService.java:420)
      at org.eclipse.ui.internal.actions.CommandAction.runWithEvent(CommandAction.java:157)
      at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:584)
      at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:501)
      at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:411)
      at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
      at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1057)
      at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4170)
      at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3759)
      at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1113)
      at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
      at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:997)
      at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:138)
      at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:610)
      at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
      at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:567)
      at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150)
      at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124)
      at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
      at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
      at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
      at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:354)
      at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:181)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
      at java.lang.reflect.Method.invoke(Unknown Source)
      at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:636)
      at org.eclipse.equinox.launcher.Main.basicRun(Main.java:591)
      at org.eclipse.equinox.launcher.Main.run(Main.java:1450)
      at org.eclipse.equinox.launcher.Main.main(Main.java:1426)
    I'm sure many of you have come across this before. Any help will be much appreciated.
    Thanks in advance

    Hello Akhtar,
    Have you tryed to delete the heador row from your file?
    I received the same error when loading a csv file, but when I delete the heador row it worked.
    Best Regards,
    Juliana Genova

  • 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.

  • How to find Materialized views in OBIEE

    Hi gurus,
    how to find materialized views which are used in OBIEE?
    Do We see them in view log session after running a report?
    I have a requirement to find MV'S.Do we use MV'S in OBIEE?What is the use of MV?
    Kindly answer me.
    Thanks,
    siva

    Refer
    http://gerardnico.com/wiki/database/oracle/materialized_view

  • Quicktime file info missing in Finder column view???

    In the Finder column view my PowerMac G4 running OS X 10.3.9 shows all QuickTime audio and video file info along with the playable thumbnail video or music bar, including duration/running time and (for movies) dimension/aspect ratio in pixels.
    However, on my much newer iBook G4 from 2 years ago running OS X 10.4.10, those two helpful stats are missing. From what I've been told this helpful file date and aspect ratio data is indeed possible with 10.4 Tiger as it is in Panther but I can't see how to show them via either View preferences, QuickTime prefs, Apple's document files or even these message boards. If anyone could please help me I'd really appreciate it, thanks!!!

    Oh, sorry.
    No, I am running Quicktime 7.2 on both computers. I always install the latest updates when Software Update informs me of one and Quicktime doesn't use different versions for Panther & Tiger as far as I know.
    This has been this way for a long time and the only difference at any time in the past has been 10.3.x vs 10.4.x. I sort of accepted it was something not available in Tiger's Finder column view (since I don't remember doing anything specific in Panther to show that extra info) but then after someone pointed out to me that that should be something one can adjust (and after using common sense) I realized Tiger wouldn't disable or take away info provided in the earlier versions, in a sense downgrading something users may rely on.
    I don't think I asked: are you (or anyone reading this) showing the duration and dimensions of Quicktime audio and movie files in Finder column view under Tiger? ...or under Panther? Again, I'm referring to those that can be played directly in the preview in column view. Thanks.

  • Where or How Can I Find a Viewer of my Download by Time, Percentage and KB so to know how long it will take

    I'm trying to Download mbam Malwarebytes-Anti-Malware, because of a lot of trouble getting my Browser to get things on the Internet. I want to clean up this stuff, but I need the Program. I go on Site and Hit the Download and then See Nothing. I don't know if I am getting the Download. How do I get and find a view to see that I am getting my Slow Pace (Phone Line Modem ) ... 3.40 KB's a second) is a long time knowing if my waiting is worth it, if I can't see the slow KB'S and MB'S being Downloaded or not. I want a Viewer on this and where do I find it? I already spent 6 Hours of Failure, because I don't know why the Downloading is Failing on Me. I can't see what is going On!

    I use the Download Statusbar add-on for exactly the reasons you are mentioning. See the demo here
    [http://youtu.be/BUDqWrJ-Vao Using Download Statusbar]
    To install the addon, see
    [[Find and install add-ons to add features to Firefox]]

  • Finding a View Object...

    Hi All,
    How to find a view Object in Controller Class...
    Please let me know...

    Hi,
    View object can be accessed through the page's Application module method.
    E.g.
    OAApplicationModule am1 = oapagecontext.getApplicationModule(oawebbean);
    OAViewObject vo2 = (OAViewObject)am1.findViewObject("YOUR_VIEW_OBJECT_NAME");
    Hope this helps.
    Cheers,
    AD

  • Any way to set the Finder "Show View Options" across all folders on MacBook Pro?

    Hello. I would like to know if there's a way to set one Finder / folder view setup (Show View Options) across every folder and sub-folder on OSX?
    I don't like having to manually set up the "view options" for each and every folder from scratch .. I have 1 setup / template that I like and would like to apply it across the board to every folder that I ever open on OSX..
    Is this possible?

    At the bottom of the window that opens in Show View Options there should be a button that enables you to make the current settings the default.

  • To find MM02 views available for an userid

    Hi All,
    i need to write a code to find the MM02 views available for my userid. For differnent materials, different views are available so view position of a particular view is getting different. Please help me to find the views available for my userid? any code or FM or anything is there?
    if i find the available views for my userid, then i can find the exact position of a particular view.
    Thanks in advance,
    Srilakshmi.

    Hi,
    you can use table MARA with field VPSTA-Compl. maint. status. It will give you information which views for which material is created.
    Here are the list of status related with views.
    A     Work scheduling
    B     Accounting
    C     Classification
    D     MRP
    E     Purchasing
    F     Production resources/tools
    G     Costing
    K     Basic data
    L     Storage
    P     Forecasting
    Q     Quality management
    S     Warehouse management
    V     Sales
    X     Plant stocks
    Z     Storage location stocks
    Regards Vassko!

  • Finder's view in date modified order?

    How can I modify Finder to list items in the order they were modified, downloaded or any other way I may need to have to view them in the order other than the one shipped with Finder?
    I'm a former Windows user and Windows Explorer gives you choices to list them by name, size, type, date modified and several other ways.
    Thank you.
    Roxy

    Use the Finder's View menu to display the current window as a list, and then click the Date Modified text near the top of the window.
    (14712)

  • Where are the Finder list view folder expand arrows

    How do I do the same thing in Lion equivalent to the Finder List View folder expansion arrows? They're gone in the Application folder!

    Check the following:
    1. Go to Application folder (or any other folder with similar behavior)
    2. Chose "View" --> "Arrange by" --> "None"
    Guess this was it!
    Best!

Maybe you are looking for

  • I lost my laptop I didn't back up and I just bought a new one .How can I get all the songs I bought in itunes store back to my new laptop??

    can someone help me please? I lost my laptop on Monday and I didn't back up. I just bought a new macbook air so I know I have to install all my applications and softwares again but I was told I could get my old itunes library I mean all the music I b

  • Screen noise when using an ILO moniter

    We recently purchased a Mac mini and bought a ILO 15" moniter from Walmart to use with this machine. It's fine when you first boot it up but after you open an application the screen starts to get lines accross it and they increase until you can barel

  • I cannot locate - on-line or in stores - an adaptor that modify's screen

    I have an 'old style' monitor - an Apple flat screen I bought in '02. The hook up for the monitor is longer than the hook up that is on the 'new' G5. The correct hook up is not even available at Apple any more. Does anyone have any suggestions about

  • Actual Freight Costs - Production Order

    How can we include actual Freight Costs (to be paid to outside Vendor) on a Production Order? We need to be able to create an Invoice to our Vendor for freight (or other services) but shouldn't this be linked to the Production Order? Any help appreci

  • JMS communication error

    Hi, I have deployed JMS application on Oracle 9i Application Server. I have made the necessary configurations in jms.xml(eg., Setting the queue connection factory and the name of the queue). Now when I try to run the client application I get the foll