C_LglTransMainOrgSlsOrgCrteVH

DDL: C_LGLTRANSMAINORGSLSORGCRTEVH SQL: CLTSLSORGCVH Type: view CONSUMPTION

Sales Organization Value Help

C_LglTransMainOrgSlsOrgCrteVH is a Consumption CDS View that provides data about "Sales Organization Value Help" in SAP S/4HANA. It reads from 1 data source (I_SalesOrganization) and exposes 5 fields with key field SalesOrganization. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_SalesOrganization I_SalesOrganization from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_SalesOrganizationText _Text $projection.SalesOrganization = _Text.SalesOrganization
[0..1] C_MM_CompanyCodeValueHelp _CompanyCode $projection.CompanyCode = _CompanyCode.CompanyCode

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CLTSLSORGCVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #NOT_REQUIRED view
Search.searchable true view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey SalesOrganization view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Sales Organization Value Help view

Fields (5)

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

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_LglTransMainOrgSlsOrgCrteVH.
-- 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.
-- SQL view name: CLTSLSORGCVH

CREATE VIEW C_LglTransMainOrgSlsOrgCrteVH AS
SELECT
  cast( SalesOrganization as lcm_entity_id ) AS SalesOrganization,
  SalesOrganizationCurrency,
  CompanyCode
FROM I_SalesOrganization
LEFT OUTER JOIN I_SalesOrganizationText AS _Text ON SalesOrganization = _Text.SalesOrganization  -- association [0..*]
LEFT OUTER JOIN C_MM_CompanyCodeValueHelp AS _CompanyCode ON CompanyCode = _CompanyCode.CompanyCode  -- association [0..1]
;