Access list of user worklist display columns

Hi all,
Is anyone aware of a way to access the list of columns a user has selected to display in their work item list?
Typically the list of columns is simply the project variables, however using the "Add/Remove Columns" link, a user is able to customize the columns being displayed. We are looking for a way to access the list of columns the user is currently looking at through code.
Any suggestions would be greatly appreciated.
Thank you!

could not understand the what you are looking for?
list of columns that the user configured to view .... can u elaborate

Similar Messages

  • Assign personal access list to user in ACS 5.1

    Hello.
    Is there any way (in ACS 5.1) to assign personal access list to each user instead of assigning it to Authorization profile and Authorization profile to user?
    Thanks for any help.

    This should be possible
    You need to do the following:
    1) Goto
    System Administration >
    Configuration >
    Dictionaries >
    Identity >Internal Users >
    CreateCreate a user attribute that will store the DACL name of type string. We wil call this attribute DACL
    2) When you create a user (
    Users and Identity Stores >
    Internal Identity Stores > Users >
    Create) you will now see the attribute "DACL" that can be created as part of each user record
    3) Create an authorization profile: (
    Policy Elements >
    Authorization and Permissions >
    Network Access > Authorization Profiles >
    Create)In "Common Tasks" tab, for "Downloadable ACL Name" select "Dynamic" option followed by "Internal Users"  and then select the name of attribute you seelcted in step 1)
    You can now use this authrization profile as a result in policies. When a user authentications the string from the DACL attribute in the user record will be used as the name of the attribute to download

  • Lion Server, SL Client - list of users not displaying - only 'other'

    #1
    So I've been running a SL Server at home without (many!) problems. All SL clients connected to server just fine and you always got a list of users to log in from (as you'd expect).
    However, installed Lion Server from scratch on a my Mini Server (again without too much problems). All my client Macs (Macbook Air, Macbook, iMac - all core2duo etc) have been upgraded to Lion as well and they're all fine. You get a list of possible users to log on to - which is fine.
    However, I have one core duo (white) 2.0Ghz iMac which (obviously) is remaining with Snow Leopard client but does not display a list of users -- just Admin and 'Other. I've triped check the settings and bearing mind this was ok with SL Server, I can't figure out why this is. I even re-installed SL client on said iMac and I still get no list of users.
    I can log into the server using 'Other' i.e. specifiy full user name and password, so I know it is connecting to the lion server
    So I am confused as to whether its a Client or Server problem (I presume server) -- any ideas?
    #2
    Less of a serious problem, I am still getting the old (SL server) welcome message on all my Lion Clients logon screen (i.e. on the list of users) - how can this be if the 'welcome to snow leopard server' has been completely erased with Lion server? (I assumed the message was stored in pram but again, zapping it, does not change it)  I can't find in Lion server to config the welcome message either. Maybe zapping Pram of server? any ideas?
    Thanks in advance
    Rob

    Hi
    Managed Preferences are composited (combined) together and cached locally on client workstations. These are stored in /Library/Managed Preferences. Remove the folder and restart the workstation. Hopefully on next client login this should pick up what you've defined for MCX at User, Computer and Group level.
    For your other problem on the 10.6 workstation issue these commands:
    sudo rm -R -v /Library/Preferences/SystemConfiguration
    sudo rm -R -v /Library/Preferences/DirectoryService
    sudo rm -R -v /Library/Preferences/edu.mit.Kerberos
    sudo rm -R -v /Library/Managed\ Preferences
    sudo rm -R -v /Library/Caches/*
    sudo rm -R -v /private/tmp/*
    sudo reboot now
    On successful reboot login as the local administrator and assign the workstation an appropriate name in the Sharing Preferences Pane. Make sure it's using the same NTP Server as your Server and then join it to the LDAP Server using the Accounts Preferences Pane > Login Options > Join. Hopefully this should get things back on track.
    HTH?
    Tony

  • Problem in Accessing list of users while Provisioning New User in SS

    Hi Experts!!
    I am working on Hyperion Planning applications (Hyperion 9.3.1) & we have externalized user authentication in Shared services. During the process of provisioning new user in Shared Services, the problem occurs when I try to set the application access type as “Essbase & Planning” for the new user.
    To assign the new user as “Essbase & Planning” user type, I need to select the new user from the list of available users which gets displayed on selecting global Analytic Server located under Project directory in Shared Services. However when I click on the analytic server, it shows *“loading”* on the right side screen & hour glass icon can also be seen on the screen. But the list of available users does NOT appear despite waiting for quite some time.
    While I am not able to access it even if I logon to the shared Services directly from the Server using remote access, my USA team can access the list of available users locally from their machine as well as from the server & are able to perform the step. Our server is located in USA & I access it from India. What could be the reason for this difference? Any suggestions/ input from you would be a great help for me in solving this issue.
    Thanks in advance

    Hi Rinku/John ,
    Thanks for your reply. My US team has tried this particular step from their local machine as well as directly from the Server. They were able to see the listbox containig the list of available users & could set the application access type as "Essbase & Planning" for the new user. When I remotely log into the server (using mstsc) I use the IE installed on the server to acess Shared Services. My US team also use the same IE when they log into SS directly from the server & are able to performing this step. Hence there should not be any issue with the browser ,port or firewall.
    I agree this is very weird problem because I get stuck only at this step where I have to set the application access type as 'essbase & Planning" for the new user. Rest every thing else is accessable in SS.
    Any suggestion / input would be great help.

  • Exporting Users by display name with Apostrophe

    Looking to read in a list of users by display name, grab additional properties, format and export to a new list.
    This issue I have is users with apostrophe's in their display name do not get parsed properly.  I'm not sure how to leverage the ` in this case to escape that character
    Thanks,
    # Import AD Module
    Import-Module ActiveDirectory
    # Import CSV into variable $users
    $users = Import-Csv -Path C:\Input.csv
    # Loop through CSV and update users if they exist in CVS file
    foreach ($user in $users) {
    #Search in specified OU and Update existing attributes
    Get-ADUser -Filter "DisplayName -eq '$($user.DisplayName)'" -searchscope Subtree -Properties "UserPrincipalName", "EmailAddress", "Department","msRTCSIP-PrimaryUserAddress" | Select-Object SamAccountName, UserPrinciPalName,
    EmailAddress, Department, @{ n = 'msRTCSIP-PrimaryUserAddress'; e = { $_.'msRTCSIP-PrimaryUserAddress' -replace "sip:", ""  } } | export-csv 'c:\output.csv' -NoClobber -Append

    What I mean with this is, if I have a an input of file of AD users by display name and one of those contains an apostrophe, for example Joe S'mith.
    The ' in the name does not get parsed properly and I wind up getting output similar to the following.
    Get-ADUser : Error parsing query: 'DisplayName -eq 'Joe S'Mith'' Error Message: 'syntax error' at position: '25'.
    At line:20 char:1
    + Get-ADUser -Filter "DisplayName -eq '$($user.DisplayName)'" -searchscope Subtree ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : ParserError: (:) [Get-ADUser], ADFilterParsingException
        + FullyQualifiedErrorId : Error parsing query: 'DisplayName -eq 'Joe S'Mith'' Error Message: 'syntax error' at position: '25'.,Microsoft.ActiveDirectory.Management. 
       Commands.GetADUser

  • Active Directory Users and Computer not displaying column data?

    I am running Windows 8.1 Enterprise with RSAT installed.  My Domain controllers are Server 2008 R2.
    I am having and issue with Active Directory Users and Computers.  Typically I will turn on Advanced Features and then add Columns for Email address and Display Name.  This for example allows me to easily export lists of users and there email
    addresses among other things.
    The issue is that on my Windows 8.1 client, the columns for Email and Display Name are empty.  It simply will not display this information.  It only displays Name, TYpe and Description.
    If I use a Windows 7 client, the information displays correctly.
    Has anyone run into this issue or heard of this problem when using ADUC on Windows 8.1?

    ADUC is an AD tool that is no longer being improved, with Microsoft now focusing on ADAC (Administrative Center). In 8.1, it has improved quite a bit since 7. You can also just try using the
    ActiveDirectory PowerShell Module, which is easy to use and fairly powerful. It can be simple to export lists, and the module for AD is included with RSAT tools.
    Example:
    Import-Module ActiveDirectory
    Get-ADUser -Filter {Manager -eq "John.Smith"} -Properties DisplayName,Mail | Export-Csv dump.csv -NoTypeInformation
    So, recommendation: either use ADAC, or PowerShell -- ADUC is part of the wave of deprecation.

  • How can you modify the displayed columns on a Related Information List?

    How can you modify the displayed columns on a Related Information List? For example, how could you add the "Type" column to the List of columns displayed for Service Requests when you are viewing the Contacts Detail page?
    Thanks

    I'd have to say I think this is one of the biggest flaws in the OnDemand system currently. The solution I have come up with is to create reports and put them in webapplets showing the data I want to show. I have then removed the standard Related Info List Objects and added weblinks to create new records as the button on the List object is also gone.
    Keep in mind that doing this does slow things down a little, so it may not work if you have a big user base.
    RWB.

  • How to get list of users with access of MM01 (create & change)

    Hi all,
    i have to take out list of user having access for MM01 (create material), when i use SUIM to get the list it shows all the list of users including the users with DISPLAY & CHANGE, but i want only those users who had the access of CREATE & CHANGE.
    please help out me, its very urgent.
    Thanks & Regards
    Syed..

    Hi Syed,
    You can try to get it from S_BCE_68001398. Key in the required transaction code.
    Thanks and Regards
    Points reward is much appreciated

  • How to find out list of users and their access on Sharepoint

    Hello Everyone
    How can i find out list of users and what access they have on SharePoint site? I want to create table with list of the users and their access?
    Thanks

    you can get the report using below powershell scripts. first one gives list of users in a site collection level.
    The second link generates the permissions reports for each user.
    http://techtrainingnotes.blogspot.com/2010/12/sharepoint-powershell-script-to-list.html
    https://sp2010userperm.codeplex.com/
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • How to find out list of users who have access to particulat SID

    HI
    How to find out the list of users who has access, to a particular SID?
    Satish.

    jurjen,
    Thanks for replying, actually i was trying to navigate and execute the report using, SUIM...
    could you help me to find out the list of users who has access to a particular system.. using SUIM.
    satish.

  • How to get list of users who all are having full access in sharepoint site using client object model c#

    Hi,
    I want to fetch the list of users who all are having full access to the sharepoint list using client object model with .Net
    Please let me know if any property for the user object or any other way to get it.
    Thanks in advance.

    Here you are complete code i created from some years it lists all groups and users, you can just add a check in the permissions loop to see if it is equal to Full Control.
    Private void GetData(object obj)
    MyArgs args = obj as MyArgs;
    try
    if (args == null)
    return; // called without parameters or invalid type
    using (ClientContext clientContext = new ClientContext(args.URL))
    // clientContext.AuthenticationMode = ClientAuthenticationMode.;
    NetworkCredential credentials = new NetworkCredential(args.UserName, args.Password, args.Domain);
    clientContext.Credentials = credentials;
    RoleAssignmentCollection roles = clientContext.Web.RoleAssignments;
    ListViewItem lvi;
    ListViewItem.ListViewSubItem lvsi;
    ListViewItem lvigroup;
    ListViewItem.ListViewSubItem lvsigroup;
    clientContext.Load(roles);
    clientContext.ExecuteQuery();
    foreach (RoleAssignment orole in roles)
    clientContext.Load(orole.Member);
    clientContext.ExecuteQuery();
    //name
    //MessageBox.Show(orole.Member.LoginName);
    lvi = new ListViewItem();
    lvi.Text = orole.Member.LoginName;
    lvsi = new ListViewItem.ListViewSubItem();
    lvsi.Text = orole.Member.PrincipalType.ToString();
    lvi.SubItems.Add(lvsi);
    //get the type group or user
    // MessageBox.Show(orole.Member.PrincipalType.ToString());
    if (orole.Member.PrincipalType.ToString() == "SharePointGroup")
    lvigroup = new ListViewItem();
    lvigroup.Text = orole.Member.LoginName;
    // args.GroupsList.Items.Add(lvigroup);
    DoUpdate1(lvigroup);
    Group group = clientContext.Web.SiteGroups.GetById(orole.Member.Id);
    UserCollection collUser = group.Users;
    clientContext.Load(collUser);
    clientContext.ExecuteQuery();
    foreach (User oUser in collUser)
    lvigroup = new ListViewItem();
    lvigroup.Text = "";
    lvsigroup = new ListViewItem.ListViewSubItem();
    lvsigroup.Text = oUser.LoginName;
    lvigroup.SubItems.Add(lvsigroup);
    //args.GroupsList.Items.Add(lvigroup);
    DoUpdate1(lvigroup);
    // MessageBox.Show(oUser.LoginName);
    RoleDefinitionBindingCollection roleDefsbindings = null;
    roleDefsbindings = orole.RoleDefinitionBindings;
    clientContext.Load(roleDefsbindings);
    clientContext.ExecuteQuery();
    //permission level
    lvsi = new ListViewItem.ListViewSubItem();
    string permissionsstr = string.Empty;
    for (int i = 0; i < roleDefsbindings.Count; i++)
    if (i == roleDefsbindings.Count - 1)
    permissionsstr = permissionsstr += roleDefsbindings[i].Name;
    else
    permissionsstr = permissionsstr += roleDefsbindings[i].Name + ", ";
    lvsi.Text = permissionsstr;
    lvi.SubItems.Add(lvsi);
    // args.PermissionsList.Items.Add(lvi);
    DoUpdate2(lvi);
    catch (Exception ex)
    MessageBox.Show(ex.Message);
    finally
    DoUpdate3();
    Kind Regards, John Naguib Technical Consultant/Architect MCITP, MCPD, MCTS, MCT, TOGAF 9 Foundation

  • Query to find the list of users having access to a particular scenario

    Hi,
    I am learning Hyperion Planning 9.2 x version. I wanted to know the query to find the list of users having access to Plan Iteration - 1 scenarion.
    As I am new to Hyperion Essbase and Hyperion Planning, I am assuming these ideas work out to get the desired result.
    1) As Hyperion Planning uses Relational DB to store the User Security information, we can query the list of users who is having access to Plan Iteration - 1 Scenario.
    I am not sure if this solution works. Please correct me If I am wrong.
    2) We can also query from the essbase editor to find out who all having access to this scenario.
    If the above is correct, can you please provide me the query.
    I am really need of this and I will be happy if any one provide the solution.
    Thanks & Regards,
    Upendra. Bestha

    Hi,
    If you are looking for some SQL to retrieve the access rights by member then you can use something like (SQL Server code though can easily be modified for Oracle)
    SELECT usr.object_name as Username,mem.object_name as Member,
    'Access Rights' = CASE acc.access_mode
    WHEN -1 THEN 'None'
    WHEN 1 THEN 'Read'
    WHEN 2 THEN 'Write'
    WHEN 3 THEN 'Write'
    ELSE 'Unknown' END,
    'Relation' = CASE acc.flags
    WHEN 0 THEN 'Member'
    WHEN 5 THEN 'Children'
    WHEN 6 THEN 'Children (inclusive)'
    WHEN 8 THEN 'Descendants'
    WHEN 9 THEN 'Descendants (inclusive)'
    ELSE 'Unknown' END
    FROM
    hsp_access_control acc, hsp_object mem, hsp_object usr
    WHERE acc.object_id = mem.object_id
    AND acc.user_id = usr.object_id
    AND mem.object_name = 'Plan Iteration - 1'
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • List of users who has access to current community

    Hi,
    Is there an API which provides list of users who have access to current community in ALUI? Will there be huge performance impact in retrieving the list of all users who have access to current communty?
    Thanks
    Sampath

    Sorry,
    I am not quite following you..
    Users can only view a community if the permissions exist for that specific community. I dont understand what do you meant by
    "I need to let user type a name and show his/her user ID from the list of users who have access to the current community".
    Are you trying to look at user permissions based on a list of communities existing in the portal? The user can't even get to that community if he doesn't have permissions.

  • 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 get list of users who have access to a SAP module

    Hi,
    We are developing a tool in Java where we will pull the data from various modules in SAP (like Purchase order, Invoice etc). Lets take Purchase Order Module as example. I can get the data using BAPIs (like BAPI_PO_GETDETAIL).
    However to implement Authorization, I also want the list of users/groups that have access to Purchase order module. Is this possible? Or can we get the ACL information from the tables in database like EKKO for Purchase order?
    I have tried searching for solution but couldn't find any. Please suggest if there is some standard way by which we can pull the ACL information via Java, or if this can be achieved by some custom RFCs.
    Thanks,
    Anurag

    Anurag,
    The best way is to wirte a RFC Function Module (It will fetch the roles of the user from agr_users table) which will take user id as import paramter and will give you assigned roles.
    Please let me know if you still need any further information.
    Thanks,
    Hamendra

Maybe you are looking for

  • Menubar and SystemUIServer keep crashing - Also impossible to open preferences, crashes instantly

    Hey Guys, I saw other people having similar isues, but I couldnt find anything that helped me. I dont have FrontRow installed and, therefore I couldnt remove it, which was supposed to fix this issue. This is also happening constantly in the backgroun

  • TS4062 My 2 I-pod's will not sync to either of my computers.

    My 2nd and 3rd generation will not sync to either my laptop the desktop. They were working fine until recently. Any help will be appreciated. Jim

  • Sysaux tablespace issue

    hi, I ve upgraded an database for 9i to 10g. The upgrade was sucessfull and the Db was in normal usage. Due to some functionality testing the database was restored to a state from the backup taken after upgrade. But while restoring the database i for

  • Document numbering in SAP B1

    Dear All, I am getting error 'Numeric value deviates from legal range (ODBC -1015)  [131-183]' while adding new series, Series have 10 digit numbers. If number starts with '2' its accepting but if starts with 3 or 4 giving above mentioned error. Vers

  • Sound prob

    i cant get my sound to work when playing bavk a video in internet explorer even opre and firefox eg google video youtube video and the msn winks dont have sound i tried the klite mega codec pack and done nothing. and my voice playback goes blank in t