T100_M
Text Verticalization: Replacement View for T100
T100_M is a CDS View that provides data about "Text Verticalization: Replacement View for T100" in SAP S/4HANA. It reads from 2 data sources (t100_i, t100) and exposes 4 fields with key fields sprsl, arbgb, msgnr.
Annotations (3)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.entityBuffer.definitionAllowed | true | view | |
| EndUserText.label | Text Verticalization: Replacement View for T100 | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view |
@AbapCatalog.entityBuffer.definitionAllowed: true
@EndUserText.label: 'Text Verticalization: Replacement View for T100'
@AccessControl.authorizationCheck: #NOT_ALLOWED
define view entity T100_M
as select from t100 as orig
left outer join t100_i as delta on orig.sprsl = delta.sprsl
and orig.arbgb = delta.arbgb
and orig.msgnr = delta.msgnr
{
key orig.sprsl as sprsl,
key orig.arbgb as arbgb,
key orig.msgnr as msgnr,
coalesce(delta.text, orig.text) as text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T100",
"T100_I"
],
"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