A system administrator wants to create a catalog item that allows users to request a new software license. The item needs to have a variable that lets the user choose the software from a list, and then automatically calculate the cost based on the license type and quantity. Which variable type should be used for the software selection?
Trap 1: Reference
A Reference variable allows selection from a list of records but stores a single record reference. It is not suitable for this scenario because it does not support dynamic calculations or storing additional lookup data like license cost.
Trap 2: Select Box
Select Box uses a static list and would require updates when new software is added.
Trap 3: Record Producer
Record Producer is a type of catalog item, not a variable type.
- A
Reference
Why wrong: A Reference variable allows selection from a list of records but stores a single record reference. It is not suitable for this scenario because it does not support dynamic calculations or storing additional lookup data like license cost.
- B
Lookup Select
Lookup Select dynamically loads options from a table and can display additional fields.
- C
Select Box
Why wrong: Select Box uses a static list and would require updates when new software is added.
- D
Record Producer
Why wrong: Record Producer is a type of catalog item, not a variable type.