C_ContractFactSheetHeaderText

DDL: C_CONTRACTFACTSHEETHEADERTEXT SQL: CCTRFSHDRTEXT Type: view CONSUMPTION

Contract FactSheet Header Notes - Text

C_ContractFactSheetHeaderText is a Consumption CDS View that provides data about "Contract FactSheet Header Notes - Text" in SAP S/4HANA. It reads from 1 data source (I_Purctrnotes) and exposes 8 fields with key fields Language, DocumentText, TechnicalObjectType, ArchObjectNumber, DraftUUID.

Data Sources (1)

SourceAliasJoin Type
I_Purctrnotes Document from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CCTRFSHDRTEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Contract FactSheet Header Notes - Text view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY Language I_Purctrnotes Language
KEY DocumentText I_Purctrnotes DocumentText
KEY TechnicalObjectType I_Purctrnotes TechnicalObjectType
KEY ArchObjectNumber I_Purctrnotes ArchitecturalObjectNumber
KEY DraftUUID
KEY IsActiveEntity
PurchaseContract I_Purctrnotes PurchaseContract
NoteDescription I_Purctrnotes NoteDescription
@AbapCatalog.sqlViewName: 'CCTRFSHDRTEXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@VDM.viewType: #CONSUMPTION
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Contract FactSheet Header Notes - Text'
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.dataCategory: #TEXT
@ClientHandling.algorithm: #SESSION_VARIABLE

define view C_ContractFactSheetHeaderText
  as select from I_Purctrnotes as Document

  //  association [1..1] to C_ContractFs as _ContractFs on $projection.PurchaseContract = _ContractFs.PurchaseContract


{
  key       Document.Language,
  key       Document.DocumentText,
  key       Document.TechnicalObjectType,
  key       Document.ArchitecturalObjectNumber                               as ArchObjectNumber,
  key       cast(hextobin('00000000000000000000000000000000') as sysuuid_x ) as DraftUUID,
  key       cast ( 'X'  as boolean )                                         as IsActiveEntity,
            Document.PurchaseContract,
            Document.NoteDescription
            //_ContractFs

}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PURCTRNOTES"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/