E_BOOCharacteristic

DDL: E_BOOCHARACTERISTIC SQL: EPPBOOCHARC Type: view EXTENSION

Bill Of Op. Characteristic Extension

E_BOOCharacteristic is a Extension CDS View that provides data about "Bill Of Op. Characteristic Extension" in SAP S/4HANA. It reads from 1 data source (plmk) and exposes 5 fields with key fields BillOfOperationsType, BillOfOperationsGroup, BOOOperationInternalID, BOOCharacteristic, BOOCharacteristicVersion.

Data Sources (1)

SourceAliasJoin Type
plmk Persistence from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName EPPBOOCHARC view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
VDM.viewType #EXTENSION view
EndUserText.label Bill Of Op. Characteristic Extension view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY BillOfOperationsType plmk plnty Task List Type
KEY BillOfOperationsGroup plmk plnnr Task List Group
KEY BOOOperationInternalID plmk plnkn Task list node
KEY BOOCharacteristic plmk merknr Characteristic
KEY BOOCharacteristicVersion plmk zaehl Sort pos.

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view E_BOOCharacteristic.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: EPPBOOCHARC

CREATE VIEW E_BOOCharacteristic AS
SELECT
  Persistence.plnty AS BillOfOperationsType,
  Persistence.plnnr AS BillOfOperationsGroup,
  Persistence.plnkn AS BOOOperationInternalID,
  Persistence.merknr AS BOOCharacteristic,
  Persistence.zaehl AS BOOCharacteristicVersion
FROM plmk AS Persistence
;