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
Jonathan PenaJonathan Pena 

How do i check how data is feeding into an object in Salesforce

I have two objecs in salesforce that are beeing feed data from an external system. How do i check how data is being fed into those object. 
Best Answer chosen by Jonathan Pena
mukesh guptamukesh gupta
Hi Jonathan,

by REST API integration you can use email functionality in apex , when you want to know how many records updated in salesforce.
Or you can use a new object that will store record Id if record is successfully added in salesforce , if any error due to insert ot update time then this errror will log in new object error_log__c field. that's would be help full to track in future

if you need any assistanse, Please let me know!!

Kindly mark my solution as the best answer if it helps you.

Thanks
Mukesh 

All Answers

PriyaPriya (Salesforce Developers) 

Hey Jonathan,

You can track it from the debug log.

Regards,

Priya Ranjan

mukesh guptamukesh gupta
Hi Jonathan,

by REST API integration you can use email functionality in apex , when you want to know how many records updated in salesforce.
Or you can use a new object that will store record Id if record is successfully added in salesforce , if any error due to insert ot update time then this errror will log in new object error_log__c field. that's would be help full to track in future

if you need any assistanse, Please let me know!!

Kindly mark my solution as the best answer if it helps you.

Thanks
Mukesh 
This was selected as the best answer