C_ADM_BUSINESS_USER

DDL: C_ADM_BUSINESS_USER SQL: CADMBUSIUSER Type: view CONSUMPTION

Workflow Administration User

C_ADM_BUSINESS_USER is a Consumption CDS View that provides data about "Workflow Administration User" in SAP S/4HANA. It reads from 1 data source (I_BusinessUserBasic) and exposes 5 fields with key fields UserID, BusinessPartner.

Data Sources (1)

SourceAliasJoin Type
I_BusinessUserBasic User from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName CADMBUSIUSER view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #CONSUMPTION view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Workflow Administration User view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY UserID UserID User Name
KEY BusinessPartner BusinessPartner Issuing Authority
PersonFullName PersonFullName Full Name
FirstName FirstName First Name
LastName LastName Last 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 C_ADM_BUSINESS_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.
-- SQL view name: CADMBUSIUSER

CREATE VIEW C_ADM_BUSINESS_USER AS
SELECT
  UserID,
  BusinessPartner,
  PersonFullName,
  FirstName,
  LastName
FROM I_BusinessUserBasic AS User
;