P_SBPM_EXT_BLD_USER

DDL: P_SBPM_EXT_BLD_USER Type: view_entity BASIC

SAP Build Extensibility: User

P_SBPM_EXT_BLD_USER is a Basic CDS View that provides data about "SAP Build Extensibility: User" in SAP S/4HANA. It reads from 1 data source (usr21) and exposes 2 fields with key field UserId.

Data Sources (1)

SourceAliasJoin Type
usr21 User from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label SAP Build Extensibility: User view
ObjectModel.dataCategory #TEXT view
ObjectModel.resultSet.sizeCategory #XXS view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
VDM.viewType #BASIC view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY UserId
FullName

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_SBPM_EXT_BLD_USER.
-- 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_SBPM_EXT_BLD_USER AS
SELECT
  cast( User.bname as xubname preserving type ) AS UserId,
  coalesce(Addr.name_text, User.techdesc ) AS FullName
FROM usr21 AS User
;