C_BudDocForObjP

DDL: C_BUDDOCFOROBJP SQL: CBDOC4OBJP Type: view CONSUMPTION

Auxiliary Cosumption view for Object Page

C_BudDocForObjP is a Consumption CDS View that provides data about "Auxiliary Cosumption view for Object Page" in SAP S/4HANA. It reads from 1 data source (I_BudgetEntryDocument) and exposes 8 fields with key fields FinancialManagementArea, BudgetDocumentYear, BudgetEntryDocument.

Data Sources (1)

SourceAliasJoin Type
I_BudgetEntryDocument I_BudgetEntryDocument from

Annotations (9)

NameValueLevelField
VDM.viewType #CONSUMPTION view
AbapCatalog.sqlViewName CBDOC4OBJP view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XXL view
EndUserText.label Auxiliary Cosumption view for Object Page view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY FinancialManagementArea FinancialManagementArea Financial Management Area
KEY BudgetDocumentYear BudgetDocumentYear Fiscal Year
KEY BudgetEntryDocument BudgetEntryDocument Document Number
BudgetEntryDocumentFamily BudgetEntryDocumentFamily
BudgetingProcess I_BudgetEntryDocument BudgetingProcess Budgeting Process
BudgetingProcessName
BudgetEntryDocumentType I_BudgetEntryDocument BudgetEntryDocumentType
BudgetEntryDocumentTypeName

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_BudDocForObjP.
-- 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: CBDOC4OBJP

CREATE VIEW C_BudDocForObjP AS
SELECT
  FinancialManagementArea,
  BudgetDocumentYear,
  BudgetEntryDocument,
  BudgetEntryDocumentFamily,
  I_BudgetEntryDocument.BudgetingProcess AS BudgetingProcess,
  I_BudgetEntryDocument._BudgetingProcess._Text[1:Language=$session.system_language].BudgetingProcessName AS BudgetingProcessName,
  I_BudgetEntryDocument.BudgetEntryDocumentType AS BudgetEntryDocumentType,
  I_BudgetEntryDocument._BudgetEntryDocumentType._Text[1:Language=$session.system_language].BudgetEntryDocumentTypeName AS BudgetEntryDocumentTypeName
FROM I_BudgetEntryDocument
;