I_FldLogsRefPurchasingDoc
FL - Ref Purchasing Doc value help
I_FldLogsRefPurchasingDoc is a Basic CDS View that provides data about "FL - Ref Purchasing Doc value help" in SAP S/4HANA. It reads from 2 data sources (ekko, ekpo) and exposes 5 fields with key fields ReferencePurchasingDocument, PurchasingDocumentItem. Part of development package FLOG_RETURN.
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFLDPURCHASEDOC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| Search.searchable | true | view | |
| EndUserText.label | FL - Ref Purchasing Doc value help | view |
@AbapCatalog.sqlViewName: 'IFLDPURCHASEDOC'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck:#CHECK
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.sizeCategory: #L
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@Search.searchable: true
@EndUserText.label: 'FL - Ref Purchasing Doc value help'
define view I_FldLogsRefPurchasingDoc
as select from ekko as _header
inner join ekpo as _item on _header.ebeln = _item.ebeln
{
@Search.defaultSearchElement: true
key _header.ebeln as ReferencePurchasingDocument,
key _item.ebelp as PurchasingDocumentItem,
@EndUserText.label:'Product'
_item.matnr as Material,
_item.werks as Plant,
_header.iseopblocked as IsEndOfPurposeBlocked
}
where
_header.bstyp = 'F'
// bsart = 'NB'
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