P_Usercontactcard_Fs

DDL: P_USERCONTACTCARD_FS SQL: PcontactcardFs Type: view BASIC

P_Usercontactcard_Fs is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (adrp, usr21) and exposes 3 fields.

Data Sources (2)

SourceAliasJoin Type
adrp _Person left_outer
usr21 _User from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName PcontactcardFs view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.private true view

Fields (3)

KeyFieldSource TableSource FieldDescription
UserID usr21 bname User name
Person usr21 persnumber Person Number
PersonFullName adrp name_text Full 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 P_Usercontactcard_Fs.
-- 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: PcontactcardFs

CREATE VIEW P_Usercontactcard_Fs AS
SELECT
  _User.bname AS UserID,
  _User.persnumber AS Person,
  _Person.name_text AS PersonFullName
FROM usr21 AS _User
LEFT OUTER JOIN adrp AS _Person ON /* join condition not captured in parsed metadata */
;