P_CndnContrText

DDL: P_CNDNCONTRTEXT Type: view BASIC

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)

SourceAliasJoin Type
wcocoh wcocoh from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_TextObjectPlainLongText _TextObjectPlainLongText _TextObjectPlainLongText.TextObjectKey = $projection.guidashex and _TextObjectPlainLongText.TextObjectCategory = 'WCOCOH'

Annotations (11)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/