Search Results default_format_flag




Overview

WMS_LABEL_FORMATS_V is a VALID Oracle EBS view owned by the APPS schema within the WMS (Warehouse Management) product. It is documented in ETRM for both Oracle EBS 12.1.1 and 12.2.2. The view is a single-table projection over WMS_LABEL_FORMATS and serves as the base query block for the LABELS_FORMATS block in the Oracle Forms-based label administration UI, WMSLABEL.fmb (starting at version 115.3), where it replaces the older WMS_LABEL_V view. Because the object is a view rather than a table, it exposes underlying label-format configuration rows for query and reporting without providing an independent storage structure.

Underlying Base Objects

The documented base object for this view is the synonym WMS_LABEL_FORMATS, which resolves in APPS to the label format definition table. The view text selects from that table using the alias WLF and projects its columns with no joins or unions, confirming a direct, one-to-one passthrough mapping. The row identifier is exposed as ROW_ID, obtained from WLF.ROWID, and all other columns are direct projections of the underlying table columns. Consequently, any DML or read against the view is governed entirely by the base table and by APPS-level grants on both the synonym and the view.

Key Columns

Common Use Cases and Queries

Typical uses include validating label format setup, extracting active formats for integration with label printing or WMS device interfaces, and auditing the EPC and filter configuration tied to each format. A common example filters on FILTER_VALUE, matching the user's search term, and on the default flag or disable date:

  • Active formats: SELECT label_format_id, label_format_name, filter_value, default_format_flag FROM wms_label_formats_v WHERE format_disable_date IS NULL OR format_disable_date > SYSDATE;
  • Filtered lookup: SELECT label_format_id, label_format_name, filter_value FROM wms_label_formats_v WHERE filter_value = :filter_value;
  • Default and EPC-enabled formats: SELECT label_format_id, label_format_name, epc_rule_type, epc_category_id FROM wms_label_formats_v WHERE default_format_flag = 'Y' AND generate_epc = 'Y';

All queries should be executed against the APPS schema or a synonym with appropriate privileges, and results should respect the audit columns for change tracking.

  • View: WMS_LABEL_FORMATS_V 12.2.2

    owner:APPS,  object_type:VIEW,  fnd_design_data:WMS.WMS_LABEL_FORMATS_V,  object_name:WMS_LABEL_FORMATS_V,  status:VALID,  product: WMS - Warehouse Managementdescription: This view serves as a base table for the LABELS_FORMATS block in WMSLABEL.fmb (starting version 115.3) replacing WMS_LABEL_V ,  implementation_dba_data: APPS.WMS_LABEL_FORMATS_V

  • View: WMS_LABEL_FORMATS_V 12.1.1

    owner:APPS,  object_type:VIEW,  fnd_design_data:WMS.WMS_LABEL_FORMATS_V,  object_name:WMS_LABEL_FORMATS_V,  status:VALID,  product: WMS - Warehouse Managementdescription: This view serves as a base table for the LABELS_FORMATS block in WMSLABEL.fmb (starting version 115.3) replacing WMS_LABEL_V ,  implementation_dba_data: APPS.WMS_LABEL_FORMATS_V