I_OpenPostingPeriod

DDL: I_OPENPOSTINGPERIOD SQL: IOPENPOSTGPERD Type: view BASIC

Interface View for table OpenPostgPeriod

I_OpenPostingPeriod is a Basic CDS View that provides data about "Interface View for table OpenPostgPeriod" in SAP S/4HANA. It reads from 1 data source (openpostgperiod) and exposes 9 fields with key fields CompanyCode, Ledger, BusinessTransactionType, FiscalYear, FiscalPeriod.

Data Sources (1)

SourceAliasJoin Type
openpostgperiod openpostgperiod from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IOPENPOSTGPERD view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
AbapCatalog.preserveKey true view
EndUserText.label Interface View for table OpenPostgPeriod view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
VDM.viewType #BASIC view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode companycode Receiver Company Code
KEY Ledger ledger Ledger
KEY BusinessTransactionType bttype Business Transaction Type
KEY FiscalYear fiscalyear G/L Fiscal Year
KEY FiscalPeriod fiscalperiod Tax period
PostingPeriodStatus periodstatus Status PeriodDeterm.
LastChangeDate lastchangedate Time Stamp
LastChangeTime lastchangetime Time changed
LastChangeByUser lastchangeuser User Name

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_OpenPostingPeriod.
-- 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: IOPENPOSTGPERD

CREATE VIEW I_OpenPostingPeriod AS
SELECT
  CompanyCode,
  Ledger,
  bttype AS BusinessTransactionType,
  FiscalYear,
  FiscalPeriod,
  periodstatus AS PostingPeriodStatus,
  LastChangeDate,
  LastChangeTime,
  lastchangeuser AS LastChangeByUser
FROM openpostgperiod
;