P_BPUsrEEWASmtpSrch

DDL: P_BPUSREEWASMTPSRCH Type: view_entity BASIC

Workplace Address Smtp Srch (BUM)

P_BPUsrEEWASmtpSrch is a Basic CDS View that provides data about "Workplace Address Smtp Srch (BUM)" in SAP S/4HANA. It reads from 3 data sources (adr6, usr02, usr21) and exposes 6 fields with key field UserID.

Data Sources (3)

SourceAliasJoin Type
adr6 _EMailAddress inner
usr02 usr02 inner
usr21 usr21 from

Annotations (4)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Workplace Address Smtp Srch (BUM) view
VDM.private true view
VDM.viewType #BASIC view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY UserID usr21 bname User name
BusinessPartnerUUID usr21 bpperson BP GUID
EMail adr6 smtp_addr E-Mail Address
EMailMatchCode adr6 smtp_srch E-Mail Address
ValidFrom usr02 gltgv Valid from
ValidTo usr02 gltgb Valid to

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_BPUsrEEWASmtpSrch.
-- 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 P_BPUsrEEWASmtpSrch AS
SELECT
  usr21.bname AS UserID,
  usr21.bpperson AS BusinessPartnerUUID,
  _EMailAddress.smtp_addr AS EMail,
  _EMailAddress.smtp_srch AS EMailMatchCode,
  usr02.gltgv AS ValidFrom,
  usr02.gltgb AS ValidTo
FROM usr21
INNER JOIN adr6 AS _EMailAddress ON /* join condition not captured in parsed metadata */
INNER JOIN usr02 ON /* join condition not captured in parsed metadata */
;