A developer is creating an application in ServiceNow Studio and needs to ensure that all new records created in a custom table are automatically assigned a number. Which THREE methods can be used to achieve this? (Choose three.)
A default value, such as a function, can generate a number automatically.
Why this answer
Options A, B, and C are correct. A business rule can set the number via script, a flow can assign a number using a 'Create Record' step, and a default value on the number field will apply automatically. Option D (client script) is unreliable because it runs client-side and can be bypassed.
Option E (database view) does not generate numbers.