C_ContractFactSheetHeaderText
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)
| Source | Alias | Join Type |
|---|---|---|
| I_Purctrnotes | Document | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
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