Is it possible to filter list view based on current user logged in

Hi,
Is it possible to filter the list view results based on the current user logged in. I have a scenario wherein i want to show only those list items to the user which contains his/her name under the column Approver (a list column).
So if i login to the page, then only those requests should show up which has my name as the Approver, and so on.
Is it possible please ?
Thank you.

Hi Prajk, you could use audience targeting for this. An alternative would be to create a view and add a filter so that "Approver" is equal to [Me]
cameron rautmann

Similar Messages

  • Filter List ViewA based on List ViewB selected row?

    Hello,
    I am trying to find out if it is possible to transfer the ID of a selected row in one view of a list, and use that to filter a second view of the same list.
    Supposedly, this can be done if this page is any proof:
    http://msdn.microsoft.com/en-us/library/dd585662(v=office.11).aspx.
    But I haven't been able to find any informative tutorials or walkthroughs other than webpart connectors on the same page.

    Just connect the two web parts together and have the first web part send the ID to the second.  Take a look at the following walkthrough.  Its for 2007 but should still work essentially the same.
    https://www.nothingbutsharepoint.com/sites/eusp/pages/sharepoint-filtering-with-web-part-connections.aspx
    To do this using two separate pages you need to do it using SharePoint Designer.  I haven't tried it lately and am not sure its still possible since the Design view as removed.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • Filter List View Based on Condition

    HI All,
    I have SharePoint List with dropdown column name "Link Level" and it's holding values "Access" "Rejected" .
    And I had created view with name "Access" and had set the filter scetion options as below.But I don't find any result,Can any me help me what's the right way to filter the view only with "Access" list item value
    "Link Level"->
    equals to ->
    =[Access] 
    Thanks,
    Quality Communication Provides
    Quality Work.
    MSA

    Hi,
    According to your description, my understand is that you want to filter list items by “Access” but it displayed nothing.
    Did you set the “Access” view as below figure?
    Please cancel the filter in the “Access” view (choose none in filter field) and test whether it displays list items.
    Please check whether there is any other configuration in the “Access” view.
    Thanks,

  • List View Filter - I want to create List View based on a specific user

    I want to create a List View Filter based on specified user ID. I dont want to specify the [Me] for filtering the view based in current logged in User.
    I want the view to be based on specific user ID for Ex: "AD\JohnDoe"
    Thanks
    Nate

    The People/Group Picker field has several options for how the name is displayed. For example you can set it to be the friendly name or the account name. When you create your View Filter, make sure that you are using the same format as the field's display
    type.
    Dimitri Ayrapetov (MCSE: SharePoint)

  • How can I filter a Sharepoint 2007 libarry list based on current user login?

    Hi all.
    I would like to know how I can filter a SharePoint library list based on current user login.
    Suppose I have created the followings:
    1) A SharePoint form library containing bunch of uploaded InfoPath form data.
    2) The InfoPath form template contains a promoted text field called "TargetUser" to store user domain login (ex: DOMAIN\JOE) and every InfoPath form file in the library has a valid domain name stored in the "TargetUser" field.
    I have created a custom view for the form library and would like to filter this view so only items whose "TargetUser" field matches current user's login ID are displayed.
    I went to Edit View page to customize the view and tried to use the [Me] function but I got a "Filter value is not a valid text string" message instead when clicking OK. Apparently [Me] returns a Person/Group data type and the filter cannot compare its value
    to that of "TargetUser".
    I tried using text functions (ex: TEXT([Me],"") hoping to extract default string value from [Me]. The filter accepts the parameter without any error but the resulting fitlered list does not display any items at all.
    I have googled this subject for hours but I have not found any solution.
    It would be greatly appreciated if anyone can help me to create a functional filtered list.
    FYI, my SharePoint 2007 installation is just WSS 3.0 + Form Server. I do not have MOSS 2007 (so no MOSS 2007 web parts or web services).
    Thank you.
    Jason

    Here's what I usually do in order to accomplish this.  Ultimately you'll need to have 2 different fields.  There's the one you already have, with DOMAIN\username stored in it.  Then you'll need an additional field as a "person" column type. 
    Call it "TargetPerson" or something.
    Create a sharepoint designer workflow that runs each time an item is created or changed.  One action:
    Set FIELD to VALUE.
    The first FIELD is "TargetPerson", the VALUE is your "TargetUser" field. 
    Once this is done, then the person value is stored in the person field.  This is the field that you can filter by "TargetPerson" is equal to [Me]
    Laura Rogers, MCSE, MCTS
    SharePoint911: SharePoint Consulting
    Blog: http://www.sharepoint911.com/blogs/laura
    Twitter: WonderLaura

  • Filter list items based on security groups o365

    How to filter list items based on security groups in o365.

    Hi,
    According to your description, my understanding is that you want to filter list items based on the Office 365 security groups.
    If that is the case, I suggest you can create a data view to filter the list items with CAML Query like below:
    <Where>
    <Membership Type="CurrentUserGroups">
    <FieldRef Name="VisibleToGroup"/>
    </Membership>
    </Where>
    For more information, please refer the detailed article below:
    SharePoint - Filtering a View by Group Membership
    Thanks
    Best Regards
    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]

  • Query to get objects list for which the current user has 'SELECT' privilege

    Hi,
    I want to get tables and views list for which the current user has 'SELECT' privilege excluding sytem tables and views. The privilege information for the current user is scattered in more than one system views. I have following system views
    USER_TAB_PRIVS_RECD - Object grants for which the current user is the grantee
    ROLE_TAB_PRIVS - describes table privileges granted to roles. Information is provided only about roles to which the user has access.
    If the object privilege is granted explicitly like "GRANT ALL ON TABLE_NAME TO "USERNAME" then this privilege entry goes to USER_TAB_PRIVIS_RECD
    If the object privilege is granted by ROLE. Role is created with certain object privileges. this role is assigned to user "GRANT ROLE_NAME TO "USERNAME"", then this entry goes to ROLE_TAB_PRIVS
    From these findings, I have composed below query
    (SELECT DISTINCT TABLE_NAME FROM USER_TAB_PRIVS_RECD) UNION (SELECT DISTINCT TABLE_NAME FROM ROLE_TAB_PRIVS WHERE PRIVILEGE = 'SELECT')
    Have I got user's all prvilege details? should I look some other system views?
    How to exclude system table privileges details?
    (SELECT DISTINCT TABLE_NAME FROM USER_TAB_PRIVS_RECD) UNION (SELECT DISTINCT TABLE_NAME FROM ROLE_TAB_PRIVS WHERE PRIVILEGE = 'SELECT' AND OWNER NOT IN ('SYS','SYSTEM') Is this right?
    What about Public role in Oracle? Should I consider public role here?
    Oracel Version :11g
    I want make this query to work on Oracle 8i or above version
    Thanks

    >
    I want to get tables and views list for which the current user has 'SELECT' privilege excluding sytem tables and views.
    >
    You will need a hierarchical query to do that.
    Try this script for Listing privileges recursively for Oracle users
    http://www.adp-gmbh.ch/ora/misc/recursively_list_privilege.html

  • How to Filter Lookup Field Values by Current User in Caml Query

    sharadpatil

    Hi,
    If you want to use JavaScript, we can use SPServices to achieve it.
    /* Get Current username */
    var userName = $().SPServices.SPGetCurrentUser({ fieldName: "Title" });
    /* Get Sites assigned to current user */
    var query = "<Query><Where><contains><FieldRef Name='UserName' /><Value Type='User'>" +
    userName + "</Value></contains></Where></Query>";
    More information is here:
    SharePoint – Filter Lookup Field Values by Current User
    http://ljayaprakash.wordpress.com/2012/06/01/filter-lookup-field-values-by-current-user/
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Different masterhead image based on the user logged in portal

    HI,
    Presently we are using standard portal theme.How can I change the image in the masterhead based on the user logged in.How can i change that and i want to assign that masteredhead to users.
    Can anybody give me suggesion about this.
    Thanks,
    Regards,
    Srinivas

    Dear Srinivas,
    Simple of achiving this kind of scnario is create separate themes for different users and assign the themes to the users in master rule collection through Desktop Page.Here in this case you will be creating one framework page and multiple Desktops and themes.All the desktops will be having the same framework page and different themes based on the user type or group type.
    Otherway of achiving this is create an pdk application where it will have multiple jsp components in it and based on the each component create one PAR iview.Let us take if four groups of users then you will be creating four different jsps in pdk application which will inturn contains different masterhead images and related logos.After creating the iview place the iview in the correcsponding framework page below the masterhead iview.Here multiple framework pages and Desktops and you can go with single theme.
    In the first scenario the masteread , we are managing through the theme and in second the masterhead we are managing throgh application.
    Either of the scenarios can be used to create differet masterheads for different users.
    Hope the answer helps you....
    Reward the points if it is helpful.
    Thanks,
    Rudradev Devulapalli

  • Different masterhead image based on the user logged in

    HI,
    Presently we are using standard portal theme.How can I change the image in the masterhead based on the user logged in.How can i change that and i want to assign that masteredhead to users.
    Can anybody give me suggesion about this.
    Thanks,
    Regards,
    Srinivas

    Dear Srinivas,
            Simple of achiving this kind of scnario is create separate themes for different users and assign the themes to the users in master rule collection through Desktop Page.Here in this case you will be creating one framework page and multiple Desktops and themes.All the desktops will be having the same framework page and different themes based on the user type or group type.
            Otherway of achiving this is create an pdk application where it will have multiple jsp components in it and based on the each component create one PAR iview.Let us take if four groups of users then you will be creating four different jsps in pdk application which will inturn contains different masterhead images and related logos.After creating the iview place the iview in the correcsponding framework page below the masterhead iview.Here multiple framework pages and Desktops and you can go with single theme.
             In the first scenario the masteread , we are managing through the theme and in second the masterhead we are managing throgh application.
             Either of the scenarios can be used to create differet masterheads for different users.
    Hope the answer helps you....
    Reward the points if it is helpful.
    Thanks,
    Rudradev Devulapalli

  • Form filtering based on the user logged in

    Hello i want to create some report pages, based on a table.
    More specifically a user that has logged in using an authentication scheme, should be able to see his details (taken form customers table) How do i compare the current user logged in with all the user entries in the database. Maybe some sort of pl/sql procedure solves the problem.

    Yes! After several tries and changes, it worked! Thank you very much for answering my trivial question...
    SELECT "CUSTOMERS"."CUST_USERNAME" as "CUST_USERNAME",
         "CUSTOMERS"."CUST_PASSWORD" as "CUST_PASSWORD",
         "CUSTOMERS"."CUST_NAME" as "CUST_NAME",
         "CUSTOMERS"."CUST_SURNAME" as "CUST_SURNAME",
         "CUSTOMERS"."CUST_EMAIL" as "CUST_EMAIL",
         "CUSTOMERS"."CUST_SEX" as "CUST_SEX",
         "CUSTOMERS"."CUST_BIRTHDATE" as "CUST_BIRTHDATE",
         "CUSTOMERS"."CUST_ADDRESS" as "CUST_ADDRESS",
         "CUSTOMERS"."CUST_PCODE" as "CUST_PCODE",
         "CUSTOMERS"."CUST_CITY" as "CUST_CITY",
         "CUSTOMERS"."CUST_COUNTRY" as "CUST_COUNTRY",
         "CUSTOMERS"."CUST_PHONE" as "CUST_PHONE",
         "CUSTOMERS"."CUST_MOBILE" as "CUST_MOBILE"
    from     "CUSTOMERS" "CUSTOMERS"
    where upper(customers.cust_username) = :APP_USER

  • Is it possible to turn List View off in Mountain Lion's Calendar?

    I used to be able to see just the day view with calendar blocks.  Now I have a list view between my calendars and my day's schedule.  This is really messing up my work flow (I schedule people all day).  Is it possible to get rid of the list view and go back to just seeing the calendars and the day schedule?

    Don't know about (a), but (b) looks like a 'yes':
    http://www.independent.co.uk/news/world/americas/former-classmate-pleads-guilty- to-sextortion-after-hacking-into-webcam-of-miss-teen-usa-cassidy-wolf-8937293.ht ml
    http://www.dailymail.co.uk/news/article-2391282/Cassidy-Wolf-Newly-crowned-Miss- Teen-USA-secretly-photographed-room-webcam-hacked-case-sparked-federal-probe.htm l
    She reckons that no webcam light was showing to indicate it was active .

  • Filter List View by User and Groups in SharePoint Does Not Work on site Restore to another Server

    We have a scenario where users from a group or seeing items of list views entered by users of other group.
    For e.g, we have (ALL are Active Directory users and are authenticated as such)
    GROUP A with USER-A1, USER-A2, USER-A3
    GROUP B with USER-B1, USER-B2, USER-B3
    GROUP C with USER-C1, USER-C2, USER-C3
    We created views called
    GROUP_A_VIEW
    GROUP_B_VIEW
    GROUP_C_VIEW
    We created a web part for each of this view
    And from Advanced Settings, added Target audience for each VIew with respect. For e.g. if Target AUdience is Group A, then USER-A1 will see items entered by himself or USER-A2, and USER-A3 but not the mbers of GROUP_B and GROUP_C
    It works fine on the our development machine.
    However when we backup and restore to other machine containing the same Active Directory users, 
    GROUP A members are seeing records entered by GROUP B
    GROUP B members are seeing records entered by GROUP C
    GROUP C members are seeing records entered by GROUP D
    ....etc.
    Any help will be appreciated.
    Murali Boyapati

    Groups and users are stored locally in a cache on each site collection. Within that site collection they have IDs assigned which are used internally to identify those groups.
    What is probably happening is that the groups you've targeted are being identified by IDs which are not consistent between your source site collection and your destination collection.

  • Filter Project Server custom field based on current user?

    I've got a Project Server 2013 custom field, and I'd like to create a view that only shows me projects where the value in that custom field equals the current user. Simply put: I'm trying to find functionality similar to the [Me] filter in SharePoint.
    Apparently, simply using [Me] doesn't work. How can I fix this?

    I am trying to do something similar. were you able to find a solution to this? I am assuming no. 
    Parthiv Bhuta . Consultant

  • List View Web Part anonymous users paging is broken

    Hi I checked that list view web part do not work for anonymous users with paging. wanted to check if its known bug or there is some intention to keep it like that.
    Rohit Pasrija

    Hi,
    According to your description, there is an issue that if the paging is configured for a list view web part, it will be broken for anonymous users.
    I tried to reproduce this issue with the steps below, however, all work without issue.
    1. Enable anonymous access in Web Application level;
    2. Enable anonymous access in site collection level;
    3. By default, the permission settings of a list inherit the permissions from its parents, that’s say, anonymous access also enabled in the current list, “Anonymous
    Users” can “View Items”;
    4. Set paging for the “AllItems” view, add this list as a web part into a page, the paging works as expected for anonymous users.
    I suggest you create a new Web Application and configure to enable anonymous access following the steps above to see if the issue still exists.
    Thanks
    Patrick Liang
    Forum Support
    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]
    Patrick Liang
    TechNet Community Support

Maybe you are looking for