Fulfillment tables
To enable a production instance to enforce entitled usage of your ServiceNow Store App, you configure the tables where only record owners or subscribed app users can make updates.
In contrast, for a table that is not a fulfillment table, any user—even a user who is not subscribed—can act as a requester. The intent is to allow the usage admin to enable subscription enforcement on any production instance that implements the application.
Ownership of records in a fulfillment table
To enable the system to identify a fulfiller action, you define how to determine ownership of any record in the table. The developer of the application specifies the set of conditions that determine whether a user owns the record. For example, UserA owns a record in a task table if UserA opened the record or another resource opened the record on behalf of UserA.System default conditions for ownership
| Action | Ownership condition [owner_condition] |
|---|---|
| task extension | opened_by (read-only) |
| catalog request | requested_for (read-only) |
| other tables in apps that require a subscription | sys_created_by (read-only) |
| tables created by developer for app that requires a subscription | Specified by developer |