function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Teach_me_howTeach_me_how 

list view "visible only to me"

how can a system admin see list view created by user setup as "visible only to me"
wt35wt35

Not sure you can do this from a System Admin session.

At least you can request the "Login as  any user" feature.

 

http://help.salesforce.com/apex/HTViewSolution?id=000089838&language=en_US

 

 

Teach_me_howTeach_me_how
is there metadata or api for views where i can rely on?
gautam_singhgautam_singh

Hi ,

 

I guess you can copy the code over in Force.com IDE and check for the List Views in Metadata which are present in your Salesforce Organization. The XML for List Views is like this

<?xml version="1.0" encoding="UTF-8"?>
<CustomObject xmlns="http://soap.sforce.com/2006/04/metadata">
. . .
    <listViews>
        <fullName>All_Mileages</fullName>
        <filterScope>all</filterScope>
        <label>All Mileages</label>
    </listViews>
    <listViews>
        <fullName>My_Mileages</fullName>
        <booleanFilter>1 AND 2</booleanFilter>
        <columns>NAME</columns>
        <columns>CREATED_DATE</columns>
        <filterScope>mine</filterScope>
        <filters>
            <field>NAME</field>
            <operation>equals</operation>
            <value>Eric Bristow</value>
        </filters>
        <filters>
            <field>City__c</field>
            <operation>equals</operation>
            <value>Paris</value>
        </filters>
        <label>My Mileages</label>
    </listViews>
</CustomObject>


Click Here for more details ..



Important :

Click on the Star Icon aside if this post provides you with useful information and if this is what you where looking for then please mark it as a solution for other benefits.

Thank You

sandeep@Salesforcesandeep@Salesforce

it is not allowed because list view may only visible to a person and group to whom it was assigned when created. you should request to him to include also for allowing your visibility