C_MM_TaxCodeValueHelp

DDL: C_MM_TAXCODEVALUEHELP SQL: CMMTAXCODEVH Type: view CONSUMPTION Package: ODATA_MM_PUR_POMASS_UPDATE

Tax Code Value Help

C_MM_TaxCodeValueHelp is a Consumption CDS View that provides data about "Tax Code Value Help" in SAP S/4HANA. It reads from 1 data source (I_TaxCode) and exposes 3 fields with key fields TaxCode, TaxCalculationProcedure. It has 1 association to related views. It is exposed through 8 OData services (ASQL_F2420, ASQL_F2421, ASQL_F2593, ...). Part of development package ODATA_MM_PUR_POMASS_UPDATE.

Data Sources (1)

SourceAliasJoin Type
I_TaxCode I_TaxCode from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_TaxCalculationProcedure _TaxCalculationProcedure $projection.TaxCalculationProcedure = _TaxCalculationProcedure.TaxCalculationProcedure

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CMMTAXCODEVH view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
AbapCatalog.compiler.compareFilter true view
ObjectModel.representativeKey TaxCode view
EndUserText.label Tax Code Value Help view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #VALUE_HELP view
Consumption.ranked true view
ClientHandling.algorithm #SESSION_VARIABLE view

OData Services (8)

ServiceBindingVersionContractRelease
ASQL_F2420 ASQL_F2420 C2 NOT_RELEASED
ASQL_F2421 ASQL_F2421 C2 NOT_RELEASED
ASQL_F2593 ASQL_F2593 C2 NOT_RELEASED
ASQL_F2667 ASQL_F2667 C2 NOT_RELEASED
ASQL_F2668 ASQL_F2668 C2 NOT_RELEASED
ASQL_F2669 ASQL_F2669 C2 NOT_RELEASED
ASQL_F2988 ASQL_F2988 C2 NOT_RELEASED
ASQL_F3792 ASQL_F3792 C2 NOT_RELEASED

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY TaxCode TaxCode Tax Code
KEY TaxCalculationProcedure TaxCalculationProcedure Tax Procedure
TaxCodeName

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_MM_TaxCodeValueHelp.
-- 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: CMMTAXCODEVH

CREATE VIEW C_MM_TaxCodeValueHelp AS
SELECT
  TaxCode,
  TaxCalculationProcedure,
  _Text[1: Language = $session.system_language].TaxCodeName AS TaxCodeName
FROM I_TaxCode
LEFT OUTER JOIN I_TaxCalculationProcedure AS _TaxCalculationProcedure ON TaxCalculationProcedure = _TaxCalculationProcedure.TaxCalculationProcedure  -- association [0..1]
;