P_QltyBPWithUser

DDL: P_QLTYBPWITHUSER SQL: PQLTYBPWITHUSER Type: view BASIC

P_QltyBPWithUser is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (P_QltyBPEmployee, I_User) and exposes 23 fields with key field BusinessPartner.

Data Sources (2)

SourceAliasJoin Type
P_QltyBPEmployee Partner from
I_User User inner

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PQLTYBPWITHUSER view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.private true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey BusinessPartner view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #C view

Fields (23)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner P_QltyBPEmployee BusinessPartner Issuing Authority
UserID I_User UserID User Name
BusinessPartnerCategory P_QltyBPEmployee BusinessPartnerCategory Partner Cat.
BusinessPartnerRole P_QltyBPEmployee BusinessPartnerRole BP Role
BusinessPartnerUUID P_QltyBPEmployee BusinessPartnerUUID UUID
FirstName P_QltyBPEmployee FirstName First Name
LastName P_QltyBPEmployee LastName Last Name
FullName P_QltyBPEmployee BusinessPartnerFullName Broker Name
BusinessPartnerIsBlocked P_QltyBPEmployee BusinessPartnerIsBlocked Central Block
IsMarkedForArchiving P_QltyBPEmployee IsMarkedForArchiving Archiving Flag
IsBusinessPurposeCompleted P_QltyBPEmployee IsBusinessPurposeCompleted Purpose Completed
AuthorizationGroup P_QltyBPEmployee AuthorizationGroup AuthorizGroup
DataControllerSet P_QltyBPEmployee DataControllerSet Data Ctrlr. Set
DataController1 P_QltyBPEmployee DataController1 Data Controller
DataController2 P_QltyBPEmployee DataController2 Data Controller
DataController3 P_QltyBPEmployee DataController3 Data Controller
DataController4 P_QltyBPEmployee DataController4 Data Controller
DataController5 P_QltyBPEmployee DataController5 Data Controller
DataController6 P_QltyBPEmployee DataController6 Data Controller
DataController7 P_QltyBPEmployee DataController7 Data Controller
DataController8 P_QltyBPEmployee DataController8 Data Controller
DataController9 P_QltyBPEmployee DataController9 Data Controller
DataController10 P_QltyBPEmployee DataController10 Data Controller

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_QltyBPWithUser.
-- 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: PQLTYBPWITHUSER

CREATE VIEW P_QltyBPWithUser AS
SELECT
  Partner.BusinessPartner AS BusinessPartner,
  User.UserID AS UserID,
  Partner.BusinessPartnerCategory AS BusinessPartnerCategory,
  Partner.BusinessPartnerRole AS BusinessPartnerRole,
  Partner.BusinessPartnerUUID AS BusinessPartnerUUID,
  Partner.FirstName AS FirstName,
  Partner.LastName AS LastName,
  Partner.BusinessPartnerFullName AS FullName,
  Partner.BusinessPartnerIsBlocked AS BusinessPartnerIsBlocked,
  Partner.IsMarkedForArchiving AS IsMarkedForArchiving,
  Partner.IsBusinessPurposeCompleted AS IsBusinessPurposeCompleted,
  Partner.AuthorizationGroup AS AuthorizationGroup,
  Partner.DataControllerSet AS DataControllerSet,
  Partner.DataController1 AS DataController1,
  Partner.DataController2 AS DataController2,
  Partner.DataController3 AS DataController3,
  Partner.DataController4 AS DataController4,
  Partner.DataController5 AS DataController5,
  Partner.DataController6 AS DataController6,
  Partner.DataController7 AS DataController7,
  Partner.DataController8 AS DataController8,
  Partner.DataController9 AS DataController9,
  Partner.DataController10 AS DataController10
FROM P_QltyBPEmployee AS Partner
INNER JOIN I_User AS User ON /* join condition not captured in parsed metadata */
;