C_RAFinComplianceSuspension

DDL: C_RAFINCOMPLIANCESUSPENSION Type: view_entity CONSUMPTION

Compliance of Suspension Date

C_RAFinComplianceSuspension is a Consumption CDS View that provides data about "Compliance of Suspension Date" in SAP S/4HANA. It reads from 1 data source (R_RAFinComplianceSuspension) and exposes 23 fields with key field PerformanceObligation.

Data Sources (1)

SourceAliasJoin Type
R_RAFinComplianceSuspension R_RAFinComplianceSuspension projection

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Metadata.allowExtensions true view
VDM.viewType #CONSUMPTION view
EndUserText.label Compliance of Suspension Date view

Fields (23)

KeyFieldSource TableSource FieldDescription
KEY PerformanceObligation PerformanceObligation Performance Obligation
PerformanceObligationClass PerformanceObligationClass Performance Obligation Name
RevnAcctgSuspensionDate RevnAcctgSuspensionDate Suspension Date
RevnAcctgSuspensionReason RevnAcctgSuspensionReason Suspension Reason
RevnAcctgSuspensionReasonName RevnAcctgSuspensionReasonName
SuspendedRevnAmtInSlsDocCrcy SuspendedRevnAmtInSlsDocCrcy
SuspendedCostAmtInSlsDocCrcy SuspendedCostAmtInSlsDocCrcy
RevenueAccountingContract RevenueAccountingContract Revenue Contract
BusinessPartner BusinessPartner Issuing Authority
Customer Customer Sold-to Party
ProfitCenter ProfitCenter Profit Center
Segment Segment Segment number
CostCenter CostCenter Cost Center
OrderID OrderID Order ID
WBSElementExternalID WBSElementExternalID WBS Element External ID
RAPerformanceObligationType RAPerformanceObligationType Performance Obligation Type
CompanyCode CompanyCode Receiver Company Code
AccountingPrinciple AccountingPrinciple AP Ledger/CoCode
IsBusinessPurposeCompleted IsBusinessPurposeCompleted Purpose Completed
SalesDocumentCurrency SalesDocumentCurrency Currency
CostCurrency CostCurrency
BusinessPartnerName BusinessPartnerName Extracted Customer Name
CustomerName CustomerName Name of 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 C_RAFinComplianceSuspension.
-- 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 C_RAFinComplianceSuspension AS
SELECT
  PerformanceObligation,
  PerformanceObligationClass,
  RevnAcctgSuspensionDate,
  RevnAcctgSuspensionReason,
  RevnAcctgSuspensionReasonName,
  SuspendedRevnAmtInSlsDocCrcy,
  SuspendedCostAmtInSlsDocCrcy,
  RevenueAccountingContract,
  BusinessPartner,
  Customer,
  ProfitCenter,
  Segment,
  CostCenter,
  OrderID,
  WBSElementExternalID,
  RAPerformanceObligationType,
  CompanyCode,
  AccountingPrinciple,
  IsBusinessPurposeCompleted,
  SalesDocumentCurrency,
  CostCurrency,
  BusinessPartnerName,
  CustomerName
FROM R_RAFinComplianceSuspension
;