I_FldLogsContainerStatusTxt

DDL: I_FLDLOGSCONTAINERSTATUSTXT SQL: IFLCTNSTATTXT Type: view BASIC

Field logistics: Container Status text

I_FldLogsContainerStatusTxt is a Basic CDS View that provides data about "Field logistics: Container Status text" in SAP S/4HANA. It reads from 1 data source (dd07v) and exposes 3 fields with key fields Language, FldLogsContainerStatus.

Data Sources (1)

SourceAliasJoin Type
dd07v dd07v from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IFLCTNSTATTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey FldLogsContainerStatus view
EndUserText.label Field logistics: Container Status text view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language ddlanguage Lang.
KEY FldLogsContainerStatus
FldLogsContainerStatusText ddtext Short text

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_FldLogsContainerStatusTxt.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IFLCTNSTATTXT

CREATE VIEW I_FldLogsContainerStatusTxt AS
SELECT
  ddlanguage AS Language,
  cast(dd07v.domvalue_l as flog_cont_status ) AS FldLogsContainerStatus,
  ddtext AS FldLogsContainerStatusText
FROM dd07v
;