R_WorkAssignmentCompanyCodeVH

DDL: R_WORKASSIGNMENTCOMPANYCODEVH Type: view_entity COMPOSITE

Select: Company Code

R_WorkAssignmentCompanyCodeVH is a Composite CDS View that provides data about "Select: Company Code" in SAP S/4HANA. It reads from 1 data source (I_CompanyCode) and exposes 3 fields with key field CompanyCode.

Data Sources (1)

SourceAliasJoin Type
I_CompanyCode I_CompanyCode from

Annotations (13)

NameValueLevelField
ObjectModel.dataCategory #VALUE_HELP view
AccessControl.authorizationCheck #MANDATORY view
Analytics.technicalName RWORKASSIGNMENTCOMPANYCODEVH view
Metadata.ignorePropagatedAnnotations true view
Consumption.ranked true view
ObjectModel.representativeKey CompanyCode view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
Search.searchable true view
EndUserText.label Select: Company Code view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Company Code
CompanyCodeName CompanyCodeName Company Name
Country Country Venue: Ctry/Reg

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 R_WorkAssignmentCompanyCodeVH.
-- 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 R_WorkAssignmentCompanyCodeVH AS
SELECT
  CompanyCode,
  CompanyCodeName,
  Country
FROM I_CompanyCode
;