A_SourcingProjectContact

DDL: A_SOURCINGPROJECTCONTACT Type: view_entity CONSUMPTION

Contact

A_SourcingProjectContact is a Consumption CDS View that provides data about "Contact" in SAP S/4HANA. It reads from 1 data source (R_SourcingProjectContactTP) and exposes 12 fields with key field SourcingProjectContactUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
R_SourcingProjectContactTP R_SourcingProjectContactTP projection

Associations (1)

CardinalityTargetAliasCondition
[0..1] A_SrcgProjContactAddress _SrcgProjContactAddress $projection.BusinessPartnerUUID = _SrcgProjContactAddress.BusinessPartnerUUID

Annotations (17)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey SourcingProjectContactUUID 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 Contact view
OData.entityType.name SourcingProjectContact_Type view
AbapCatalog.extensibility.extensible true view
AbapCatalog.extensibility.allowNewDatasources false view
AbapCatalog.extensibility.elementSuffix SPC view
AbapCatalog.extensibility.quota.maximumFields 204 view
AbapCatalog.extensibility.quota.maximumBytes 4080 view
AbapCatalog.extensibility.allowNewCompositions true view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY SourcingProjectContactUUID SourcingProjectContactUUID Contact UUID
SourcingProjectUUID SourcingProjectUUID Sourcing Project UUID
SourcingProjectContactCategory SourcingProjectContactCategory Contact Category
BusinessPartner BusinessPartner Issuing Authority
BusinessPartnerUUID BusinessPartnerUUID UUID
SrcgProjCntctIsVisibleToSuplr SrcgProjCntctIsVisibleToSuplr Visible to Supplier
SourcingOrigin SourcingOrigin Sourcing Origin
SourcingScenario SourcingScenario Integration Scenario
AuthorizationGroup AuthorizationGroup AuthorizGroup
IsBusinessPurposeCompleted IsBusinessPurposeCompleted Purpose Completed
_BusinessPartner _BusinessPartner
_SrcgProjContactAddress _SrcgProjContactAddress

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_SourcingProjectContact.
-- 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_SourcingProjectContact AS
SELECT
  SourcingProjectContactUUID,
  SourcingProjectUUID,
  SourcingProjectContactCategory,
  BusinessPartner,
  BusinessPartnerUUID,
  SrcgProjCntctIsVisibleToSuplr,
  SourcingOrigin,
  SourcingScenario,
  AuthorizationGroup,
  IsBusinessPurposeCompleted
FROM R_SourcingProjectContactTP
LEFT OUTER JOIN A_SrcgProjContactAddress AS _SrcgProjContactAddress ON BusinessPartnerUUID = _SrcgProjContactAddress.BusinessPartnerUUID  -- association [0..1]
;