C_SalesPlanUserVH

DDL: C_SALESPLANUSERVH Type: view CONSUMPTION

Sales Plan User Value Help

C_SalesPlanUserVH is a Consumption CDS View that provides data about "Sales Plan 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 I_User from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_SalesPlan _SalesPlan UserID = _SalesPlan.CreatedByUser or UserID = _SalesPlan.LastChangedByUser

Annotations (15)

NameValueLevelField
EndUserText.label Sales Plan User Value Help view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName CSLSPLANUSERVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
Search.searchable true view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey UserID view
UI.headerInfo.typeName Sales Plan User view
UI.headerInfo.typeNamePlural Sales Plan Users view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY UserID UserID User Name
UserDescription UserDescription Name
_SalesPlan _SalesPlan

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_SalesPlanUserVH.
-- 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_SalesPlanUserVH AS
SELECT
  UserID,
  UserDescription
FROM I_User
LEFT OUTER JOIN I_SalesPlan AS _SalesPlan ON UserID = _SalesPlan.CreatedByUser OR UserID = _SalesPlan.LastChangedByUser  -- association [0..*]
;