I_CmplncPrpsActvtnText
Compliance Purpose Activation Text
I_CmplncPrpsActvtnText is a Basic CDS View that provides data about "Compliance Purpose Activation Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, CmplncPrpsActivationStatus. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_CmplncPrpsActvtn | _CmplncPrpsActvtn | $projection.CmplncPrpsActivationStatus = _CmplncPrpsActvtn.CmplncPrpsActivationStatus |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICPACTVTNT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Compliance Purpose Activation Text | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.representativeKey | CmplncPrpsActivationStatus | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | |||
| KEY | CmplncPrpsActivationStatus | |||
| CmplncPrpsActivationStatusName | ||||
| _CmplncPrpsActvtn | _CmplncPrpsActvtn | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'ICPACTVTNT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
-- CDS View Classification: 1. No data access restriction required
-- Reason: Value Help View for Domain Fix values
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Compliance Purpose Activation Text'
@VDM.viewType: #BASIC
@ObjectModel:
{
dataCategory: #TEXT,
usageType:
{
dataClass: #MASTER,
sizeCategory: #S,
serviceQuality: #B
},
representativeKey: 'CmplncPrpsActivationStatus'
}
// Client handling by session
@ClientHandling.algorithm: #SESSION_VARIABLE
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view I_CmplncPrpsActvtnText
as select from dd07t
association [0..*] to I_CmplncPrpsActvtn as _CmplncPrpsActvtn on $projection.CmplncPrpsActivationStatus = _CmplncPrpsActvtn.CmplncPrpsActivationStatus
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Semantics.language: true
key cast ( ddlanguage as spras preserving type ) as Language,
//key cast ( cast ( substring( domvalue_l, 1, 1 ) as abap.char( 1 ) ) as ehfnd_cmplnc_prps_actvtn_sts) as CmplncPrpsActivationStatus,
key cast ( ( substring( domvalue_l, 1, 1 ) ) as ehfnd_cmplnc_prps_actvtn_sts preserving type) as CmplncPrpsActivationStatus,
@Semantics.text: true
cast ( substring ( ddtext, 1, 60 ) as ehfnd_cmplnc_prps_sts_name preserving type ) as CmplncPrpsActivationStatusName,
//cast ( cast ( substring ( ddtext, 1, 20 ) as abap.char( 20 ) ) as ehfnd_cmplnc_prps_sts_name) as CmplncPrpsActivationStatusName,
/* Associations */
_CmplncPrpsActvtn,
_Language
}
where
domname = 'EHFND_CMPLNC_PRPS_ACTVTN_STS'
and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_CMPLNCPRPSACTVTN",
"I_LANGUAGE"
],
"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