I_SamplingProcedureInspSubsetT
Smplng Proced Insp Point Type Text
I_SamplingProcedureInspSubsetT is a Basic CDS View that provides data about "Smplng Proced Insp Point Type Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields SamplingProcedureInspSubset, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [1..1] | I_SamplingProcedureInspSubset | _SamplingProcedureInspSubset | $projection.SamplingProcedureInspSubset = _SamplingProcedureInspSubset.SamplingProcedureInspSubset |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Smplng Proced Insp Point Type Text | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | ISMPLPRCISUBSETT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.representativeKey | SamplingProcedureInspSubset | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.dataCategory | #TEXT | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SamplingProcedureInspSubset | |||
| KEY | Language | ddlanguage | ||
| SampleProcedureInspSubsetText | ||||
| _Language | _Language | |||
| _SamplingProcedureInspSubset | _SamplingProcedureInspSubset |
@EndUserText.label: 'Smplng Proced Insp Point Type Text'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'ISMPLPRCISUBSETT'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
usageType: {
dataClass: #META,
sizeCategory: #S,
serviceQuality: #C // as function substring is used but #A and #B must not contain functions
},
representativeKey: 'SamplingProcedureInspSubset',
resultSet.sizeCategory: #XS,
dataCategory: #TEXT
}
define view I_SamplingProcedureInspSubsetT
as select from dd07t
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association [1..1] to I_SamplingProcedureInspSubset as _SamplingProcedureInspSubset
on $projection.SamplingProcedureInspSubset = _SamplingProcedureInspSubset.SamplingProcedureInspSubset
{
key cast ( substring( domvalue_l, 1, 1 ) as vdm_qkzrast ) as SamplingProcedureInspSubset,
@Semantics.language: true
key ddlanguage as Language,
@Semantics.text: true
cast( ddtext as vdm_qkzrast_text ) as SampleProcedureInspSubsetText,
// _DomainGlobalFieldName, //decomment only if no problems in analytics
_Language,
_SamplingProcedureInspSubset
}
where domname = 'QKZRAST' and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_SAMPLINGPROCEDUREINSPSUBSET"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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