I_JP_TaxReallocationResult

DDL: I_JP_TAXREALLOCATIONRESULT SQL: IJPTAXALLCRESULT Type: view COMPOSITE

Japan Tax Reallocation Results

I_JP_TaxReallocationResult is a Composite CDS View that provides data about "Japan Tax Reallocation Results" in SAP S/4HANA. It reads from 1 data source (I_JP_TaxReallocationResultBsc) and exposes 25 fields with key field JP_TaxResultUUID. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_JP_TaxReallocationResultBsc I_JP_TaxReallocationResultBsc from

Associations (3)

CardinalityTargetAliasCondition
[1] I_JournalEntry _JournalEntry $projection.CompanyCode = _JournalEntry.CompanyCode and $projection.FiscalYear = _JournalEntry.FiscalYear and $projection.JP_ReallocationJournalEntry = _JournalEntry.AccountingDocument
[1] I_JP_TaxReallocationRoot _TaxReallocation $projection.JP_TaxReallocateUUID = _TaxReallocation.JP_TaxReallocateUUID
[0..1] I_SalesOrganization _SalesOrganization $projection.salesorganization = _SalesOrganization.SalesOrganization

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IJPTAXALLCRESULT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #COMPOSITE view
VDM.private false view
ObjectModel.representativeKey JP_TaxResultUUID view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #M view
EndUserText.label Japan Tax Reallocation Results view

Fields (25)

KeyFieldSource TableSource FieldDescription
KEY JP_TaxResultUUID JP_TaxResultUUID Waste Partner UUID
JP_TaxReallocateUUID JP_TaxReallocateUUID Tx Reallocation UUID
BillingPlan BillingPlan Bill. Plan No.
BillingPlanItem BillingPlanItem Item
JP_TaxReallocationItem JP_TaxReallocationItem Item Number
BillingPlanServiceStartDate BillingPlanServiceStartDate Vers.Valid From
BillingPlanServiceEndDate BillingPlanServiceEndDate Vers.Valid To
NetAmount NetAmount Stated Amount
TaxAmount TaxAmount Tax Amt in Rptg Crcy
TaxCode TaxCode Tax Code
Currency Currency Valuation Crcy
CompanyCode CompanyCode Receiver Company Code
FiscalYear FiscalYear G/L Fiscal Year
JP_ReallocationJournalEntry JP_ReallocationJournalEntry Journal Ent.No
IsReversed _JournalEntry IsReversed Reversed?
IsDeleted IsDeleted TRUE
CreatedByUser CreatedByUser User Name
CreationDateTime CreationDateTime Timestamp
LastChangedByUser LastChangedByUser User Name
ChangedDateTime ChangedDateTime Time Stamp
SalesOrganization _TaxReallocation SalesOrganization Sales Organization
BillToParty _TaxReallocation BillToParty Inv. Recipient
_JournalEntry _JournalEntry
_TaxReallocation _TaxReallocation
_SalesOrganization _SalesOrganization

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_JP_TaxReallocationResult.
-- 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: IJPTAXALLCRESULT

CREATE VIEW I_JP_TaxReallocationResult AS
SELECT
  JP_TaxResultUUID,
  JP_TaxReallocateUUID,
  BillingPlan,
  BillingPlanItem,
  JP_TaxReallocationItem,
  BillingPlanServiceStartDate,
  BillingPlanServiceEndDate,
  NetAmount,
  TaxAmount,
  TaxCode,
  Currency,
  CompanyCode,
  FiscalYear,
  JP_ReallocationJournalEntry,
  _JournalEntry.IsReversed AS IsReversed,
  IsDeleted,
  CreatedByUser,
  CreationDateTime,
  LastChangedByUser,
  ChangedDateTime,
  _TaxReallocation.SalesOrganization AS SalesOrganization,
  _TaxReallocation.BillToParty AS BillToParty
FROM I_JP_TaxReallocationResultBsc
LEFT OUTER JOIN I_JournalEntry AS _JournalEntry ON CompanyCode = _JournalEntry.CompanyCode AND FiscalYear = _JournalEntry.FiscalYear AND JP_ReallocationJournalEntry = _JournalEntry.AccountingDocument  -- association [1]
LEFT OUTER JOIN I_JP_TaxReallocationRoot AS _TaxReallocation ON JP_TaxReallocateUUID = _TaxReallocation.JP_TaxReallocateUUID  -- association [1]
LEFT OUTER JOIN I_SalesOrganization AS _SalesOrganization ON salesorganization = _SalesOrganization.SalesOrganization  -- association [0..1]
;