I_AR_DefaultConditionCode

DDL: I_AR_DEFAULTCONDITIONCODE Type: view_entity BASIC Package: GLO_FIN_IS_WHT_AR

Default Condition Code

I_AR_DefaultConditionCode is a Basic CDS View that provides data about "Default Condition Code" in SAP S/4HANA. It reads from 2 data sources (I_AR_NationalTaxCode, I_AR_TaxCode) and exposes 6 fields with key fields CompanyCodeCountry, TransactionTypeDetermination. Part of development package GLO_FIN_IS_WHT_AR.

Data Sources (2)

SourceAliasJoin Type
I_AR_NationalTaxCode _NatTaxCode inner
I_AR_TaxCode _OffTaxCode from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
EndUserText.label Default Condition Code view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY CompanyCodeCountry I_AR_TaxCode CompanyCodeCountry Reporting Ctry/Reg.
KEY TransactionTypeDetermination I_AR_TaxCode TransactionTypeDetermination Transaction Key
AR_OfficialTaxCodeDescription I_AR_NationalTaxCode AR_OfficialTaxCodeDescription Text
AR_OfficialTaxCode I_AR_TaxCode AR_OfficialTaxCode Off. Code
AR_NationalTaxCode I_AR_NationalTaxCode AR_NationalTaxCode Nat. Tax Code
AR_DefaultConditionCode I_AR_NationalTaxCode AR_DefaultConditionCode Def Condition Code

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_AR_DefaultConditionCode.
-- 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_AR_DefaultConditionCode AS
SELECT
  _OffTaxCode.CompanyCodeCountry AS CompanyCodeCountry,
  _OffTaxCode.TransactionTypeDetermination AS TransactionTypeDetermination,
  _NatTaxCode.AR_OfficialTaxCodeDescription AS AR_OfficialTaxCodeDescription,
  _OffTaxCode.AR_OfficialTaxCode AS AR_OfficialTaxCode,
  _NatTaxCode.AR_NationalTaxCode AS AR_NationalTaxCode,
  _NatTaxCode.AR_DefaultConditionCode AS AR_DefaultConditionCode
FROM I_AR_TaxCode AS _OffTaxCode
INNER JOIN I_AR_NationalTaxCode AS _NatTaxCode ON /* join condition not captured in parsed metadata */
;