I_VMSVehicleOrgToRole

DDL: I_VMSVEHICLEORGTOROLE Type: view_entity BASIC

Assign Organization Data to VMS Roles

I_VMSVehicleOrgToRole is a Basic CDS View that provides data about "Assign Organization Data to VMS Roles" in SAP S/4HANA. It reads from 1 data source (cvlc23) and exposes 5 fields with key field VMSUserRole.

Data Sources (1)

SourceAliasJoin Type
cvlc23 cvlc23 from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Assign Organization Data to VMS Roles view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY VMSUserRole role VMS Roles
Plant werks Receiving Plant
SalesOrganization vkorg SD Sales Org.
DistributionChannel vtweg RefDistCh-Cust/Mat.
Division spart Source supplier

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 I_VMSVehicleOrgToRole.
-- 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 I_VMSVehicleOrgToRole AS
SELECT
  role AS VMSUserRole,
  werks AS Plant,
  vkorg AS SalesOrganization,
  vtweg AS DistributionChannel,
  spart AS Division
FROM cvlc23
;