P_JITCallComponentMatlDocRef
JIT Component Material Doc Ref
P_JITCallComponentMatlDocRef is a Transactional CDS View that provides data about "JIT Component Material Doc Ref" in SAP S/4HANA. It reads from 1 data source (njit_call_d_dref) and exposes 8 fields with key field JITDocRefUUID. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| njit_call_d_dref | njit_call_d_dref | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_MaterialDocumentHeader_2 | _MaterialDocumentHeader | $projection.MaterialDocument = _MaterialDocumentHeader.MaterialDocument and $projection.MaterialDocumentYear = _MaterialDocumentHeader.MaterialDocumentYear |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | JIT Component Material Doc Ref | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| VDM.private | true | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | JITDocRefUUID | db_key | ||
| JITHeaderUUID | root_key | |||
| JITCallComponentUUID | parent_key | |||
| MaterialDocument | ||||
| MaterialDocumentYear | ||||
| InternalJITCallNumber | int_call_num | |||
| CompGrpNumber | comp_grp_num | |||
| _MaterialDocumentHeader | _MaterialDocumentHeader |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'JIT Component Material Doc Ref'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType: {
dataClass: #TRANSACTIONAL,
serviceQuality: #C,
sizeCategory: #L
}
@VDM.viewType: #TRANSACTIONAL
@VDM.private: true
define view entity P_JITCallComponentMatlDocRef
as select from njit_call_d_dref
association [0..1] to I_MaterialDocumentHeader_2 as _MaterialDocumentHeader on $projection.MaterialDocument = _MaterialDocumentHeader.MaterialDocument
and $projection.MaterialDocumentYear = _MaterialDocumentHeader.MaterialDocumentYear
{
key db_key as JITDocRefUUID,
root_key as JITHeaderUUID,
parent_key as JITCallComponentUUID,
cast(btd_id as abap.char(10)) as MaterialDocument,
cast(left(cast(lchg_date_time as abap.char( 28 )), 4) as abap.numc( 4 )) as MaterialDocumentYear,
int_call_num as InternalJITCallNumber,
comp_grp_num as CompGrpNumber,
//Associations
_MaterialDocumentHeader
}
where
btd_type_code = 'M'
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