C_SalesOrganizationValueHelp

DDL: C_SALESORGANIZATIONVALUEHELP Type: view_entity CONSUMPTION

Sales Organization

C_SalesOrganizationValueHelp is a Consumption CDS View that provides data about "Sales Organization" in SAP S/4HANA. It reads from 1 data source (I_SalesOrganization) and exposes 5 fields with key field SalesOrganization.

Data Sources (1)

SourceAliasJoin Type
I_SalesOrganization I_SalesOrganization from

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Sales Organization view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey SalesOrganization view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
VDM.viewType #CONSUMPTION view
Search.searchable true view
Consumption.ranked true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SalesOrganization SalesOrganization Sales Organization
SalesOrganizationCurrency SalesOrganizationCurrency Transaction Currency
CompanyCode CompanyCode Receiver Company Code
_CompanyCode _CompanyCode
_Text _Text

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_SalesOrganizationValueHelp.
-- 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_SalesOrganizationValueHelp AS
SELECT
  SalesOrganization,
  SalesOrganizationCurrency,
  CompanyCode
FROM I_SalesOrganization
;