I_FldLogsOrderUnitText
FL - Order Unit Text View
I_FldLogsOrderUnitText is a Basic CDS View that provides data about "FL - Order Unit Text View" in SAP S/4HANA. It reads from 2 data sources (marm, t006a) and exposes 3 fields with key fields RetblQtyOrderUnit, Material.
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFLORDERUNITTEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Search.searchable | true | view | |
| EndUserText.label | FL - Order Unit Text View | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view |
@AbapCatalog.sqlViewName: 'IFLORDERUNITTEXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck:#NOT_REQUIRED
@Search.searchable: true
@EndUserText.label: 'FL - Order Unit Text View'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #B
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #VALUE_HELP
@AccessControl.personalData.blocking: #NOT_REQUIRED
define view I_FldLogsOrderUnitText
as select from t006a as _Unit
inner join marm as _MatUom on _MatUom.meinh = _Unit.msehi
{
@Search: { defaultSearchElement: true, ranking: #HIGH }
@ObjectModel.text.element: [ 'RetblQtyOrderUnitText' ]
key _Unit.msehi as RetblQtyOrderUnit,
key _MatUom.matnr as Material,
@Semantics.text: true
_Unit.msehl as RetblQtyOrderUnitText
}
where
_Unit.spras = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"MARM",
"T006A"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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