Displaying View Assigned In Outlook

I have Outlook 2010 and use multiple views. Unless I go to Change View, I do not know what view is applied and even then the name is very short. Is there a way to see what view is applied without going to Change View?
Shawn

Hi,
The only way to check what view is applied in Outlook is going to Change View. If you don't want to click View tab > Change View, you can add the Change View command to the Quick Access Toolbar in Outlook Ribbon. To do this, click View
tab, right-click on Change View button and click Add to Quick Access toolbar. Now, you can just click the Change View button from the Ribbon.
Regards,
Steve Fan
Forum Support
Come back and mark the replies as answers if they help and unmark them if they provide no help.
If you have any feedback on our support, please click
here

Similar Messages

  • "Outlook cannot perform search. Cannot display view." error coming up when searching shared calenders in Outlook 2010.

    Hi,
    So I am having issues with the advanced find feature in Outlook 2010. When I goes to search a shared calender it gives me the "Outlook cannot perform search. Cannot display view." error. It is odd because it only does it with shared calenders
    and only when a calender is selected. If I search my inbox it works fine. It also works fine when I first open Outlook and perform a search without selecting any calenders. If I select on it then gives me the error. I have tried resetting the views, I ran
    cleanfinders and I went through this page (http://www.msoutlook.info/question/47) and rebuilt the index/scanned the pst/etc. Nothing seems to be working. I would appreciate some help if anyone knows why this would be happening. 
    Thank you for your time,
    Gabe M. 

    Pst file size would not cause this and Outlook 2010 can have huge pst files as long as you use the new Unicode format.
    If the problem is a corrupt view, cleanviews will clear it. I'm sure there are other causes besides corrupt views, but I can't think of any at the moment.
    Does it work in Safe mode? To open Outlook in Safe mode: Close Outlook then hold Ctrl as you click on the Outlook icon. You'll get a message asking if you want to start in Safe mode. Click Ok.
    Diane Poremsky [MVP - Outlook]
    Outlook & Exchange Solutions Center
    Outlook Tips
    Subscribe to Exchange Messaging Outlook weekly newsletter

  • Cannot display view BP_HEAD/BPHEADOverview of UI Component BP_HEAD issue

    Dear all, I am facing a strange issue in CRM 7.0 web-UI.
    I have created an attribute set with attributes and was trying to assign this to an Individual account.
    The moment I click on "Marketing Attributes" assignment block, I face the following error message:
    Cannot display view BP_HEAD/BPHEADOverview of UI Component BP_HEAD
    An exception has occurred Exception Class  CX_BSP_WD_INCORRECT_IMPLEMENT - Window 'BP_DATA/MarketingAttributesEOVPList' is not defined in the component 'BP_DATA' 
    Method:  CL_BSP_WD_COMPONENT_USAGE=>GET_INTERFACE_VIEW_CONTR 
    Source Text Row:  28
    Window MainWindow of UI Component BP_HEAD cannot be displayed
    An exception has occurred Exception Class  CX_BSP_WD_RUNTIME_ERROR - View BP_DATA.BP_DATA/MarketingAttributesEOVPList in component BP_HEAD could not be bound 
    Method:  CL_BSP_WD_VIEW_CONTROLLER=>BIND_VIEW 
    Source Text Row:  165
    I tried with many different business roles but always faced the same problem.
    Consequently, I had to logon using GUI, open tcode BP and assign the marketing attributes.
    After that, when I try to login in web-UI, I face the same issue again.
    Tried to search in Forums but couldn't get a relevant situation. So please suggest if you have any solution.

    Hi Animesh,
    Please check the runtime repository for the component bp_data. In the component Interface, add the window 'BP_DATA/MarketingAttributesEOVPList'. This should resolve your problem.
    Regards,
    Radhika

  • Clicking on the View More in Outlook....hyperlink does nothing!!

    Does this work for anyone using Lync 2013 FE, Lync 2013 client on Windows 7. Exchange version is 2010 SP3. Everything in the client works just fine but when I click on the Conversations tab, I see conversations going back about 6 months. I have conversations
    going back a year in my Conversation History folder in Outlook. When I click on the hyperlink on the bottom of the Conversations page, "View More in Outlook", nothing happens. No error, no popup at all. My configuration looks good. MAPI and EWS report
    OK. Everything else works fine. A bug perhaps?
    Interesting that it works OK with Windows XP and Lync 2010 client. Everything else being the same.

    Hi,
    It should popup Outlook interface when you click “View More in Outlook” in Lync client.
    Could you view the conversation history back to a year when you manually check the conversation history on Outlook?
    Please try to use the account to another well worked computer and test if the issue happen.
    Please try to use another Lync account to login Lync and Outlook to test the issue.
    Please also try to disable add-ins about Lync on Outlook and then enable again, restart Lync client and Outlook to test the issue again.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • Marketing Calendar : Display Views

    Hi All,
    We are working SAP CRM 2007 , we need to hide some of the standard Views available in Marketing calendar drop downs.
    I cant see any Options available in SPRO settings of Marketing Calendar also.
    Any Inputs are greatly appreciated
    Best Regards,
    Chandu

    Hello Chandu,
    You can assign the view to the object type. for example: If you are not using TPM, then you assign all the unwanted views to the TPM Object.
    Now when you search in the marketing calendar and since you dont have TP's in the search result, those views assigned for TP will be automatically hidden.
    Since it is not recommened to delete any standard delivered entries, this is an option.
    Thanks & Regards
    Raja Pamireddy
    CRM Marketing forum Moderator.

  • How to handle the button "cancel" in a dialog box for displaying views?

    Hello!
    I ve a question about handling the cancel button in a dialog box for displaying views.
    I ve already implemented the dialog box by using the following code:
    METHOD eh_onnewqact.
      DATA stitle TYPE string.
      IF m_popup IS BOUND.
        stitle = cl_bsp_runtime=>get_otr_text( alias = 'ZCC_ICRM/NEW_TASK' )."cl_wd_utilities=>get_otr_text_by_alias( 'ZCC_ICRM/NEW_TASK' ).
        m_popup = comp_controller->window_manager->create_popup(
          iv_interface_view_name = 'ZCC_POPUP_NEWBT/NewQActWindow'
          iv_usage_name = 'CUNewQAct'
          iv_title = stitle
        CALL METHOD m_popup->set_on_close_event
          EXPORTING
            iv_view       = me
            iv_event_name = 'NEWQACT_POPUP_CLOSED'.
      ENDIF.
      m_popup->open( ).
    ENDMETHOD.
    My dialog box consists two buttons - cancel and create.
    The cancel buttons should close the popup and the create button should create an entity of a specified object. but let us come to the cancel button. I did´nt find any information about implementing an cancel button. So, how should I implement it? I thougt
    me->close( ). But that didnt works!
    Could u give me further information about that, because my cancel event-handler is empty?
    method EH_ONCANCEL_QACT.
    endmethod.
    After that I would know how my calling view could know that the user pushes the Create Button and how the data of 2 inputfields of the dialog box finds their way to the calling view in order to process this data there?
    Thank you very much!

    Hi Michael,
    thank you for your advice! This problem is solved...
    ...but I have another issue. Ive implemented 2 editable fields in my popup. The user should fill that fields with context and that context should be processed in the calling view of my popup.
    My question is how to transfer these information from my popup to my calling view or method?
    I tried the following...
          lv_context_node ?= m_popup->get_context_node( 'QUICKACT' ).
          IF lv_context_node IS NOT INITIAL.
            lv_text = lv_context_node->get_date( attribute_path = '' ).
          ENDIF.
    But it doesnt work! The context node object is always empty/initial.
    Thank you!
    PS: Another possibility could be that the object / node of the calling view is transferred to the pop-up in order to process it there.
    Edited by: Marcus Findeisen on Feb 22, 2011 12:13 PM

  • Display view scrambles pages that display fine in browser

    Help would really, really be appreciated.
    I have a number of pages for a site (at
    www.cognographics.com) which display perfectly in the browser.
    Until recently, they also displayed perfectly in display view in
    DW4. Then I replaced my PC (power surge zapped it), reinstalled
    DW4, and now the same pages appear scrambled, with layers scattered
    across the page, tables mixed up, etc.
    Nothing changed in the code, and as I said, the pages display
    fine in IE7. I know the code is not the cleanest, with some of the
    styles in the CSS style sheet and others defined on the page, but
    (a) the browser does not complain and (b) when I created the pages
    in DW they looked fine.
    I have installed DW4 on four different PCs, I've even tried
    my pages in a friend's DW MX -- same result: Perfect preview in
    browser, but pages are messed up in display view in DW.
    I'm at my wits end -- any help would really, really be
    appreciated
    Thanks
    Johan

    > I downloaded several free templates
    You got what you paid for, no?
    > Now, how the ^!#!@#$ is this possible? And why would
    these templates
    > display
    > fine in DW on my PC a few months ago, and now suddenly
    they're screwed up?
    It's entirely possible. Dreamweaver's Design view is not
    nearly so
    forgiving as a browser's rendering.
    > I've tried an upgraded DW (MX);
    Ahh right. The bad news is that DMX is just pretty awful at
    rendering CSS
    layouts. Unfortunately the only thing you can do about this
    is to upgrade
    to a more current version of DW. The Design view in DW CS4 is
    perfect, for
    what that's worth. This page contains all the elements that
    will cause DMX
    to fall down (floated containers, and absolute and relative
    positioning).
    Sorry about that. And since DW4 is the immediate predecessor
    to DMX, it's
    not going to do as well as DMX even.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "JohnPerth" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hi -- thanks for your comments -- much appreciated.
    >
    > I carefully checked the validation, but unfortunately
    sorting out those
    > problems didn't fix the problem.
    >
    > Here's the thing: I downloaded several free templates
    from
    >
    http://www.freewebsitetemplates.com
    -- including the template which I
    > originally I used for my site (it's called
    architecture).
    >
    > So, these templates have not been touched by me -- their
    code is still
    > 100%
    > unmodified. But when I open them in Dreamweaver -- same
    problem: they are
    > entirely screwed up in Display view, but they render
    just fine in the
    > browser.
    >
    > Now, how the ^!#!@#$ is this possible? And why would
    these templates
    > display
    > fine in DW on my PC a few months ago, and now suddenly
    they're screwed up?
    >
    > You can see the magnitude of the problem. I've tried
    files that have not
    > been
    > modified by me. I've tried an upgraded DW (MX); I've
    tried both DW4 and DW
    > MX
    > on several different physical PCs; I've tried them on
    both XP and Vista
    > machines. Still the problem persists: In display view,
    the pages are
    > screwed
    > up, while they render just fine in the browser.
    >
    > Where do I go from here?
    >
    >
    >

  • Apple says  Reminders works with Outlook, but I can't find where the lists are displayed in Office or Outlook  once they are synced.

    Apple says  Reminders works with Outlook, but I can't find where the lists are displayed in Office or Outlook  once they are synced. Any suggestions?

    I'll guess you've already discovered the answer to this, but just in case:
    Reminders works with Outlook tasks by syncing with iCloud, or through Exchange. You can't sync iOS Reminders with Outlook Tasks via USB/iTunes (like you can do with Notes, Calendar, Contacts).
    So the marketing material on Reminders is a little misleading in that it's not specific enough -- there is no syncing without one of those intermediary systems mentioned above.
    On a side note, syncing Tasks/Reminders via iCloud is not very good in my opinion:
    Requires that you sync to the cloud, even if you have no other use for storing personal data in the cloud.
    Requires that the iCloud Control Panel be installed on your PC (not sure about Mac).
    After syncing, you'll find new Calendar and Task groups called "iCloud" have been created in Outlook. The calendar groups appear to be created even if you're only syncing Tasks/Remminders (not sure why).
    Reminders are stored in the new group (noted above) called "iCloud" rather than in your default Tasks group. This seems to me to be a sort of "parallel" sync, rather than a true sync with Outlook. There are oter implications of your synced tasks being in the new group that I won't go into here, but you can search the interwebs to learn more.
    In my own case, I tried iCloud syncing, decided that I didn't like it for the reasons stated above, and then uninstalled (Control Panel and new Outlook groups) with no apparent ill effects.
    Though I don't guarantee you'll have the same results, it might be worth a try to see if it suits your purposes.

  • Editing Text in Dreamweaver Display View

    I have just started using Dreamweaver CS4. In older versions
    of Dreamweaver, I'm used to seeing text in Display view and being
    able to edit the text directly in Display view, rather than having
    to edit text in Code view. But when I'm trying to edit text in
    Display view on a webpage that has text in a scrollable window,
    Dreamweaver does not allow me to scroll down the scroll box, so I
    can't edit text that is lower down in the scrollable area.
    Anybody have an idea on how I can accomplish this?
    Thanks very much.
    Jason

    That would be the way....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Osgood" <[email protected]> wrote in
    message
    news:go5tfn$r58$[email protected]..
    > Double click in the scrollable area and see what
    happens.
    >
    >
    > jsaffer1 wrote:
    >> I have just started using Dreamweaver CS4. In older
    versions of
    >> Dreamweaver, I'm used to seeing text in Display view
    and being able to
    >> edit the text directly in Display view, rather than
    having to edit text
    >> in Code view. But when I'm trying to edit text in
    Display view on a
    >> webpage that has text in a scrollable window,
    Dreamweaver does not allow
    >> me to scroll down the scroll box, so I can't edit
    text that is lower down
    >> in the scrollable area. Anybody have an idea on how
    I can accomplish
    >> this?
    >>
    >> Thanks very much.
    >>
    >> Jason
    >>

  • Adding custom fields to table view assignment block

    Hi All,
      I want to add two news fields to 'Service Contract Item Level' in 'Object List' assignment block. How can i add these two custom fields to table view assignment block using AET. I have tried to add new fields using AET but there is no business object supports to my requirement.
    Thanks & Regards
    Nitish

    Hi Nitish,
    As naveen sadid use Cutomer_i object . I guess it will be more appropriate.
    And following link will be helpful for AET creation.
    CRM 7.0 How to --4 Adding Custom Fields With The New Application Enhancement Tool (AET)
    Regards
    Loks

  • Problems viewing email from outlook clients

    hey
    i am getting something like this on my apple mail when viewing email from outlook with attachments
    ------=_NextPart_00101C8CF90.2BC31259
    Content-Type: text/plain;
    charset="iso-8859-1"
    content-transfer-encoding: quoted-printable
    <<mehlerkabelkatalog bmakabel.pdf>> detto
    Lg frb
    -----Urspr=FCngliche Nachricht-----
    Von: Name changed
    Gesendet: Montag, 16. Juni 2008 09:53
    An: 'Name changed'
    Cc: 'IName changed'
    Betreff: mehlerkabelkatalog bmakabel.pdf
    zum hinzuf=FCgen
    Lg frb
    ------=_NextPart_00101C8CF90.2BC31259
    Content-Type: application/octet-stream;
    name="mehlerkabelkatalog bmakabel.pdf"
    Content-Transfer-Encoding: base64
    Content-Disposition: attachment;
    filename="mehlerkabelkatalog bmakabel.pdf"
    JVBERi0xLjMKJcfsj6IKNSAwIG9iago8PC9MZW5ndGggNiAwIFIvRmlsdGVyIC9GbGF0ZURlY29k
    ZT4CnN0cmVhbQp4nNVcyZKcN46+11PkMXOm6jf35Si13avdM9PWaCKmew61ZC1TlSW5Fsuhpo3
    this goes up to a kilometer down and attachment not readable
    i am using mac os x on english with german keyboard layout
    what i can see is that the text encoding wont change anything
    any clues
    J

    Unfortunately - this happens with Outlook generated messages on occasion. Sometimes even Entourage can't cope. I find that the Gmail web interface does a pretty good job of dealing with messages that nearly every other email client fails with.
    Equally, there are occasionally problems for Outlook users when they receive messages from Thunderbird users.
    I am convinced that the problem lies in Outlook, and that there is little you can do about it.
    Sorry to be the bearer of bad news. Perhaps I am wrong.... (hint for someone else to come in with a solution).

  • Cannot display view MainWindow of UI Component BT111M_OPPT

    Hi Experts
    I have acceidently enhanced the std component & after that all the views have been deleted.
    Now the issue i am facing is, whenever, i am trying to open the opportunity creation screen, i am getting an error saying
    *Cannot display view MainWindow of UI Component BT111M_OPPT
    An exception has occurred Exception Class CX_BSP_WD_INCORRECT_IMPLEMENT - Define component usage 'CUBTPOPUPS'
    Method: CL_BSP_WD_REPOSITORY=>GET_CMP_USAGE_DEF
    Source Text Row: 20
    An exception occurred during the activation of target view CUBTOpptOverview.MainWindow for the navigation
    An exception has occurred Exception Class CX_BSP_WD_RUNTIME_ERROR - View CUBTOpptOverview.MainWindow in component BT111M_OPPT could not be bound
    Method: CL_BSP_WD_VIEW_CONTROLLER=>BIND_VIEW
    Source Text Row: 165
    Saved Searches *
    Is there anyway, the default / standard settings can be retained?
    Thanks & Regards,

    How did you delete the views? Have they been deleted from the enhancement or from rumtime repository?
    Did you also try to delete your enhacement and see if it works fine?
    There is a button in BSP_WD_CMPWB first screen, by clicking that you can show/hide the enhancement set field. Try to see by hiding the enhancement i.e. by navigating to the standard view that the configuration of run time repository is fine.
    Regards
    Prasenjit
    Hi Prasenjit,
    Thanks for continuous help. I havent deleted the standard views either from enhancement OR runtime repository. I selected the view & hit the enhancement button which is available on the screen, it gave some warning & i continued.
    After compliation, i saw that the std views are missing & when i tried to open the opportunity creation screen i am getting the said error.
    regards,

  • How to view a shared outlook calendar

    Hi - I hope someone can help me. I have a shared outlook calender that we all use at work however I can only view my own Outlook calender on my iPhone 4.
    Is there any way to view shared calenders?

    I am guessing this is still the case with exchange 2007..
    If anyone has a work around please share

  • IPad can find cellular connection settings no longer displays View Account Tab

    yesterday iPad could not find cellular data connection...Settings under cellular data no longer displayed View Account tab.  (Image below is from my older iPad to show what is missing on newer one with the issue.)
    iPad then displayed notification that it could not connect to cellular data and said to restore iPad.
    I tried to restore via cable to iTunes on home iMac.  All attempts failed.
    By the way I checked the AT&T Accout which is a grandfathered "unlimited" act that is current and up-to-date
    Can anyone help?

    I would take the SIM out and then reinsert it. Next I would restore from backup. Lastly I would restore to factory new to see if it works in that condition before you add things to the iPad.

  • How to findout Database view assign to ABAP Programme (finding tables known

    Any way to find out Database views assign to ABAP Programme.
    Need to secure Programme through SE54 by assigning Authrization group to Views But dont know the views.
    Through se93 and then se80 gives only tables used in Trx not views.
    Any help?

    Try if the t-code SE12 is of any help to you. For more details on your query, a search or posting in the ABAP forum will be helpfull.
    [ABAP Dictionary;
    Regards,

Maybe you are looking for

  • Error 45054

    Itunes won't open and it says "An unknown error occurred (-45054)"

  • WRT310n Ver 2-slowly loses connection speed

    I have had my WRT310n for at least a year now.  When I first started using it, my broadband speed would drop after a while till it was sometimes under 1mb.  I have Charter high speed.  I checked around here and found that heat may have been an issue

  • Consolidating queries / reports in one report

    Hi guys, I have three reports in SAP BW (im using SAP BI 7.0): 1) Credit Management 2) Sales 3) Profit Center Each report has it´s own view, data source and infocube. So for example the customer number, company code are the same. The key figures are

  • Illustrator CC slow when opening files

    I recently upgraded to a full CC subscription. I really love it. But it takes Illustrator CC a long time to open a simple AI file. Even if it's just a simple file on my desktop. I know it takes a while when you open files that contain a lot of embedd

  • N97 Automatically puts a certain number on hold wh...

    I have a problem with a couple of numbers I call that are stored in my directory. When I call them when they answer my N97 puts the call on hold, meaning the person I am calling hears the hold tone and I hear nothing until I press unhold. This only h