R_SourcingProjectContactTP

DDL: R_SOURCINGPROJECTCONTACTTP Type: view_entity TRANSACTIONAL

Contact for Sourcing Project - TP

R_SourcingProjectContactTP is a Transactional CDS View that provides data about "Contact for Sourcing Project - TP" in SAP S/4HANA. It has 5 associations to related views.

Associations (5)

CardinalityTargetAliasCondition
[0..*] I_SourcingProjectContactCatT _ContactCatText $projection.SourcingProjectContactCategory = _ContactCatText.SourcingProjectContactCategory
[1..1] E_SourcingProjectContact _Extension $projection.SourcingProjectContactUUID = _Extension.SourcingProjectContactUUID
[0..1] I_SrcgProjCntctWorkplaceAddr _WorkplaceAddress $projection.BusinessPartnerUUID = _WorkplaceAddress.BusinessPartnerUUID
[0..*] I_SrcgProjSourcingOriginText _SrcgProjSourcingOriginText $projection.SourcingOrigin = _SrcgProjSourcingOriginText.SourcingOrigin
[0..*] I_SrcgProjSourcingScenarioText _SrcgProjSourcingScenarioText $projection.SourcingScenario = _SrcgProjSourcingScenarioText.SourcingScenario

Annotations (15)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
ObjectModel.representativeKey SourcingProjectContactUUID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
EndUserText.label Contact for Sourcing Project - TP view
AbapCatalog.extensibility.extensible true view
AbapCatalog.extensibility.allowNewDatasources false view
AbapCatalog.extensibility.elementSuffix SPC view
AbapCatalog.extensibility.quota.maximumFields 404 view
AbapCatalog.extensibility.quota.maximumBytes 40400 view
AbapCatalog.extensibility.allowNewCompositions true view

Fields (19)

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
SrcgProjContactIsContributor SrcgProjContactIsContributor Is Contributor
UserID UserID User Name
IsBusinessPurposeCompleted IsBusinessPurposeCompleted Purpose Completed
AuthorizationGroup AuthorizationGroup AuthorizGroup
SourcingOrigin SourcingOrigin Sourcing Origin
SourcingScenario SourcingScenario Integration Scenario
_SourcingProject _SourcingProject
_SourcingProjectContactCat _SourcingProjectContactCat
_BusinessPartner _BusinessPartner
_WorkplaceAddress _WorkplaceAddress
_ContactCatText _ContactCatText
_SrcgProjSourcingOriginText _SrcgProjSourcingOriginText
_SrcgProjSourcingScenarioText _SrcgProjSourcingScenarioText

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 R_SourcingProjectContactTP.
-- 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 R_SourcingProjectContactTP AS
SELECT
  SourcingProjectContactUUID,
  SourcingProjectUUID,
  SourcingProjectContactCategory,
  BusinessPartner,
  BusinessPartnerUUID,
  SrcgProjCntctIsVisibleToSuplr,
  SrcgProjContactIsContributor,
  UserID,
  IsBusinessPurposeCompleted,
  AuthorizationGroup,
  SourcingOrigin,
  SourcingScenario
LEFT OUTER JOIN I_SourcingProjectContactCatT AS _ContactCatText ON SourcingProjectContactCategory = _ContactCatText.SourcingProjectContactCategory  -- association [0..*]
LEFT OUTER JOIN E_SourcingProjectContact AS _Extension ON SourcingProjectContactUUID = _Extension.SourcingProjectContactUUID  -- association [1..1]
LEFT OUTER JOIN I_SrcgProjCntctWorkplaceAddr AS _WorkplaceAddress ON BusinessPartnerUUID = _WorkplaceAddress.BusinessPartnerUUID  -- association [0..1]
LEFT OUTER JOIN I_SrcgProjSourcingOriginText AS _SrcgProjSourcingOriginText ON SourcingOrigin = _SrcgProjSourcingOriginText.SourcingOrigin  -- association [0..*]
LEFT OUTER JOIN I_SrcgProjSourcingScenarioText AS _SrcgProjSourcingScenarioText ON SourcingScenario = _SrcgProjSourcingScenarioText.SourcingScenario  -- association [0..*]
;