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
Travis GorbahnTravis Gorbahn 

Personal Productivity App

I am looking to make a "Personal Productiviy App" - As a developer who is in an acting sales/admin role, I use salesforce often. Mainly, I am assigned tasks specific to my department.

I am looking to grab my tasks, and the attributes of those tasks somehow. Then once complete update the corresponding information.

I have had a good look around - I really don't know where to start or what would be the best approch. Does anyone have any ideas?
Daniel B ProbertDaniel B Probert
So display all your records in a list that you can edit inline?

if so check out grid buddy 
Travis GorbahnTravis Gorbahn
I should probably clarify - I was hoping to use an API or queries of some kind to get this all done. (Or most of it)
Daniel B ProbertDaniel B Probert
well this should give you a list of your tasks that aren't completed..
public with sharing class cls_getmytasks {
    List<Task> mytasks;
    public List<Task> getmytasks() {
        if(mytasks == null) {
            mytasks = [SELECT id,OwnerID,Subject,Type,Status
                FROM Task 
                WHERE OwnerID =: UserInfo.getUserId() and Status != 'Completed'];
            }
            return mytasks;
    }
}
just need a VF page to display and then some coding for button and actions on the page..