I_FldLogsContainerStatusTxt
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. Part of development package FLOG_RETURN_PROCG_BASE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07v | dd07v | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | ddlanguage | ||
| KEY | FldLogsContainerStatus | |||
| FldLogsContainerStatusText | ddtext |
@AbapCatalog.sqlViewName: 'IFLCTNSTATTXT'
//@Search.searchable: true
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'FldLogsContainerStatus'
@EndUserText.label: 'Field logistics: Container Status text'
define view I_FldLogsContainerStatusTxt
as select from dd07v
{
@Semantics.language: true
key ddlanguage as Language,
@ObjectModel.text.element: 'FldLogsContainerStatusText'
key cast(dd07v.domvalue_l as flog_cont_status ) as FldLogsContainerStatus,
ddtext as FldLogsContainerStatusText
}
where
ddlanguage = $session.system_language
and domname = 'FLOG_CONT_STATUS'
and domvalue_l != '99'
and domvalue_l <> '40'
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA