I_PMContactCardUser

DDL: I_PMCONTACTCARDUSER SQL: IPMCONTACTCARD Type: view BASIC

Contact Card User

I_PMContactCardUser is a Basic CDS View that provides data about "Contact Card User" in SAP S/4HANA. It reads from 2 data sources (I_BusinessPartner, usr21) and exposes 34 fields. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
I_BusinessPartner _BusinessPartner inner
usr21 _User from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_PMContactCardEmployee _PMContactCardEmployee $projection.UserID = _PMContactCardEmployee.UserID

Annotations (11)

NameValueLevelField
EndUserText.label Contact Card User view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IPMCONTACTCARD view
AccessControl.authorizationCheck #CHECK view
ObjectModel.representativeKey UserID view
AccessControl.personalData.blocking #REQUIRED view
Search.searchable true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view

Fields (34)

KeyFieldSource TableSource FieldDescription
bnameasUserID
name_firstasFirstName
LastName _UserInfo name_last Last Name
FullName _UserInfo name_text Full Name
EmailAddress _UserEmail smtp_addr E-Mail Address
OrganizationalUnit _UserInfoAddress department Department
FunctionalTitleName _UserInfoAddress function Unit Func.
Company _UserAddress name1 PA text
InternationalPhoneNumber _UserTelephone TELNR_LONG Telephone no.
InternationalMobilePhoneNumber _UserMobile TELNR_LONG Telephone no.
FormOfAddress _UserInfo title_aca1 Academic Title
StreetName _UserAddress street Street Code
HouseNumber _UserAddress house_num1 House Number
Country _UserAddress country Venue: Ctry/Reg
PostalCode _UserAddress post_code1 Postal Code
CityName _UserAddress city1 City
Building _UserAddress building Building code
Floor _UserAddress floor Floor
RoomNumber _UserAddress roomnumber Room Number
Region _UserAddress region Venue Region
AuthorizationGroup I_BusinessPartner AuthorizationGroup AuthorizGroup
IsBusinessPurposeCompleted I_BusinessPartner IsBusinessPurposeCompleted Purpose Completed
DataControllerSet I_BusinessPartner DataControllerSet Data Ctrlr. Set
DataController1 I_BusinessPartner DataController1 Data Controller
DataController2 I_BusinessPartner DataController2 Data Controller
DataController3 I_BusinessPartner DataController3 Data Controller
DataController4 I_BusinessPartner DataController4 Data Controller
DataController5 I_BusinessPartner DataController5 Data Controller
DataController6 I_BusinessPartner DataController6 Data Controller
DataController7 I_BusinessPartner DataController7 Data Controller
DataController8 I_BusinessPartner DataController8 Data Controller
DataController9 I_BusinessPartner DataController9 Data Controller
DataController10 I_BusinessPartner DataController10 Data Controller
_PMContactCardEmployee _PMContactCardEmployee

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 I_PMContactCardUser.
-- 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: IPMCONTACTCARD

CREATE VIEW I_PMContactCardUser AS
SELECT
  _UserInfo.name_last AS LastName,
  _UserInfo.name_text AS FullName,
  _UserEmail.smtp_addr AS EmailAddress,
  _UserInfoAddress.department AS OrganizationalUnit,
  _UserInfoAddress.function AS FunctionalTitleName,
  _UserAddress.name1 AS Company,
  _UserTelephone.TELNR_LONG AS InternationalPhoneNumber,
  _UserMobile.TELNR_LONG AS InternationalMobilePhoneNumber,
  _UserInfo.title_aca1 AS FormOfAddress,
  _UserAddress.street AS StreetName,
  _UserAddress.house_num1 AS HouseNumber,
  _UserAddress.country AS Country,
  _UserAddress.post_code1 AS PostalCode,
  _UserAddress.city1 AS CityName,
  _UserAddress.building AS Building,
  _UserAddress.floor AS Floor,
  _UserAddress.roomnumber AS RoomNumber,
  _UserAddress.region AS Region,
  _BusinessPartner.AuthorizationGroup AS AuthorizationGroup,
  _BusinessPartner.IsBusinessPurposeCompleted AS IsBusinessPurposeCompleted,
  _BusinessPartner.DataControllerSet AS DataControllerSet,
  _BusinessPartner.DataController1 AS DataController1,
  _BusinessPartner.DataController2 AS DataController2,
  _BusinessPartner.DataController3 AS DataController3,
  _BusinessPartner.DataController4 AS DataController4,
  _BusinessPartner.DataController5 AS DataController5,
  _BusinessPartner.DataController6 AS DataController6,
  _BusinessPartner.DataController7 AS DataController7,
  _BusinessPartner.DataController8 AS DataController8,
  _BusinessPartner.DataController9 AS DataController9,
  _BusinessPartner.DataController10 AS DataController10
FROM usr21 AS _User
INNER JOIN I_BusinessPartner AS _BusinessPartner ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_PMContactCardEmployee AS _PMContactCardEmployee ON UserID = _PMContactCardEmployee.UserID  -- association [0..1]
;