LOT-835 Free Dumps Study Materials
Question 4: The Purchase Requisition workflow application has been very successful. But the categorized view, "By
Status", displays the status categories alphabetically: Approved, Cancelled, Denied, Draft, Submitted. Eva
needs to display the categories in the order of Draft, Submitted, Approved, Denied, Cancelled. How can
she do this?
A.Create a hidden column as the first column. Use the column formula: @If(Status=Draft;10;
Status=Submitted;20; Status=Approved;30; Status=Denied;40;Status=Cancelled;50) Sort the column
ascending.
B.Instead of directly referencing the field, change the Status column to use the formula:
@If(Status="Draft";"10"; Status="Submitted";"20"; Status="Approved";"30";
Status="Denied";"40";"50");Status
C.Create a hidden column as the first column. Use the column formula: @If(Status="Draft";"10";
Status="Submitted";"20"; Status="Approved";"30"; Status="Denied";"40";"50") Sort the column ascending.
D.Instead of directly referencing the field, change the Status column to use the formula:
@If(Status=Draft;"10"; Status=Submitted;"20"; Status=Approved;"30"; Status=Denied;"40";
Status=Cancelled;"50");Status Select the column property "Alias sorting"
Correct Answer:C