In some business scenarios, it is required to display names for DayOfWeek values (e.g. Sunday, Monday, etc.) in metrics or attributes in Strategy.
Follow the steps below to achieve the requirement:

CaseV(DayOfWeek(Max(Day) {~+} ), 1, "Sunday", 2, "Monday", 3, "Tuesday", 4, "Wednesday", 5, "Thursday", 6, "Friday", 7, "Saturday")
Oracle 11g is used as an example here.

CREATE TABLE TEST_DAY (TEST_DAY DATE);
INSERT INTO TEST_DAY VALUES (to_date('01/01/2009','mm/dd/yyyy'));
…
ApplySimple("Case {fn DayOfWeek(#0)} WHEN 1 THEN 'Sunday' WHEN 2 THEN 'Monday' WHEN 3 THEN 'Tuesday' WHEN 4 THEN 'Wednesday' WHEN 5 THEN 'Thursday' WHEN 6 THEN 'Friday' WHEN 7 THEN 'Saturday' END", )