What is the use of id generator when it is linked to only one entity?How does it create a unique id if that entity stores different data?

Please explain about id generator.

4 Likes

The ID Generator is a feature that helps automatically assign a unique identifier (ID) to each new record or object in your system. When you define the ID generation rules (such as format or sequence), the system will follow those rules every time a new entity is created. This happens during the Load New Object task, which is typically triggered by a user action (like clicking a button or submitting a form). This ensures every entity gets a distinct and traceable ID without manual input.

3 Likes