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
Jeremy DJeremy D 

Create report pulling data from custom object

I created a custom object which is linked to the User table. within this custom object, I have multiple record for each user.

Is it possible that each user can pull the record associated with his/her ID?

This is my very first report, so please give as much details as possible.

Thank You

AbdelhakimAbdelhakim
Yes it's possible but first you have to :
  1. You must allow report in the custom object
    • User-added image
  2. Each record must be owened by the user (you can create a trigger on insert and on update to modifier the owner with the user selected)
  3. create report and select "Show My items" ex : User-added image
I hope it can help you :)