I_JP_TaxReallocationRoot

DDL: I_JP_TAXREALLOCATIONROOT SQL: IJPTAXREALOC Type: view COMPOSITE

Japan Tax Reallocation Root

I_JP_TaxReallocationRoot is a Composite CDS View that provides data about "Japan Tax Reallocation Root" in SAP S/4HANA. It reads from 1 data source (I_JP_TaxReallocationRootBasic) and exposes 20 fields with key field JP_TaxReallocateUUID. It has 7 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_JP_TaxReallocationRootBasic I_JP_TaxReallocationRootBasic from

Associations (7)

CardinalityTargetAliasCondition
[0..1] I_JP_TaxReallocationOffset _Offset $projection.JP_TaxReallocateUUID = _Offset.JP_TaxReallocateUUID
[0..*] I_JP_TaxReallocationResult _Result $projection.JP_TaxReallocateUUID = _Result.JP_TaxReallocateUUID
[0..1] I_SalesOrder _SalesOrder $projection.SalesOrder = _SalesOrder.SalesOrder
[0..1] I_CompanyCode _CompanyCode $projection.billingcompanycode = _CompanyCode.Company
[0..*] I_SDDocumentPartner _SDDocumentPartner $projection.SalesOrder = _SDDocumentPartner.SDDocument
[0..1] I_SalesOrganization _SalesOrganization $projection.salesorganization = _SalesOrganization.SalesOrganization
[1..1] I_Customer _Customer $projection.BillToParty = _Customer.Customer

Annotations (13)

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

Fields (20)

KeyFieldSource TableSource FieldDescription
KEY JP_TaxReallocateUUID JP_TaxReallocateUUID Waste Partner UUID
CustomerProject CustomerProject Engmnt Project ID
SalesOrder SalesOrder SD Document
SalesOrderItem SalesOrderItem Sales Order Item
BillingPlan BillingPlan Bill. Plan No.
BillingPlanItem BillingPlanItem Item
CreatedByUser CreatedByUser User Name
CreationDateTime CreationDateTime Timestamp
LastChangedByUser LastChangedByUser User Name
ChangedDateTime ChangedDateTime Time Stamp
SalesOrganization _SalesOrder SalesOrganization Sales Organization
BillingCompanyCode _SalesOrder BillingCompanyCode CCodeToBeBilled
BillToParty
Customer
_Offset _Offset
_Result _Result
_SalesOrganization _SalesOrganization
_CompanyCode _CompanyCode
_SDDocumentPartner _SDDocumentPartner
_Customer _Customer

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_TaxReallocationRoot.
-- 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: IJPTAXREALOC

CREATE VIEW I_JP_TaxReallocationRoot AS
SELECT
  JP_TaxReallocateUUID,
  CustomerProject,
  SalesOrder,
  SalesOrderItem,
  BillingPlan,
  BillingPlanItem,
  CreatedByUser,
  CreationDateTime,
  LastChangedByUser,
  ChangedDateTime,
  _SalesOrder.SalesOrganization AS SalesOrganization,
  _SalesOrder.BillingCompanyCode AS BillingCompanyCode,
  _SDDocumentPartner[1:PartnerFunction='RE'].Customer AS BillToParty,
  _SDDocumentPartner[1:PartnerFunction='RE'].Customer AS Customer
FROM I_JP_TaxReallocationRootBasic
LEFT OUTER JOIN I_JP_TaxReallocationOffset AS _Offset ON JP_TaxReallocateUUID = _Offset.JP_TaxReallocateUUID  -- association [0..1]
LEFT OUTER JOIN I_JP_TaxReallocationResult AS _Result ON JP_TaxReallocateUUID = _Result.JP_TaxReallocateUUID  -- association [0..*]
LEFT OUTER JOIN I_SalesOrder AS _SalesOrder ON SalesOrder = _SalesOrder.SalesOrder  -- association [0..1]
LEFT OUTER JOIN I_CompanyCode AS _CompanyCode ON billingcompanycode = _CompanyCode.Company  -- association [0..1]
LEFT OUTER JOIN I_SDDocumentPartner AS _SDDocumentPartner ON SalesOrder = _SDDocumentPartner.SDDocument  -- association [0..*]
LEFT OUTER JOIN I_SalesOrganization AS _SalesOrganization ON salesorganization = _SalesOrganization.SalesOrganization  -- association [0..1]
LEFT OUTER JOIN I_Customer AS _Customer ON BillToParty = _Customer.Customer  -- association [1..1]
;