P_RASchedNonDistinctPerdExtend

DDL: P_RASCHEDNONDISTINCTPERDEXTEND Type: view_entity Package: ODATA_FARR_REVENUESCHEDULE

Extend Fiscal Period of Non-distinct POB

P_RASchedNonDistinctPerdExtend is a CDS View that provides data about "Extend Fiscal Period of Non-distinct POB" in SAP S/4HANA. It reads from 1 data source (I_RAPerformanceObligation) and exposes 6 fields with key fields PerformanceObligation, FiscalYear, FiscalPeriod, RevenueAccountingContract. Part of development package ODATA_FARR_REVENUESCHEDULE.

Data Sources (1)

SourceAliasJoin Type
I_RAPerformanceObligation _RAPerformanceObligation inner

Annotations (1)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY PerformanceObligation _RADeferralItemPeriod PerformanceObligation Performance Obligation
KEY FiscalYear _RADeferralItemPeriod FiscalYear G/L Fiscal Year
KEY FiscalPeriod _RADeferralItemPeriod FiscalPeriod Tax period
KEY RevenueAccountingContract _RADeferralItemPeriod RevenueAccountingContract Revenue Contract
RAHigherLevelPerfOblgn _RADeferralItemPeriod RAHigherLevelPerfOblgn Higher-Level POB
NPerformanceObligation I_RAPerformanceObligation PerformanceObligation Performance Obligation

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 P_RASchedNonDistinctPerdExtend.
-- 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 P_RASchedNonDistinctPerdExtend AS
SELECT
  _RADeferralItemPeriod.PerformanceObligation AS PerformanceObligation,
  _RADeferralItemPeriod.FiscalYear AS FiscalYear,
  _RADeferralItemPeriod.FiscalPeriod AS FiscalPeriod,
  _RADeferralItemPeriod.RevenueAccountingContract AS RevenueAccountingContract,
  _RADeferralItemPeriod.RAHigherLevelPerfOblgn AS RAHigherLevelPerfOblgn,
  _RAPerformanceObligation.PerformanceObligation AS NPerformanceObligation
INNER JOIN I_RAPerformanceObligation AS _RAPerformanceObligation ON /* join condition not captured in parsed metadata */
;