C_SourcingProjectContactTP

DDL: C_SOURCINGPROJECTCONTACTTP Type: view_entity CONSUMPTION

Contact for Sourcing Project - TP

C_SourcingProjectContactTP is a Consumption CDS View that provides data about "Contact for Sourcing Project - TP" in SAP S/4HANA. It reads from 1 data source (R_SourcingProjectContactTP) and exposes 18 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] I_EmplContactCard _ContactCard $projection.BusinessPartner = _ContactCard.Person

Annotations (15)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey SourcingProjectContactUUID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
Metadata.allowExtensions true 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 (18)

KeyFieldSource TableSource FieldDescription
KEY SourcingProjectContactUUID SourcingProjectContactUUID Contact UUID
SourcingProjectUUID SourcingProjectUUID Sourcing Project UUID
SourcingProjectType _SourcingProject SourcingProjectType Sourcing Project Type
BusinessPartner Issuing Authority
PersonFullName _BusinessPartner PersonFullName Full Name
SourcingProjectContactCategory SourcingProjectContactCategory Contact Category
SourcingProjectContactCatNamelocalized
SrcgProjCntctIsVisibleToSuplr SrcgProjCntctIsVisibleToSuplr Visible to Supplier
SrcgProjContactIsContributor SrcgProjContactIsContributor Is Contributor
BusinessPartnerUUID BusinessPartnerUUID UUID
IsBusinessPurposeCompleted IsBusinessPurposeCompleted Purpose Completed
AuthorizationGroup AuthorizationGroup AuthorizGroup
SourcingOrigin SourcingOrigin Sourcing Origin
SrcgProjSourcingOriginTextlocalized
SourcingScenario SourcingScenario Integration Scenario
SrcgProjSourcingScenarioTextlocalized
_ContactCard _ContactCard
_BusinessPartner _BusinessPartner

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 C_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 C_SourcingProjectContactTP AS
SELECT
  SourcingProjectContactUUID,
  SourcingProjectUUID,
  _SourcingProject.SourcingProjectType AS SourcingProjectType,
  cast (BusinessPartner as mm_pur_srcgproj_contact_id preserving type ) AS BusinessPartner,
  _BusinessPartner.PersonFullName AS PersonFullName,
  SourcingProjectContactCategory,
  _ContactCatText.SourcingProjectContactCatName : localized AS SourcingProjectContactCatNamelocalized,
  SrcgProjCntctIsVisibleToSuplr,
  SrcgProjContactIsContributor,
  BusinessPartnerUUID,
  IsBusinessPurposeCompleted,
  AuthorizationGroup,
  SourcingOrigin,
  _SrcgProjSourcingOriginText.SrcgProjSourcingOriginText : localized AS SrcgProjSourcingOriginTextlocalized,
  SourcingScenario,
  _SrcgProjSourcingScenarioText.SrcgProjSourcingScenarioText : localized AS SrcgProjSourcingScenarioTextlocalized
FROM R_SourcingProjectContactTP
LEFT OUTER JOIN I_EmplContactCard AS _ContactCard ON BusinessPartner = _ContactCard.Person  -- association [0..1]
;