Quick Viewer share to all users

Hi,
I have 2 questions on Quick Viewer.
1. How can I access other people developed query? I cant access even though it has been developed by some other person.
2. How can I share the access with others if the query is not intended to access public?
>> From quick viewer as starting point ...
Thanks.
Marks will be rewarded.

@1:    - go to transaction SQ02 -> Settings: tick the checkbox DISPLAY SYSTEM OBJECTS
         - then go back to SQ01, now you have in the STANDARD AREA  user groups with the quickviews of
            each user
@2:    use in SQVI the menu quickview -> additioal functions-> generate programm and display program name and make a transaktion out of the generated program
regards
Markus
award some points if useful

Similar Messages

  • Saving AVL view settings for all users

    Hi,
    I am working on web dynpro abap application which shows alv results of more reports (you will select report and it will show the alv table result).
    I have to use some standard reports for this, so I copied it to Z report and modify it so this is possible. Problem I have is that is standard report the output have maybe 10 columns, but the table I got from the report has maybe 26. I want to limit shown columns on the ALV with settings of view for alv, but the assignment is only possible for the user.
    Is there any way how to create one view settings and make it initial for all users?
    I know there is a way of modifying the standard view via abap code, but I want to keep the possibility to show all fields if required.
    Thanks for your help very much.
    Martin

    Hi,
    another problem, I was expecting the newly created variant / layout / settings for view  would be tied to the displayed table (which sounds kind of wired as I wrote it down). 
    But since I am displaying different tables in the same UI element and binding the tables and their structures dynamically the created variant applies to all of the tables (or thats how it seems) so the table which have all fields different then the layout shows nothing.
    Do you have any ideas how to get around it?
    My idea would be to store the layout (but i have no idea how it looks at db level) and identification of the report to some customer table and fill attribute of alv table dynamically according to used report. But thats just my idea, I have no idea if it si possible to do it like this.
    Is there some other way how to accomplish this functionality?
    I have also tried to do it on fieldcatalog level of the alv table, but it seems to show first, let's say, 8 fields if there is 8 fields in the fieldcatalog.
    Any help or ideas please??
    Thanks
    Martin
    Edited by: Martin Gabris on May 6, 2011 4:11 PM

  • Setting Initial View Folder for All Users at Once and Forever. How???

    <p>Is there any way to make the initial view of all users to be a specific folder? What I want to acomplish it to show my public folders expanded and always showing a specific folder. I can do it for myselft but what about a global setting?</p>

    I tried the following code and it does not appear to work.  Why?
    Our goal is to take the destop preferences of a selected user and apply those preferences to all other users.  How can that be done?  Note:  We need to apply those preferences whether they have already set their preferences or not.
         Dim oSourceUser As InfoObject
                Dim oTargetUsers As InfoObjects
                bErrorOccurred = False
                oSourceUser = oInfoStore.NewInfoObjectCollection().InfoStore.Query("SELECT SI_NAME, SI_DATA FROM CI_SYSTEMOBJECTS WHERE SI_PROGID = 'CrystalEnterprise.User' And SI_Name = '" & vstrSourceUserID & "'").Item(1)
                If vstrTargetUserID.Length > 0 Then
                    oTargetUsers = oInfoStore.NewInfoObjectCollection().InfoStore.Query("SELECT SI_NAME, SI_DATA FROM CI_SYSTEMOBJECTS WHERE SI_PROGID = 'CrystalEnterprise.User' And SI_Name = '" & vstrTargetUserID & "'")
                Else
                    oTargetUsers = oInfoStore.NewInfoObjectCollection().InfoStore.Query("SELECT SI_NAME, SI_DATA FROM CI_SYSTEMOBJECTS WHERE SI_PROGID = 'CrystalEnterprise.User' And SI_Name != '" & vstrSourceUserID & "'")
                End If
                For Each oUser As InfoObject In oTargetUsers
                    Try
                        oUser.Properties.Add("SI_DATA", oSourceUser.Properties("SI_DATA").Properties)
                    Catch ex As Exception
                        bErrorOccurred = True
                        If ex.Message.Length = 0 Then
                            strLastError = "Unknown Error Occurred"
                        Else
                            strLastError = ex.Message
                        End If
                        Exit For
                    End Try
                Next
                If bErrorOccurred = False Then oInfoStore.Commit(oTargetUsers)

  • GOS view attachment: Attachment of all users.

    Hello colleagues,
    Proud to say that I was able to implement attachment service from GOS by using the information I got entirely from this forum !  Kudos to all experts who have posted such excellent learning content.
    I have only one remaining issue for which I could not find an answer here.
    How can I view attachments of all users?  Currently, I can view only my attachments for an object.  Seems to me that GOS by default selects only attachments for a user (sy-uname).
    I have used CL_GOS_MANAGER, CL_GOS_ATTACHMENTS, CL_GOS_SRV_ATTACHMENT_LIST and CL_GOS_PUBLICATION.
    Basically, I have copied all these classes to my local class and made some adjustements to achieve my objective.
    thanks in advance, Vikram

    Hi Vikram,
    i have worked on GOS menu and as of my Knowledge there is no such option to view all the attachments of all users
    we have to see the attachments of that user
    Regards
    Surendra

  • SQVI - Quick view modification

    Hai,
    How to modify a SQVI Quick view created by other user - User ID is Different.
    and  Where to see the list of all Quick views created by users.
    Thanks and Regards,
    Mani

    Dear Mr Brad Bohn,
    Thank you very much for your response.
    Here issue is:
    Our functional team members create the quick view by joining tables and now problem is one of the user resigned.
    And new functional team member wants to check/modify the quick view in his new user ID.
    So is it possible to get those quick views created by first user?
    Regards,
    Mani

  • How to share Queries / Quick Views?

    How can I share Quick Views / Queries generated by SQ01 among users. I can assign queries to user groups, but I did not find a way to do so for quick views.
    Is this the right way to share quick views / queries -> assign them to a user group?
    Any hint is appreciated.
    Regards KB

    Thanks for the hint:
    And the queries I would share by assigning them to a user group. Is this the right way to do it?
    I need to share queries among some users and clients (client number/mandt).
    Regards
    KB

  • How To Restric all kind of access to 2 specific tables in SQL Server for all Users.Instead of table we would like users to go through View.

    Hi All,
    I am looking at an Technical solution for Restricting the direct access some specific tables in my data base  to all the users(Except admins and few Service accounts). However views created on top of these tables would be exposed to all Users.
    Could any one help me with the best solution.
    Thanks in advance,
    Regards,
    Raja Suri

    Hello,
    You can try to create a new role "Client_User" in the database and deny access to the new role on the specify tables. And then add all user which you want to restricting the direct access the specific tables to the database role.
    For example:
    Use Database
    CREATE ROLE [Client_User] AUTHORIZATION db_securityadmin;
    DENY SELECT ON OBJECT::schema.table TO [Client_User] ;
    EXEC sp_addrolemember 'Client_User', 'username';
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • HT1198 If I share an iPhoto library between multiple users, will the Faces, Events, and Places be automatically usable by all users, or will each user have to tag all the photos (e.g. if a user tags a face, will a different user have to do it in their own

    If I share an iPhoto library between multiple users, will the Faces, Events, and Places be automatically usable by all users, or will each user have to tag all the photos (e.g. if a user tags a face, will a different user have to do it in their own iPhoto application??

    Have you read this Apple document regarding sharing a library with multiple users: iPhoto: Sharing libraries among multiple users?
    OT

  • How do all users share a libary?

    How do I install ITunes on XP so all users share on libary. Hard Disk space is a concern and I don't want every user to have a separate libary.

    Hi, xmbs.
    If you want all the users to have the exact same Library - same contents, same playlists, same ratings, etc. - you can connect everyone's iTunes to the same .itl file as described in this article in the Apple Knowledge Base.
    If you want them to have access to the same contents but be able to organize their Library as they please, check out this article .

  • All users share the same iCal

    I want all the users on my iMac to share the same Calendar. How do I do it?

    Here's how to share iCal calendars among multiple users on a single Mac.
    What you need to do is to move the iCal folder to a shared folder that is accessible to all users and then replace the iCal folder in each user's library folder with a "symbolic link' to the shared iCal folder. The symbolic link looks like an "alias", but if you try this using "aliases" to the shared iCal folder it will not work (trust me). You can create symbolic links using the Terminal, but I have no idea how, and the idea of using the Terminal scares me. The easiest way that I know of to create a symbolic link is with a shareware application called Cocktail. It allows you to do a number of different things including System Maintenance, Network Optimization, etc. It took me a while to remember how to do this; I originally found the information in the Discussions when iCal was first released, but apparently none of those original postings are listed in the forums anymore.
    Here's how to do it (you must have Administrator privileges):
    First locate your iCal folder (your user name > Library > Application Support > iCal) and make a copy of it (Finder > File > Duplicate). Drag the copy to your Desktop until you're sure iCal is being shared between users.
    Next move the original iCal folder into a Shared folder in the Users folder (Hard Disk > Users > Shared > iCal). To make sure all users can access the information, select the Shared folder, choose File > Get Info, click the little Lock icon, then under "Ownership & Permissions -> Details" make sure that the "Owner" is "System", "Group" is "Wheel" and "Access" for Owner, Group and Others is "Read & Write". Do the same with the iCal folder within the Shared folder, but this time, under "Ownership & Permissions -> Details" make sure that the "Owner" is "your user name", "Group" is "Staff" and "Access" for Owner, Group and Others is "Read & Write" and click the "Apply to Enclosed Items" button. I basing this information on what the Ownership & Permissions are for each of the folders in my system.
    Open Cocktail (I'm using version 3.6.5). Once the app is open (you must enter an administrator's user name and password) click on the "Files" button, then click on the "Links" button. Where it says "Create Symbolic Link" click on the "Choose" button. Navigate to the iCal folder (Hard Disk > Users > Shared > iCal) and click "Choose" again. In the "Save As" box that appears enter "iCal", then navigate to the Application Support folder in your Home folder (your user name > Library > Application Support) and click "Save". Quit Cocktail and open iCal. You should see all of your calendars as you did before.
    Log in under each additional User, move that User's iCal folder (user name > Library > Application Support > iCal) onto the Desktop, then create another Symbolic Link to replace it, using Cocktail as described above. In each case you should see the same calendar information as when you were logged in under your user name. As a test, add a New Event or To Do in iCal under one user, log out and back in under another user and you should see the changes when you open iCal.
    Once everything appears to be working, you can delete the iCal folders from each User's Desktop.
    As an additional maintenance measure, use Disk Utility to repair Disk Permissions.
    Unfortunately, if each User has his/her own calendars in iCal they will not be in the shared calendars. Only the calendars in the first iCal folder used to set up the shared folder will be available and I don't know of any way to merge or combine the other user's calendars into one.
    Hope this helps and good luck!

  • How to set an adapted project dashboard view as initial for all users?

    Hi all.
    We have the cProjects project dashboard active and have defined (via settings, save as) a custom view with the columns relevant in this particular installation. 
    I can however only save this view with assignment "user" meaning that it only applies to the user logged on when creating it. 
    We are however looking to have a common global customized view that all users should begin with. 
    Compare the R/3 functionality with layout management in reports where you can define whether the layout should be
    user specific or not
    default
    My question is therefore if it should be possible to save global views in the above example and if not how to achieve what we are looking for.
    I assume one option could be to see if one can use BADI DPR_EVE_DASHBOARD but it seems this should be possible to handle within the application given that the field "Assignment" is there when you save the view.  At the moment only with the value "user" available though ...
    Regards / Anders

    Hej Anders
    You can save a default view for all users under administration mode:
    http:<server>:<port>/sap/bc/webdynpro/sap/cprojects?sap-config-mode=X
    BR
    Matthias

  • How can I list all users who have access to a particular TABLE or VIEW

    Hi,
    Can someone tell me how I can list all users who have access to a particular TABLE or VIEW.
    Abhishek

    Hi,
    Take a look on this link: http://www.petefinnigan.com/tools.htm
    Cheers

  • How to set up help desk to view and reset password for all users?

    Hello,
    I am on OIM 11.1.2.1.0 and would like to assign the helpdesk role to a small group of users.  I created an organization ORG1 and ORG2.  They have the parent organization as "Top".  I have a user USR11 and USR12 that belongs to ORG1 and USR2 that belongs to ORG2.
    I would like USR11 to be able to see all users in ORG1 and ORG2.
    I assign the User Viewer admin role of the Top organization to USR11.  After logging in to OIM as USR1, I could see users USR11 and USR12 (same organization) but couldn't see USR2 (different organization).
    How can I configure OIM so that user USR11 will be able to see all users?
    If I add the User Viewer admin role for both organizations ORG1 and ORG2, then it worked.  But I thought with the admin role of the Top organization, this will allow the user USR11 to be able to see all users.
    Thanks
    Khanh

    Hi,
    You can achieve everyone can see each other by providing User Viewer admin role to each user under each organization present in ur OIM.
    Thats the only way supported in OIM 11g R2. APIs are present for this and you can automate it.
    Regards,
    J

  • Manual bypass to view all history entries of all user for one report

    Test have been performed on standealone BIP 10.1.3.4.1 (Patch 11931697). May be it can be reproduced with previous versions and/or other J2EE container.
    Problem is now described in Oracle Support with bug ID : 12412334
    Bypass solution may be helpful for people who use work directly in BIP web interface or who integrate this web interface using HTTP URLs or HTTP/REST like custom app (and may be other cases...)
    When logged with an admin username, you can view OR filter "ALL" history of one all users for one report by typing an url like :
    http://BIP/xmlpserver/servlet/reporthistory?report_url=/REPORT_DIR_PATH/XDO_NAME/XDO_NAME.xdo&tfilter=all
    Where :
    BIP is BIP Server DNS
    REPORT_DIR_PATH is report directory path in BIP web interface
    XDO_NAME is report's name

    I don't think there is a way. There should be, but I've never seen it.

  • Mount SMB share accessible by all users

    Hello,
    I aim to have a smb share accessible to all users.
    I've tried to mount with mount_smbfs ou autofs, but each time the mount is only accessible to one user and no right to group or others.
    This is what i've do with autofs :
    in /etc/auto_master
    /Volumes/Resources
    auto_resources
    in /etc/auto_resources
    MyShare
    -fstype=smbfs
    ://login:password@hostname/share
    Then i enable the share with
    sudo automount -vcu
    When i try to acces the folder, it succeed but all the rights on all files in the share and the main folder it self become rwx------
    The same occure with mount_smbfs.
    How can i "force" the permissions of the shared folder to fit my need ?
    Thanks

    It sounds like you are talking about multiple users on a single computer being able to use the same mounted share at the same time.
    As you have seen this does not work. Either each will get their own individual mounted copy, e.g. "/Volumes/Resources", "/Volumes/Resources 1", /Volumes/Resources 2" etc., or the others execept for the first user will be blocked. This limitation applies to both AFP and SMB.
    However if you use NFS and do this before anyone logs in then it will be accessible for all users on that Mac at the same time.
    NFS is still available in Mountain Lion.

Maybe you are looking for

  • Plugin created using C++ 6 and Acrobat 6 SDK Not Working in Windows

    I have an Acrobat plugin compiled in Visual C++ 6 using Acrobat 6 SDK. The plugin works flawlessly in Acrobat versions 6 to 9 in Windows XP. While the plugin is able to add a menu iterm and tool bar icon in Windows 7, it causes Acrobat to hang everyt

  • Systems Preferences gone.

    I hope someone can help me out. When I go to open my Systems Preferences under the apple icon nothing appears. I used the finder to try to locate it and nothing was found. Is there anything that I can do to bring it back? Thanks for any help. M

  • Lightroom 2.1 not opening images in cs3

    I had 2.0 and read that there was a problem open images in to photoshop so downloaded 2.1 as it said this would sort it out but I still can't open in 2.1 had no problems at all in lightroom 1.

  • Convert Raw Device to file system based file systems for datafiles [HP-UX]

    Hello experts, Once again in seek of guidance.. I am in the process of migrating my database (Oracle 7.2.3 on HP-UX 10.20 to Oracle 8.1.7 64-bits on HP-UX 11). Amongst one of our steps is to convert our RAW Device datafiles to File System based files

  • XML FORMS - Date Format

    Hi, I have a problem that I am sure is just config, but when opening any xmlforms and displaying they only appear with american date format. Has anyone changed this format, from what appears the standard? Will award points for any help. Thanks Kai Ch