I_BusinessProcessText

DDL: I_BUSINESSPROCESSTEXT SQL: IFIBUSPROCESST Type: view BASIC

Business Process - Text

I_BusinessProcessText (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Accounting and Financial Close

I_BusinessProcessText is a Basic CDS View that provides data about "Business Process - Text" in SAP S/4HANA. It reads from 1 data source (cbpt) and exposes 10 fields with key fields ControllingArea, BusinessProcess, Language, ValidityEndDate. It has 3 associations to related views.

SAP API Hub

StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-FIO-GL-IS
CapabilitiesData Source for Data Extraction, Association Target for Defining CDS Entities
PackageAccounting and Financial Close for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
cbpt cbpt from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_ControllingArea _ControllingAreaText $projection.ControllingArea = _ControllingAreaText.ControllingArea
[0..1] I_Language _Language $projection.Language = _Language.Language
[1] I_ControllingArea _ControllingArea $projection.ControllingArea = _ControllingArea.ControllingArea

Annotations (14)

NameValueLevelField
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey BusinessProcess view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
Search.searchable true view
Consumption.ranked true view
EndUserText.label Business Process - Text view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFIBUSPROCESST view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY ControllingArea Controlling Area
KEY BusinessProcess cbpt prznr Business Process
KEY Language cbpt spras Off. Language
KEY ValidityEndDate cbpt datbi Validity period
BusinessProcessName cbpt ktext General Name
BusinessProcessDescription cbpt ltext Text exists
ValidityStartDate cbpr datab Validity period
_Language _Language
_ControllingArea _ControllingArea
_ControllingAreaText _ControllingAreaText

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_BusinessProcessText.
-- 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: IFIBUSPROCESST

CREATE VIEW I_BusinessProcessText AS
SELECT
  cast( cbpt.kokrs as fis_kokrs ) AS ControllingArea,
  cbpt.prznr AS BusinessProcess,
  cbpt.spras AS Language,
  cbpt.datbi AS ValidityEndDate,
  cbpt.ktext AS BusinessProcessName,
  cbpt.ltext AS BusinessProcessDescription,
  cbpr.datab AS ValidityStartDate
FROM cbpt
LEFT OUTER JOIN I_ControllingArea AS _ControllingAreaText ON ControllingArea = _ControllingAreaText.ControllingArea  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_ControllingArea AS _ControllingArea ON ControllingArea = _ControllingArea.ControllingArea  -- association [1]
;