I_WrntyClaimNote
Warranty Claim Notes
I_WrntyClaimNote is a Composite CDS View that provides data about "Warranty Claim Notes" in SAP S/4HANA. It reads from 1 data source (P_WrntyClaimDetail) and exposes 6 fields with key field WrntyClaimHeaderUUID. It has 1 association to related views. It is exposed through 2 OData services (UI_CUSTOMER_WARRANTYCLAIM, UI_MANAGE_WARRANTYCLAIM).
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_WrntyClaimDetail | P_WrntyClaimDetail | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | Sgbt_Nte_Cds_Cont | _Note | $projection.WarrantyNoteObjectIdentifier = _Note.objectid |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IWRNTYCLMNOTE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| EndUserText.label | Warranty Claim Notes | view | |
| VDM.viewType | #COMPOSITE | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | WrntyClaimHeaderUUID | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| AccessControl.authorizationCheck | #CHECK | view |
OData Services (2)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_CUSTOMER_WARRANTYCLAIM | UI_CUSTOMER_WARRANTYCLAIM | V2 | C1 | NOT_RELEASED |
| UI_MANAGE_WARRANTYCLAIM | UI_MANAGE_WARRANTYCLAIM | V2 | C1 | NOT_RELEASED |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | WrntyClaimHeaderUUID | WrntyClaimHeaderUUID | ||
| WarrantyNoteObjectIdentifier | WarrantyNoteObjectIdentifier | |||
| NoteText | _Note | content | ||
| WrntySupplier | WrntySupplier | |||
| _Supplier | _Supplier | |||
| _Note | _Note |
@AbapCatalog.sqlViewName: 'IWRNTYCLMNOTE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@EndUserText.label: 'Warranty Claim Notes'
@VDM:{viewType: #COMPOSITE
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:{
representativeKey: 'WrntyClaimHeaderUUID',
usageType:{
dataClass : #TRANSACTIONAL,
serviceQuality : #C,
sizeCategory : #L
} }
@AccessControl.authorizationCheck: #CHECK
define view I_WrntyClaimNote
as select from P_WrntyClaimDetail
association [0..1] to Sgbt_Nte_Cds_Cont as _Note on $projection.WarrantyNoteObjectIdentifier = _Note.objectid
{
key WrntyClaimHeaderUUID,
WarrantyNoteObjectIdentifier,
_Note.content as NoteText,
WrntySupplier,
// Partner,
_Supplier,
_Note
}
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