View the Exhibit.
The Customer Orders page has a requirement that Order Status cannot be changed to Closed if
Fill Status is for any row in Order Details.
You write a FieldChange PeopleCode program with a loop to check the values of Fill Status.
Each loop increments &I.
Which statement would you use in the loop to check Fill Status?
A.
&status = FetchValue(Scroll.ORDER_DTL, &I, ORDER_DTL.FILL_STATUS);
B.
&status = FetchValue(&I, ORDER_DTL.FILL_STATUS);
C.
&status = FetchValue(ORDER_DTL.FILL_STATUS, &I);
D.
&status = FetchValue(ORDER_DTL.FILL_STATUS);
E.
&status = ORDER_DTL.FILL_STATUS;