RETAIL
Purpose
These functions return a VARCHAR2 value that uniquely identifies a member in the specified level using the 4-5-4 calendar of the National Retail Federation (NRF).
Each of the retail functions returns a VARCHAR2 value that uniquely identifies a member in an implicit hierarchy at a particular level. For this reason, the NLS_DATE_FORMAT, NLS_TIMESTAMP_FORMAT, and NLS_TIMESTAMP_TZ_FORMAT do not apply to these functions. They each have their own default formats. These functions respect the setting of NLS_DATE_LANGUAGE.
-
dtexpris a datetime expression with one of the following types (or any value that can be implicitly converted toDATE):DATE,TIMESTAMP,TIMESTAMP WITH TIME ZONE,TIMESTAMP WITH LOCAL TIME ZONE. -
fmtis a text expression representing a format string. In all cases, the case-sensitivity of the format specifiers follows the same behavior asTO_CHAR. For example,MONspecifies an abbreviated month in upper-case (e.g.JAN),monspecifies an abbreviated month name in lower-case (e.g.jan), andMonspecifies an abbreviated month name in title-case (e.g.Jan). -
All retail functions take an optional
is_restatedparameter that controls how years that require 53 weeks are handled.The
is_restatedparameter is a text expression that must resolve to eitherRESTATEDorNOT RESTATED(case-insensitive). A retail year typically contains exactly 52 weeks, which is 364 days. Therefore, every 5 or 6 years an extra 53rd week is added. This is a non-restated calendar and is what is produced when theis_restatedparameter isNOT RESTATED(the default). Some users prefer to have all years contain 52 weeks for comparison purposes. Such calendars are called restated calendars, and is what is produced when theis_restatedparameter isRESTATED. -
nlsparamis a text expression representing an NLS parameter setting. The only currently supported parameter isNLS_DATE_LANGUAGE, and is specified in the same manner as forTO_CHARandTO_DATE.
Formats for Retail Functions
The following table describes the format strings for each of the functions. The required formats must appear somewhere in the format string, and an error will be raised if not present. The optional formats may appear in the format string. All other format specifiers are prohibited and an error will be raised if included. The default format strings are similar to the ones for the calendar hierarchies, with years prefixed with RY. Since the retail calendar is deliberately defined by weeks starting on a Sunday, the default day format uses the day of the week and week number rather than the day and month.
Table 7-9 Formats for Retail Functions
| Function | Required Formats | Optional Formats | Default Format String |
|---|---|---|---|
|
|
|
None |
Example: |
|
|
|
None |
Example: |
|
|
One of |
|
Example: |
|
|
|
None |
Example: |
|
|
|
|
Example: |
Format Descriptions for Retail Functions
The following table describes the interpretation of the format specifiers for retail hierarchies. Note that all numeric formats are relative within the retail year. The year and month are as defined by the NRF 4-5-4 calendar. The capitalization rules for MON, MONTH, DY, and DAY all follow the usage elsewhere (i.e. TO_CHAR) with regard to lower-case (e.g. month => june), upper-case (e.g. MONTH => JUNE), and title-case (e.g. Month => June).
Table 7-10 Format descriptions for retail functions
| Format Specifier | Description |
|---|---|
|
|
4-digit retail year (only positive years supported) |
|
|
4-digit retail year, with BC years as negative |
|
|
Quarter of retail year (1-4) |
|
|
Month of retail year (1-12), corresponding to the calendar year of the retail month. For example, in the retail year 2025 the month of Feb (the 1st month in the retail year) begins on Feb 2 and ends on March 1. The |
|
|
Abbreviated name of month |
|
|
Name of month |
|
|
Week number (1-53), 2-digits. Note that because the 4-5-4 calendar results in a year with 7*52=364 days, it's occasionally necessary to add a 53rd week. Please consult the NRF for more information on the calendar. |
|
|
Abbreviated name of day |
|
|
Name of day |
|
|
Day of week (1-7). Depends on the |
|
|
Day of month (1-31), 2-digits, within the retail month. For example, retail year 2025 begins on Feb 2. Since that's the first day of the month, the DD value for that day would be 01. |
|
|
Day of year (1-371), 3-digits, within the retail year |
