Edit the top navigation to put Cases under Sales

Hello,
In my organization, Sales Leads and Opportunities can lead to Cases.  It would be great to have the Cases screen under the Sales navigation (is under Services by default).
When I look at the Case entity in the Customizations menu, the "Sales" box is greyed out.
Has anyone found a workaround for this?
Thanks.

See if this helps
http://blog.allegient.com/blog/changing-those-pesky-tiles-in-the-crm-2013-menu-bar
Regards, Abhishek Bakshi If you find this post helpful then please Vote as Helpful and Mark As Answer. Check my blog on https://mydynamicscrmblog.wordpress.com/

Similar Messages

  • System.ArgumentException when trying to edit the top link bar

    Whenever I try to edit the top link bar of my SharePoint site, I get a page that just says "New Navigation Link."  That's fine, the link bar is empty, but when I click on that, IIS crashes:
    Server Error in '/' Application.
    Value does not fall within the expected range.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.ArgumentException: Value does not fall within the expected range.
    Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
    Stack Trace:
    [ArgumentException: Value does not fall within the expected range.]
    Microsoft.SharePoint.ApplicationPages.NavNodeCreatePage.OnLoad(EventArgs e) +1471
    System.Web.UI.Control.LoadRecursive() +95
    System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +2936
    Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.18447

    Hi,
    According to your description, my understanding is that the error occurred when editing the top link bar in SharePoint 2013.
    As the error message is very common, I recommend to check the ULS log for detailed error message for further research.
    For SharePoint 2013, by default, ULS log is at C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS.
    Here is a similar thread for you to take a look:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/e6620d12-4995-4fb8-a75e-6b6c54a2adf8/cannot-modify-global-navigation?forum=sharepointcustomizationlegacy
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • I want to implement three level Horizental navigation on the top navigation and menu items are created based on the data available in a SharePoint List.

    Hi All,
    I want to implement three level Horizental navigation on the top navigation and menu items are created based on the data available in a SharePoint List.
    Implement this requirement through customization, how can i start any help
    Thanks

    Hello,
    You can follow these links to get the result that you want. You can get the desired result either using the custom list or a site map. Please make sure when you edit the master page, dont work on the original v4.master. Always make a a copy and then work
    on it.
    This link will show you how get that navigation using a list.
    http://www.bitsofsharepoint.com/BlogPoint/Lists/Posts/Post.aspx?ID=60
    This link will show you how get that navigation using a sitemap.
    http://www.sharepointdiary.com/2012/01/custom-top-navigation-using-sitemap.html
    Please mark as "Answered" if this helped you.
    Thanks,
    norasampang

  • After upgrading to IOS 5.1 I no longer can see Verizon at the top of my Iphone and under settings general Network says Not Available Why is this? Did the upgrade cause this?

    after upgrading to IOS 5.1 I no longer can see Verizon at the top of my Iphone and under settings>general>Network>says Not Available Why is this? Did the upgrade cause this?
    steve

    See this tip --> http://support.apple.com/kb/TS1559
    If this doesn't resolve it you most likely have a hardware failure. Fortunately, your phone is in warranty, so if you take it to an Apple store they will replace it.

  • With brand new iphone 4s when plugging into computer itunes shows a blank page with an apple logo in top left and a small lock in the top right. right clicking iphone under devices shows only eject.

    with brand new iphone 4s when plugging into computer itunes shows a blank page with an apple logo in top left and a small lock in the top right. right clicking iphone under devices shows only eject.

    Having same issue here:
    https://discussions.apple.com/message/19043181#19043181

  • Hi gurus in ALV how to edit the fields on out put list

    hi gurus in ALV how to edit the fields on out put list

    hi
    REPORT ZSB_ALV_EDITABLE_SAMPLE.
    TABLES: SFLIGHT.
    DATA: gc_container TYPE scrfname VALUE 'LIST_AREA',
    gc_custom_container TYPE REF TO CL_GUI_CUSTOM_CONTAINER,
    gc_grid TYPE REF TO CL_GUI_ALV_GRID,
    gs_layout TYPE LVC_S_LAYO,
    gt_fieldcat TYPE LVC_T_FCAT.
    DATA: ok_code TYPE SY-UCOMM.
    DATA: gt_outtab TYPE TABLE OF SFLIGHT.
    *DYNPRO
    CALL SCREEN 100.
    *& Module STATUS_0100 OUTPUT
    MODULE STATUS_0100 OUTPUT.
    SET PF-STATUS '100'.
    CREATE OBJECT gc_custom_container
    EXPORTING
    container_name = gc_container
    EXCEPTIONS
    cntl_error = 1
    cntl_system_error = 2
    create_error = 3
    lifetime_error = 4
    lifetime_dynpro_dynpro_link = 5
    OTHERS = 6.
    CREATE OBJECT gc_grid
    EXPORTING
    i_parent = gc_custom_container
    EXCEPTIONS
    error_cntl_create = 1
    error_cntl_init = 2
    error_cntl_link = 3
    error_dp_create = 4
    OTHERS = 5 .
    PERFORM prepare_field_catalog CHANGING gt_fieldcat .
    PERFORM prepare_layout CHANGING gs_layout .
    PERFORM get_alv_display.
    ENDMODULE.
    *& Module USER_COMMAND_0100 INPUT
    MODULE USER_COMMAND_0100 INPUT.
    OK_CODE = SY-UCOMM.
    IF OK_CODE = 'BACK'.
    SET SCREEN 0.
    LEAVE SCREEN.
    CLEAR OK_CODE.
    ENDIF.
    ENDMODULE.
    FORM prepare_field_catalog CHANGING gt_fieldcat TYPE LVC_T_FCAT.
    CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
    EXPORTING
    I_BUFFER_ACTIVE =
    I_STRUCTURE_NAME = 'SFLIGHT'
    I_CLIENT_NEVER_DISPLAY = 'X'
    I_BYPASSING_BUFFER =
    I_INTERNAL_TABNAME =
    CHANGING
    ct_fieldcat = gt_fieldcat[].
    ENDFORM.
    FORM prepare_layout changing p_gs_layout TYPE lvc_s_layo.
    p_gs_layout-zebra = 'X'.
    p_gs_layout-edit = 'X'.
    ENDFORM. " prepare_layout
    FORM get_alv_display .
    SELECT * FROM sflight INTO TABLE gt_outtab UP TO 10 ROWS.
    CALL METHOD gc_grid->set_table_for_first_display
    EXPORTING
    I_STRUCTURE_NAME = 'SFLIGHT'
    IS_LAYOUT = gs_layout
    CHANGING
    it_outtab = gt_outtab
    IT_FIELDCATALOG = gt_fieldcat
    ENDFORM. " get_alv_display

  • Has anyone cut off the top "Handles" to make case shorter?

    I am considering placing a Mac Pro under a desk with limited vertical clearance- has anyone modified the case by cutting of the top handles to make the unit smaller vertically? Assume this would void all warranties..

    Kenneth are you crazy bonkers? If you really have to why not pop down to your local Ikea store and purchase a cheap and cheerful desk that will hold the Mac Pro instead of putting the angle grinder to your computer? Or better still get some MDF from your local DIY store and make your desk a little bit taller? Surely that would be easier and safer than undertaking sheet metal work? Only joking.
    On a serious note, I would also imagine that vibration and/or heat generated by cutting off the handles would risk the delicate internals of the computer.
    By all means why not cut them off, especially if the desk is an antique or worth more than the computer.
    Message was edited by: sam1974

  • How to edit the top sites on safari 7.0.1

    The edit button that usually sits at the bottom of the top sites page in safari no longer exists and i can't figure out how to change my top sites or the amount of top sites displayed.

    Safari 7
    Top Sites Edit button is moved to top left corner the tile from the bottom left corner.
    Hover the mouse pointer near the top left corner of the tile,
    Edit button and the pin should appear.
    Best.

  • I have the newest IPad and want to download photos from my computer to the IPad.  The instructions say to put photos under My Pictures, but I have thousands of photos in that category.  I don't want to download all my photos, just the newest ones.  Help!

    I have the newest IPad and want to download photos from my computer.  However, I have thousands of photos stored under My Pictures on my desktop.  How can I transfer just the newest album to my IPad?  I'm afraid that all the photos will be downloaded.  Please advise.

    Another way. You can use a USB flash drive & the camera connection kit.
    Plug the USB flash drive into your computer & create a new folder titled DCIM. Then put your movie/photo files into the folder. The files must have a filename with exactly 8 characters long (no spaces) plus the file extension (i.e., my-movie.mov; DSCN0164.jpg).
    Now plug the flash drive into the iPad using the camera connection kit. Open the Photos app, the movie/photo files should appear & you can import. (You can not export using the camera connection kit.)
    Secrets of the iPad Camera Connection Kit
    http://howto.cnet.com/8301-11310_39-57401068-285/secrets-of-the-ipad-camera-conn ection-kit/
     Cheers, Tom

  • How to edit the short navigation url in portal favorite folder in bulk

    Hi,
    We have around 100-150 users who have added a specific url in their portal favorite section. This url  has changed now and we need to update the same for all the users. We tried using various search and replace tools by connecting using portaldrive. We even wrote a KM API which will do the search and replace. But both these programs are not able to change the .url files whih are created from KM. But if we create the same by portal drive we are able to find and replace.
    Regards,
    AJ

    Hi Steve,
    Thanks for the reply.
    I guess you have wrongly interpreted the problem, let me more clear on this.
    Currently we have around 150 users accessing the portal and suppose they have added a link named ABC with url http://www.abc.com in their favorites. Now if we need to change this url to new one, like http://www.xyz.com, then one solution is, go to Favorites folder of each user in userhome and change there manually. But in case of large no. of user database this will be a cumbersome task, so want to know that how to do bulk replace and find in KM. We have tried developing a KM api and also used a third party tool for the same but all in vain.
    Can anyone pls suggest some other way ??
    Regards,
    AJ

  • Edit the top line tool bar

    How can I remove items from the very top line of my screen where you have the date, battery percentage, wifi, etc? I've removed an application from my Mac but the icon (Carbonite) remains.

    Which Carbonite? The game add-on or the cloud backup service?
    You likely didn't remove all of the auxiliary files. Contact the developer to find out how to completely uninstall all portions of the application.
    Clinton

  • Editing the Top Menu

    I don't ever intend to use my iPod to view Contacts or Pictures. Can I remove these items from the iPod's menu?
    2GB iPod -- latest firmware -- latest PowerPC iTunes
    G4 Single Processor   Mac OS X (10.4.7)  

    Go to settings-->main menu and then for the items you don't want to show on the main menu click on them. They should click from "on" to "off".

  • How do i edit the links in the top nav bar on an enterprise wiki site?

    I would like to edit and change the links in the top nav bar on my enterprise wiki.
    Currently the links are "About this wiki" and "Recent" a drop down menu with links.
    I would like to change "About this wiki" to a "Home" page link and remove the "Recent" drop down menu and links. I also would like to be able to add more links to the to the top nav bar.
    I there anyway I can do this one an enterprise wiki site?
    Thanks
    James T.F

    Hi,
    According to your post, my understanding is that you wanted to edit the links in the top navigation bar on an enterprise wiki site.
    I try to reproduce the issue, however, my enterprise wiki site don’t have the drop down menu.
    How did you add the Recent link?
    How did you create the drop down menu?
    Did you use the seattle master page or olso master page?
    It will be better if you can descript more detail and provide some screenshots.
    You can use JavaScript to add and remove the items in the drop down menu.
    More information:
    Add items in Drop Down List or List Box using Javascript
    Asim Sajjad: DropDownList Add/Remove Item Using Javascript
    HTML DOM Select remove() Method
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Style EDIT LINKS pencil button in top Navigation

    On the top navigation of my site I've styled the menu with CSS and a custom master page.  However the 'EDIT LINKS' pencil button is an image coming from spcommon.png as an HTML <img> and it is an incorrect color.  
    How to do I change this image or replace the spcommon.png with my own version?

    Hi Justin,
    The icons in SharePoint sites are generated via sprites, you could type the url in the picture in your original post :
    http://sp/sites/sitename/_catalogs/theme/Themed/
    D9FA9D0B/spcommon-B35BB0A9.themedpng?ctag=5
    It will display a picture as below, and different themes have different pictures like this.
    You could use SharePoint Color Palette Tool to generate theme as you like. Then import the file into the Themes Library :
    http://sp/sites/sitename/_catalogs/theme/Forms/AllItems.aspx .
    The link below provide more detail information for your reference:
    http://blogs.c5insight.com/Home/tabid/40/entryid/392/Update-Default-SharePoint-2013-Icon-Colors.aspx
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

  • How to remove the empty Top Navigation space on a main publishing page.

    What I did so far was to use snippet into the page (using Script editor) to do the following:
    a. Disable Top Navigation bar
    b. Disable the Title
    c. Remove the left nav bar
    d. Remove the search box on top right
    here is the code used so far:
    <style type="text/css">
    #titleAreaBox {
    display: none;
    #sideNavBox {
    display: none;
    #contentBox {
    margin-
    .ms-fullscreenmode #contentBox
        margin-
    h1.ms-core-pageTitle { display: none; } /* hide page title next to the logo */
    </style>
    As you see in the following picture, there is lot of space left at the Top Navigation area and I want it to go away, at least the most of it. How do I do that using the snippet code? Is there any other way round? I am not a web designer, so please keep it
    clean and simple when you try to explain to me what to do.

    Hi,
    From your description:
    a. Disable Top Navigation bar
    b. Disable the Title
    c. Remove the left nav bar
    d. Remove the search box on top right
    Here is the CSS code:
    <style>
    #sideNavBox { display: none }
    #contentBox { margin-left: 20px }
    .ms-core-navigation {display: none }
    h1.ms-core-pageTitle { display: none }
    #searchInputBox { display: none }
    </style>
    Here is the screenshot:
    Regards,
    Rebecca Tu
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

Maybe you are looking for

  • HELP!!! I Can't Authorize My Nook

    I've tried everything posted on this site to get my nook authorized to read the books from the public library. I deleted Adobe and relaunched it,but it still won't authorize my device. Any advice would be helpful. I'm ready to return it, but it's for

  • No video/audio on TV

    I bought Griffin A/V cable for Ipod Touch its not working at all I need help

  • Invalid account

    Hello Experts, When updating existing vendor master data, I've got error message invalid down payment account... I have searched through forum but can't find the solution. I appreciate your answer. John

  • Stock Items by Supplier

    Hi Guys, Sorry to trouble you all again, I am learning I promise :O) I am writing a query to show All of my current items in stock and from which supplier they were purchased from. Could someone please advise which tables I need other than OITM and i

  • Mobileme to icloud - all contacts lost !

    While doing the migration from my mobileme to icloud this morning, I lost all my contacts ! I did the migration online, on a Mac, on me.com website. Is it supposed to happen ???