I create shortcut for user to get a cr but not working

1. added report to Customer service folder
2. created shortcut in closure group, which is attached to Customer service.
the new report is not appearing when I login as that user. why? I can see the report shortcut when viewing in CMC but not when actual  logging in.

Please allow me to re-phrase your question,
1. Created a Report in Folder X
2. Created a shortcut for the above report and placed in Folder Y
User in Group A can view the report in Folder X but can't see the the shortcut in Folder Y, is that right?
Or
User in Group A can view the shortcut in Folder Y from CMC but not from BI Launchpad?

Similar Messages

  • Why does default keyboard shortcut for show/hide baseline grid (opt+command+') not work?

    Why does default keyboard shortcut for show/hide baseline grid (opt+command+') not work?

    Here's where you need to change the settings: System Preferences > Keyboard > Keyboard Shortcuts:

  • Why do keyboard shortcuts for menu items created in System Preferences appear in Firefox menus but not work?

    Given that Firefox does not obey the System Preferences custom keyboard shortcuts, why does it still display those shortcuts in the menus, thereby incorrectly telling users that they will work?
    This issue was raised 6 months ago, but the only posted answer did not explain why the menus reflect the shortcuts that Firefox doesn't obey.

    Outlines are discussed in a series of articles beginning with Creating an Outline in Chapter 5 of the Pages '09 User Guide. A similar set of articles, beginning with Creating Lists follows immediately.
    Reading through the articles, I don't see any mention of a keyboard shortcut or menu item related to moving an item up or down in the list. A search through Pages '09's menus was also unproductive.
    Apparently this 'essential function' is unsupported in Pages.
    Feature requests should be made through Provide Pages Feedback, found in the Application menu (in Pages, the 'Pages' menu), where they'll go to and be read by Apple. Here you're posting to Pages users, who can help you use existing features, but have no direct influence on missing ones.
    The Pages '09 User Guide, a searchable pdf document, is available for download via the Help menu in Pages.
    Regards,
    Barry

  • Command-5 shortcut for 5-star rating photos in iPhoto not working

    When I go to 5-star rate a photo in iPhoto using the default Command-5 shortcut, the shortcut no longer works.
    The Command-1, Command-2, Command-3, Command-4 shortcuts work for (1-star through to 4-star ratings), but for some reason Command-5 no longer works???
    There is nothing wrong with my "5" on my keyboard.
    I went to my local Apple Store and spoke to a Genius. He said that there is probably a mistake in the iPhoto code, and that the mistake would only be corrected after someone mentioned to apple the problem.
    I would like to find out if there is any way firstly to rectify the problem myself? or alternatively how to get in touch with Apple to let them know there is a problem, so that they can fix it by the next software update.
    Thanks
    Mac specs:
    MacBook 5, 1
    Mac OS X (10.6.2)
    iPhoto '09 version 8.1.1 (419)

    Ty trash the com.apple.iPhoto.plist file from the HD/Users/ Your Name / library / preferences folder. (Remember you'll need to reset your User options afterwards. These include minor settings like the window colour and so on. Note: If you've moved your library you'll need to point iPhoto at it again.)
    Regards
    TD

  • Office365- I created shared mailboxes for a user- they show on web but not on Outlook2013

    I created shared mailboxes for a user- they show on web but not on Outlook2013-
    If the user logs on to office365 web - I can see the 3 shared folders- but if when she opens Outlook she is not able to see them-
    Do they - should they be manually added ? How ?
    Thanks !!

    Hi,
    Thanks for your question.
    Not sure what exactly you mean by "created shared mailboxes for a user", by default, Outlook automatically loads all mailboxes to which the user has "Full Access" permission. So please first check if you have granted the right permissions
    for that mailbox to the user.
    When I say "By default", I mean you didn't disable the Outlook Auto-Mapping service. If you did, then the shared mailbox will not be automatically added to the user's Outlook profile. So please have a check on this:
    https://support.microsoft.com/kb/2646504
    Also, please note if the shared mailbox was just created, or the user was just added as a member of that shared mailbox, you probably will need to wait for a few hours for the shared mailbox to appear in the user's Outlook folder.
    Regards,
    Ethan Hua
    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

  • Create ShortCut  For Query Layout Design

    Hi All !!!
    I Designed a Report By Query Layout Design , so I want to Create ShortCut for it  , Because . If  I want to use This Report , I will do a lot Step .
    Please Help me.
    Thank alot .

    There is no specific SDK function for this, you could however write code to automate the manual steps:-
    - Launch Query Manager (ActivateMenuItem 4865)
    - Iterate through query groups in Item "6", and expand the group containing your query
    - Iterate through queries within the group, and use click method to highlight the required query
    - Call Print or Print Preview (ActivateMenuItem 520 / 519)
    John.

  • How to creat shortcut for ethernet on desktop in win 8

    how to create shortcut for Ethernet enable and disable
    because i have internet connected with LAN
    and it is has no internet disconnection option

    Hi,
    Here is the command you can write to the batch:
    To disable the interface, you'd then run:
    netsh interface set interface name="Local Area Connection” admin=DISABLED
    To enable the interface, you'd then run:
    netsh interface set interface name=“Local Area Connection” admin=ENABLED
    Note to find your  network interface, you can run
    netsh interface show interface command.
    Thanks!
    Andy Altmann
    TechNet Community Support

  • Powershell creates shortcut for every exe in folder

    So i have a script to create a shortcut onto the desktop but i just found out that i need it to create shortcuts for multiple .exe's in a folder and for the life of me i can't figure out how to do this. below is what i have .Powershell$TargetFile = "c:\shared\*.exe"$ShortcutFile = "$env:homedrive\Desktop\test\*.lnk"$WScriptShell = New-Object -ComObject WScript.Shell$Shortcut = $WScriptShell.CreateShortcut($ShortcutFile)$Shortcut.TargetPath = $TargetFile$Shortcut.Save()Powershell$TargetFile = "c:\shared\*.exe"$ShortcutFile = "$env:homedrive\Desktop\test\*.lnk"$WScriptShell = New-Object -ComObject WScript.Shell$Shortcut = $WScriptShell.CreateShortcut($ShortcutFile)$Shortcut.TargetPath = $TargetFile$Shortcut.Save()

    1. what is a transient variable?A transient variable is a variable that whose value is not going to be serialized2. What is synchronization?With respect to multithreading, synchronization is the capability to control the access of multiple threads to shared resources.Without synchronization, it is possible for one thread to modify a shared object while another thread is in the process of using or updating that object’s value. This often leads to significant errors.3. What’s new with the stop(), suspend() and resume() methods in JDK 1.2?The stop(), suspend() and resume() methods have been deprecated in JDK 1.2.4. Is null a keyword?"null" is not a keyword. .null is a literal.5. What state does a thread enter when it terminates its processing?When a thread terminates its processing, it enters the dead state.....Read More
    Read More

  • Every time i try to install itunes on my laptop for windows  i get the message''key not valid for use in specified state''  any clue? '

    every time i try to install itunes on my laptop for windows  i get the message''key not valid for use in specified state''  any clue?

    For "Key not valid for use in specified state" errors try moving the folder RSA from C:\Users\<User>\AppData\Roaming\Microsoft\Crypto\RSA to say C:\<User>\RSA (just in case there should be a need to restore it) then try installing again. This folder appears to act as a cache and should be rebuilt automatically as required.
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

  • I'm trying to create a new ichat Acc because for some reason the old one is not working, so I go to Create an Apple ID and start creating a new apple ID, when I submit the Acc it tells me that my Email address is already verified for another Apple ID and

    I'm trying to create a new ichat Acc because for some reason the old one is not working, so I go to Create an Apple ID and start creating a new apple ID, when I submit the Acc it tells me that my Email address is already verified for another Apple ID and thats the only email address I have... What can I do?

    There is no way to consolidate iTunes accounts.
    Setting up an iPhone has never required creation of a new Apple ID.
    You've apparently purchased content with both Apple ID's.  Sign into the device with the correct Apple ID and sync the content.

  • HT202157 New apple is not asking for the WIFI password.Home sharing is not working,i am getting Error while streaming videos from Youtube.

    I got new Apple TV 10 days back,its not asking for the WIFI password.Home sharing is not working,i am getting Error while streaming videos from Youtube.
    I can only see pics and video saved in my iphone. No other options are working.The worst part is that its not asking wifi passoword.
    Not able to connect istores and itunes.
    I cannot do software update. Can anyone help in this content?

    Thanks Brian- I am not connecting it with iphone teethering. I am using it with my DSL wifi.
    I am using it with ethernet cable then its working fine.If i am trying to use it with WIFI then its giving error.
    I tried using Netwrok testing but its giving same error.

  • When I attempt to upgrade an app in iTunes for windows, I get an error:  "Could not purchase.  An unknown error occurred (11111).  There was an error in the iTunes Store.  Please try again later"

    When I attempt to upgrade an app in iTunes for windows, I get an error:  "Could not purchase.  An unknown error occurred (11111).  There was an error in the iTunes Store.  Please try again later"
    I am running the latest iTunes 10.7.0.21 for Windows 7.
    This error occurs if I try to either update the app or if I delete it and attempt to redownload.
    I have an iPhone and an iPad.  I am unable to update the apps or install the apps from within the App Store on iOS.
    I do not have an AOL ID, as is a common issue with this type of error.
    From what I can tell, my Apple ID account seems fine.  I logged in, changed some information, and ensured my credit card is valid and updated.
    I can download new apps just fine.  I am unable to update or install apps I have purchased in the past.

    After 30 minutes this morning, no resolution. Then another tech support call this afternoon, 15 minutes in, was escalated to a Tier 2 (Senior) advisor. He said something similar to the above ("this is one of the strangest things I've seen"). He was chatted with iTunes guys and took all my info into the case and was escalating it over to engineering. Said they would be in touch.
    So, no solution...yet.
    Just to clarify:
    iTunes on Windows7: trying to update an existing app, or re-download a prior app, gives the (11111) error. Downloading a new (free) app worked fine.
    App Store on iPhone5, iOS 6.0.1: click on UPDATE, switches to INSTALLING...for a second, then switches back to UPDATE. No error message (and nothing in Diagnostic data).
    App Store on iPad 3, iOS 6.0.1: same as iPhone 5.
    Definitely account related.
    I have cleared the store cache, signed out and back in, deleted the credit card data, and re-added, rebooting PC and iPhone...nothing works.
    Will post if I hear anything back from Apple.

  • I am trying to create my Apple ID, but not receiving the verification link from Apple,. I get the email but NOT the link,. any suggestions

    I am trying to create my Apple ID, but not receiving the verification link from Apple,. I get the email but NOT the link,. I have triple checked my email address and all Apple account info, all of which are correct. Any suggestions?

    Where are you trying to create it?
    Go to appleid.apple.com and create it there.   Type the country name in the space and a dropdown should appear. Nigeria is clearly available there.

  • I'm running Windows 7 on a laptop & Firefox has lost its Menu Bar for Firefox. It says it's turned on, but I can't see it. I have googled various options to try & get it back, but nothing works.

    I am running Windows 7 on a laptop and I have lost my Menu Bar for Firefox. It says it's turned on, but I can't see it. I have googled various options to try & get it back, but nothing works. Any suggestions would be appreciated...

    Downloaded Mozbackup & backed up all bookmarks, extensions, passwords (not settings)
    Uninstalled Firefox completely (Using REVO Uninstaller)
    Reboot
    Re-install Firefox
    ...Ran MozBackup & restored profile
    Woo HOO !!
    The problem was an add on: Hide Caption Titlebar Plus
    Once I uninstalled that - the menu returned
    Thanks for your support anyway

  • When I click on check for update I get error, iTunes could not check for an update to the carrier settings for your iPhone. an unknown error occurred 1630

    when I click on check for update I get error, iTunes could not check for an update to the carrier settings for your iPhone. an unknown error occurred 1630
    Make sure your network setting are correct and your network connection is active or try again latter.

    update your itunes to 10.5.2 and error is not showing up anymore..

Maybe you are looking for

  • IE10 on Win7 and OWA 2010 can't drag and drop

    I've upgraded to IE10 for win7.  When I login to OWA for exchange 2010, I notice I can't drag and drop emails into any folders.  Compatibility mode doesn't work either.  The only way for it to work is to go into developer mode and force "Document Mod

  • Encore locks system during import of m2v files

    I have exported numerous m2v files from Adobe Premiere, and can not import them into Encore without a full system lock.  I am using PCs with Windows 7 Pro 64bit on a Desktop with 8GB RAM and Windows 7 Home Premium 64bit on a Laptop with 4GB RAM.  I'v

  • Photosmart B110a has 169 ip address

    My router has given the printer a 169 ip address. I would like to create a static ip because this keeps happening and the printer has become unreliable. I have tried all of the switch off/switch on routines but they do not work.The solution offered f

  • Token for Appointment edit missing?

    Hi there, Im searching for a token to call the new function "Edit" for appointments which was invented with GW 2012, something like ItemEdit. Is this really not implemented or just missing in the documentation? Thanks in advance Daniel

  • Has my computer got a virus or trojan?

    Hi, not sure how this works. Was wondering if my Macbook Pro has a virus. I am getting NAME coming up in finder attached to file groups. And if so, how do find out what it is and how do I get rid of it?