P_BillOfOperationRecentHeader
Bill of Operation Recent Header
P_BillOfOperationRecentHeader is a Composite CDS View that provides data about "Bill of Operation Recent Header" in SAP S/4HANA. It reads from 1 data source (I_BillOfOperationsChangeState) and exposes 4 fields with key fields BillOfOperationsType, BillOfOperationsGroup, BillOfOperationsVariant. Part of development package ODATA_PP_WORKCENTER_API.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_BillOfOperationsChangeState | I_BillOfOperationsChangeState | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Bill of Operation Recent Header | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.private | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BillOfOperationsType | BillOfOperationsType | ||
| KEY | BillOfOperationsGroup | BillOfOperationsGroup | ||
| KEY | BillOfOperationsVariant | BillOfOperationsVariant | ||
| ValidityStartDate |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Bill of Operation Recent Header'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #B,
sizeCategory: #L,
dataClass: #MASTER
}
@VDM.viewType:#COMPOSITE
@VDM.private:true
define view entity P_BillOfOperationRecentHeader
as select from I_BillOfOperationsChangeState
{
key BillOfOperationsType,
key BillOfOperationsGroup,
key BillOfOperationsVariant,
min( ValidityStartDate ) as ValidityStartDate
}
where
ValidityEndDate >= $session.system_date
and(
BillOfOperationsType = '2'
or BillOfOperationsType = 'N'
)
group by
BillOfOperationsType,
BillOfOperationsGroup,
BillOfOperationsVariant;
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