A_SrcgProjAllowedCurrency

DDL: A_SRCGPROJALLOWEDCURRENCY Type: view_entity CONSUMPTION Package: ODATA_MM_PUR_SRCGPROJ_API

Allowed Currency

A_SrcgProjAllowedCurrency is a Consumption CDS View that provides data about "Allowed Currency" in SAP S/4HANA. It reads from 1 data source (R_SrcgProjAllowedCurrencyTP) and exposes 5 fields with key field SrcgProjAllowedCurrencyUUID. It is exposed through 1 OData service (API_SOURCINGPROJECT). Part of development package ODATA_MM_PUR_SRCGPROJ_API.

Data Sources (1)

SourceAliasJoin Type
R_SrcgProjAllowedCurrencyTP R_SrcgProjAllowedCurrencyTP projection

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey SrcgProjAllowedCurrencyUUID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Allowed Currency view
OData.entityType.name SrcgProjAllowedCurrency_Type view

OData Services (1)

ServiceBindingVersionContractRelease
API_SOURCINGPROJECT API_SOURCINGPROJECT V4 C2 Deprecated

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SrcgProjAllowedCurrencyUUID SrcgProjAllowedCurrencyUUID Allowed Currency
SourcingProjectUUID SourcingProjectUUID Sourcing Project UUID
SrcgProjAllowedCurrency SrcgProjAllowedCurrency Allowed Currencies
SourcingOrigin SourcingOrigin Sourcing Origin
SourcingScenario SourcingScenario Integration Scenario

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 A_SrcgProjAllowedCurrency.
-- 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 A_SrcgProjAllowedCurrency AS
SELECT
  SrcgProjAllowedCurrencyUUID,
  SourcingProjectUUID,
  SrcgProjAllowedCurrency,
  SourcingOrigin,
  SourcingScenario
FROM R_SrcgProjAllowedCurrencyTP
;