C_MstrProjSuplrCntctCard

DDL: C_MSTRPROJSUPLRCNTCTCARD SQL: CMPSUPLRCNTCTCRD Type: view CONSUMPTION Package: VDM_CPM_WS

Master Project Supplier Contact Card

C_MstrProjSuplrCntctCard is a Consumption CDS View (Dimension) that provides data about "Master Project Supplier Contact Card" in SAP S/4HANA. It reads from 1 data source (I_Supplier) and exposes 11 fields with key field Supplier. It has 1 association to related views. Part of development package VDM_CPM_WS.

Data Sources (1)

SourceAliasJoin Type
I_Supplier Supplier from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_Address _StandardAddress $projection.AddressID = _StandardAddress.AddressID

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CMPSUPLRCNTCTCRD view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Master Project Supplier Contact Card view
VDM.viewType #CONSUMPTION view
AccessControl.personalData.blocking #REQUIRED view
AccessControl.authorizationCheck #CHECK view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
ObjectModel.representativeKey Supplier view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
Metadata.allowExtensions true view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY Supplier I_Supplier Supplier Supplier
SupplierFullName I_Supplier SupplierFullName
AddressID I_Supplier AddressID Ship-to address
CityName I_Supplier CityName Name
Country I_Supplier Country Venue: Ctry/Reg
PhoneNumber1 I_Supplier PhoneNumber1 Telephone 1
PhoneNumber2 I_Supplier PhoneNumber2 Telephone 2
AuthorizationGroup I_Supplier AuthorizationGroup AuthorizGroup
SupplierAccountGroup I_Supplier SupplierAccountGroup Account group
Person _StandardAddress Person Person/ Farm/ Field
EmailAddress

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_MstrProjSuplrCntctCard.
-- 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.
-- SQL view name: CMPSUPLRCNTCTCRD

CREATE VIEW C_MstrProjSuplrCntctCard AS
SELECT
  Supplier.Supplier AS Supplier,
  Supplier.SupplierFullName AS SupplierFullName,
  Supplier.AddressID AS AddressID,
  Supplier.CityName AS CityName,
  Supplier.Country AS Country,
  Supplier.PhoneNumber1 AS PhoneNumber1,
  Supplier.PhoneNumber2 AS PhoneNumber2,
  Supplier.AuthorizationGroup AS AuthorizationGroup,
  Supplier.SupplierAccountGroup AS SupplierAccountGroup,
  _StandardAddress.Person AS Person,
  _StandardAddress._DefaultEmailAddress.EmailAddress AS EmailAddress
FROM I_Supplier AS Supplier
LEFT OUTER JOIN I_Address AS _StandardAddress ON AddressID = _StandardAddress.AddressID  -- association [1..1]
;