C_ContractFactSheetItemText

DDL: C_CONTRACTFACTSHEETITEMTEXT SQL: CCTRFSITMTEXT Type: view CONSUMPTION

Contract FactSheet Item Notes - Text

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

Data Sources (1)

SourceAliasJoin Type
I_Purctritnotes Document from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CCTRFSITMTEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Contract FactSheet Item 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 (9)

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

define view C_ContractFactSheetItemText
  as select from I_Purctritnotes as Document

  //  association [1..1] to C_ContractItemFs as _ContractItemFs on  $projection.PurchaseContract     = _ContractItemFs.PurchaseContract

  //                                                            and $projection.PurchaseContractItem = _ContractItemFs.PurchaseContractItem


{
  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.PurchaseContractItem,
            Document.NoteDescription
            //_ContractItemFs

}