Bulitin vs Repository

Bulitin Repository
In Built-In we can manually edit the data as data is kept locally in the job In repository all the data is stored there only. We can extract only Read-only-information into the job from repository.
all information is stored locally in the Job. all information is stored in the repository.
You can enter and edit all information manually. It changes the data in the Repository.
We should use Built-in for the data which we use rarely use the Repository for the data which we use repeatedly in multiple components or Jobs, such as a database connection
Data within a Job is accessible to make updates in Built-in unlike Repository where the data is read-only.
Only a local Job can use the data in Built-in In the case of Repository, any Job inside a Project can use it.

Followers