P_SupCosBrkTmplBizFuncSts

DDL: P_SUPCOSBRKTMPLBIZFUNCSTS Type: view_entity BASIC

Business Function Activation Check for CBDT

P_SupCosBrkTmplBizFuncSts is a Basic CDS View that provides data about "Business Function Activation Check for CBDT" in SAP S/4HANA. It reads from 2 data sources (sfw_active_b2, sfw_active_bfunc) and exposes 3 fields with key fields bfunction, bfunction, version.

Data Sources (2)

SourceAliasJoin Type
sfw_active_b2 sfw_active_b2 from
sfw_active_bfunc sfw_active_bfunc union

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Business Function Activation Check for CBDT view
VDM.viewType #BASIC view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #META view
VDM.private true view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY bfunction sfw_active_b2 bfunction Business Function
KEY bfunction Business Function
KEY version sfw_active_bfunc version XML Vers.

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_SupCosBrkTmplBizFuncSts.
-- 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_SupCosBrkTmplBizFuncSts AS
SELECT
  sfw_active_b2.bfunction AS bfunction,
  sfw_active_bfunc.version AS version
FROM sfw_active_b2
-- UNION with additional select branch(es): sfw_active_bfunc
;