I_ProcessorGeneralData

DDL: I_PROCESSORGENERALDATA Type: view_entity BASIC

Processor General Data

I_ProcessorGeneralData is a Basic CDS View that provides data about "Processor General Data" in SAP S/4HANA. It reads from 1 data source (/scmb/prr) and exposes 7 fields with key field BusinessPartnerUUID.

Data Sources (1)

SourceAliasJoin Type
/scmb/prr /scmb/prr from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Processor General Data view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartnerUUID prr_guid BP GUID
BusinessPartner prr_id Processor
LocationAdditionalUUID sc_unit_guid SC Unit GUID
ValidFrom valid_from Validity Start Time
ValidTo valid_to Validity End Time
FactoryCalendar calendar Workdays only
ActiveCapacityVariant active_version Capacity Variant

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 I_ProcessorGeneralData.
-- 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.

CREATE VIEW I_ProcessorGeneralData AS
SELECT
  prr_guid AS BusinessPartnerUUID,
  prr_id AS BusinessPartner,
  sc_unit_guid AS LocationAdditionalUUID,
  valid_from AS ValidFrom,
  valid_to AS ValidTo,
  calendar AS FactoryCalendar,
  active_version AS ActiveCapacityVariant
FROM /scmb/prr
;