I_JP_TaxReallocationOffset

DDL: I_JP_TAXREALLOCATIONOFFSET SQL: IJPTAXOFFSET Type: view COMPOSITE

Japan Tax Reallocation Offset

I_JP_TaxReallocationOffset is a Composite CDS View that provides data about "Japan Tax Reallocation Offset" in SAP S/4HANA. It reads from 1 data source (I_JP_TaxReallocationOffsetBsc) and exposes 24 fields with key field JP_TaxOffsetUUID. It has 4 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_JP_TaxReallocationOffsetBsc _OffSet from

Associations (4)

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

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IJPTAXOFFSET 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 #CHECK view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
ObjectModel.representativeKey JP_TaxOffsetUUID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #M view
EndUserText.label Japan Tax Reallocation Offset view

Fields (24)

KeyFieldSource TableSource FieldDescription
KEY JP_TaxOffsetUUID JP_TaxOffsetUUID Waste Partner UUID
JP_TaxReallocateUUID JP_TaxReallocateUUID Tx Reallocation UUID
CustomerProject CustomerProject Engmnt Project ID
SalesOrder SalesOrder SD Document
SalesOrderItem SalesOrderItem Sales Order Item
BillingPlan BillingPlan Bill. Plan No.
BillingPlanItem BillingPlanItem Item
AccountingDocument AccountingDocument Journal Entry
CompanyCode CompanyCode Receiver Company Code
FiscalYear FiscalYear G/L Fiscal Year
JP_TaxOffSetJournalEntry JP_TaxOffSetJournalEntry Document Number
PostingFiscalYear PostingFiscalYear Fiscal Year
IsReversed _JournalEntry IsReversed Reversed?
JP_OffsetJournalEntryHeaderTxt _JournalEntry AccountingDocumentHeaderText Doc.Header Text
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
_SalesOrder _SalesOrder
_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_TaxReallocationOffset.
-- 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: IJPTAXOFFSET

CREATE VIEW I_JP_TaxReallocationOffset AS
SELECT
  JP_TaxOffsetUUID,
  JP_TaxReallocateUUID,
  CustomerProject,
  SalesOrder,
  SalesOrderItem,
  BillingPlan,
  BillingPlanItem,
  AccountingDocument,
  CompanyCode,
  FiscalYear,
  JP_TaxOffSetJournalEntry,
  PostingFiscalYear,
  _JournalEntry.IsReversed AS IsReversed,
  _JournalEntry.AccountingDocumentHeaderText AS JP_OffsetJournalEntryHeaderTxt,
  CreatedByUser,
  CreationDateTime,
  LastChangedByUser,
  ChangedDateTime,
  _TaxReallocation.SalesOrganization AS SalesOrganization,
  _TaxReallocation.BillToParty AS BillToParty
FROM I_JP_TaxReallocationOffsetBsc AS _OffSet
LEFT OUTER JOIN I_JournalEntry AS _JournalEntry ON CompanyCode = _JournalEntry.CompanyCode AND FiscalYear = _JournalEntry.FiscalYear AND JP_TaxOffSetJournalEntry = _JournalEntry.AccountingDocument  -- association [1]
LEFT OUTER JOIN I_JP_TaxReallocationRoot AS _TaxReallocation ON JP_TaxReallocateUUID = _TaxReallocation.JP_TaxReallocateUUID  -- association [1]
LEFT OUTER JOIN I_SalesOrder AS _SalesOrder ON SalesOrder = _SalesOrder.SalesOrder  -- association [0..1]
LEFT OUTER JOIN I_SalesOrganization AS _SalesOrganization ON salesorganization = _SalesOrganization.SalesOrganization  -- association [0..1]
;