P_CndnContrText
P_CndnContrText is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (wcocoh) and exposes 3 fields with key field ConditionContract. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| wcocoh | wcocoh | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_TextObjectPlainLongText | _TextObjectPlainLongText | _TextObjectPlainLongText.TextObjectKey = $projection.guidashex and _TextObjectPlainLongText.TextObjectCategory = 'WCOCOH' |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PWCBCCTXT | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| ClientHandling.type | #INHERITED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| VDM.viewType | #BASIC | view | |
| VDM.private | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ConditionContract | num | ||
| guidashex | ||||
| _TextObjectPlainLongText | _TextObjectPlainLongText |
@AbapCatalog: {
sqlViewName: 'PWCBCCTXT',
preserveKey: true,
compiler: {
compareFilter: true
}
}
@AccessControl: {
authorizationCheck: #PRIVILEGED_ONLY,
privilegedAssociations: ['_TextObjectPlainLongText']
}
@ClientHandling: {
type: #INHERITED,
algorithm: #SESSION_VARIABLE
}
@ObjectModel.usageType: {
serviceQuality: #A,
sizeCategory: #L,
dataClass: #MIXED
}
@VDM: {
viewType: #BASIC,
private: true
}
define view P_CndnContrText
as select from wcocoh
association [0..*] to I_TextObjectPlainLongText as _TextObjectPlainLongText on _TextObjectPlainLongText.TextObjectKey = $projection.guidashex
and _TextObjectPlainLongText.TextObjectCategory = 'WCOCOH'
{
key num as ConditionContract,
bintohex( guid ) as guidashex,
// Associations
_TextObjectPlainLongText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"WCOCOH"
],
"ASSOCIATED":
[
"I_TEXTOBJECTPLAINLONGTEXT"
],
"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