C_BillingDocumentUserVH

DDL: C_BILLINGDOCUMENTUSERVH Type: view CONSUMPTION

Billing Document User Value Help

C_BillingDocumentUserVH is a Consumption CDS View that provides data about "Billing Document User Value Help" in SAP S/4HANA. It reads from 1 data source (I_User) and exposes 3 fields with key field UserID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_User User from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BillingDocumentBasic _BillingDocumentBasic $projection.UserID = _BillingDocumentBasic.CreatedByUser

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CBILLDOCUSERVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
EndUserText.label Billing Document User Value Help view
Search.searchable true view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey UserID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY UserID I_User UserID User Name
UserDescription I_User UserDescription Name
_BillingDocumentBasic _BillingDocumentBasic

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_BillingDocumentUserVH.
-- 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 C_BillingDocumentUserVH AS
SELECT
  User.UserID AS UserID,
  User.UserDescription AS UserDescription
FROM I_User AS User
LEFT OUTER JOIN I_BillingDocumentBasic AS _BillingDocumentBasic ON UserID = _BillingDocumentBasic.CreatedByUser  -- association [0..*]
;