I_Purctrnotes

DDL: I_PURCTRNOTES SQL: IPURCTRNOTES Type: view BASIC

Purchase Contract Header Notes

I_Purctrnotes is a Basic CDS View that provides data about "Purchase Contract Header Notes" in SAP S/4HANA. It reads from 1 data source (I_Text_Templates) and exposes 7 fields with key fields ArchitecturalObjectNumber, TechnicalObjectType, DocumentText, Language, PurchaseContract. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_Text_Templates I_Text_Templates from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_PurchaseContract _PurchaseContract $projection.PurchaseContract = _PurchaseContract.PurchaseContract

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IPURCTRNOTES view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Purchase Contract Header Notes view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ArchitecturalObjectNumber ArchitecturalObjectNumber
KEY TechnicalObjectType TechnicalObjectType
KEY DocumentText DocumentText
KEY Language Language
KEY PurchaseContract
NoteDescription NoteDescription
_PurchaseContract _PurchaseContract
@AbapCatalog.sqlViewName: 'IPURCTRNOTES'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label:  'Purchase Contract Header Notes'
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #CUSTOMIZING

define view I_Purctrnotes
  as select from I_Text_Templates
  association [1..1] to I_PurchaseContract as _PurchaseContract on $projection.PurchaseContract = _PurchaseContract.PurchaseContract
{
     
  key  ArchitecturalObjectNumber,

  key  TechnicalObjectType,

  key  DocumentText,

  key  Language,
  
  key cast( ArchitecturalObjectNumber as ebeln) as PurchaseContract,
  
//  ObjectInternalID,


       //cast('' as mm_oa_text_description) as NoteDescription,

       NoteDescription,

      @ObjectModel.association.type:  [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT]
       _PurchaseContract
  
}
where
  TechnicalObjectType = 'EKKO'                                                 
  
  
  
  
  
  
  
  
  
  
  
  
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_TEXT_TEMPLATES"
],
"ASSOCIATED":
[
"I_PURCHASECONTRACT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/