R_RblsMgmtUserContactCard

DDL: R_RBLSMGMTUSERCONTACTCARD Type: view COMPOSITE

User Contact Card

R_RblsMgmtUserContactCard is a Composite CDS View that provides data about "User Contact Card" in SAP S/4HANA. It reads from 1 data source (I_UserContactCard) and exposes 10 fields with key field ContactCardID.

Data Sources (1)

SourceAliasJoin Type
I_UserContactCard I_UserContactCard from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName RRBLSMUSRCNTCRD view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label User Contact Card view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.representativeKey ContactCardID view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY ContactCardID ContactCardID User name
PhoneNumber PhoneNumber Telephone no.
MobilePhoneNumber MobilePhoneNumber Telephone
FaxNumber FaxNumber Fax Number
EmailAddress EmailAddress E-Mail Address
Department Department Department
FunctionalTitleName FunctionalTitleName Unit Func.
FirstName FirstName First Name
LastName LastName Last Name
UserDescription FullName Name

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_RblsMgmtUserContactCard.
-- 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_RblsMgmtUserContactCard AS
SELECT
  ContactCardID,
  PhoneNumber,
  MobilePhoneNumber,
  FaxNumber,
  EmailAddress,
  Department,
  FunctionalTitleName,
  FirstName,
  LastName,
  FullName AS UserDescription
FROM I_UserContactCard
;