I_SnapshotPurposeStatusTxt
Snapshot Purpose Text
I_SnapshotPurposeStatusTxt is a Basic CDS View that provides data about "Snapshot Purpose Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields ACMSnapshotFieldPurpose, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPURTT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Snapshot Purpose Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.representativeKey | ACMSnapshotFieldPurpose | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| Search.searchable | true | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ACMSnapshotFieldPurpose | |||
| KEY | Language | |||
| ACMTrdgContrSnpshtPrpsDesc | dd07t | ddtext | ||
| _Purpose | _Purpose | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IPURTT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Snapshot Purpose Text'
@Metadata.ignorePropagatedAnnotations: true
//@ObjectModel.semanticKey: ['Purpose']
@ObjectModel.representativeKey:'ACMSnapshotFieldPurpose'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@Search.searchable: true
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
define view I_SnapshotPurposeStatusTxt
as select from dd07t
association to parent I_SnapshotPurposeStatus as _Purpose on $projection.ACMSnapshotFieldPurpose = _Purpose.ACMSnapshotFieldPurpose
association to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_Purpose'
@ObjectModel.text.element: ['ACMTrdgContrSnpshtPrpsDesc']
key cast( dd07t.domvalue_l as /accgo/e_snp_fld_purpose ) as ACMSnapshotFieldPurpose,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key cast( dd07t.ddlanguage as spras preserving type ) as Language,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@Semantics.text: true
dd07t.ddtext as ACMTrdgContrSnpshtPrpsDesc,
_Purpose,
_Language
}
where
domname = '/ACCGO/D_SNP_FLD_PURPOSE'
and dd07t.as4local = 'A'
and dd07t.as4vers = '0000'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_SNAPSHOTPURPOSESTATUS"
],
"BASE":
[],
"ANNO_REF":
[],
"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