A requester submits one order containing two different catalog items, and the fulfilment process configured on each item raises two separate units of work for two different fulfilment groups. Which record structure does the platform produce for that submission?
- ATwo requests, each holding one requested item, with two catalog tasks generated beneath each of those requested items.
- BOne request holding one requested item that names both products, with four catalog tasks generated beneath that requested item.
- CTwo requests, each holding two requested items, with one catalog task generated beneath every one of those requested items.
- DOne request holding two requested items, with two catalog tasks generated beneath each of those two requested items. Correct
Why A is wrong: Tempting because the two items go to different groups, which suggests separate orders, but a single submission produces a single request no matter how many distinct items it contains.
Why B is wrong: This collapses the middle layer, which is a common misreading, but a requested item represents one ordered item and its variable answers, so two ordered items cannot share one requested item.
Why C is wrong: The task count matches the work described, which makes it look right at a glance, but it duplicates both the request and the requested items and misplaces where the two units of work belong.
Why D is correct: The submission itself is the request, each ordered item becomes its own requested item carrying that item's variable answers, and each item's fulfilment process generates its own catalog tasks under its requested item.