I_Behsubscriber

DDL: I_BEHSUBSCRIBER SQL: IBEHSUBSCRIBER Type: view BASIC Package: BEH_SUBSCRIPTION

BEH subscribers

I_Behsubscriber is a Basic CDS View that provides data about "BEH subscribers" in SAP S/4HANA. It reads from 1 data source (beh_c_subscriber) and exposes 2 fields with key field BusEventSubscriberCode. Part of development package BEH_SUBSCRIPTION.

Data Sources (1)

SourceAliasJoin Type
beh_c_subscriber beh_c_subscriber from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IBEHSUBSCRIBER view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label BEH subscribers view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BusEventSubscriberCode beh_c_subscriber subscriber Subscriber ID
BusinessEventSubscriberName beh_c_subscriber name Zone 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_Behsubscriber.
-- 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: IBEHSUBSCRIBER

CREATE VIEW I_Behsubscriber AS
SELECT
  beh_c_subscriber.subscriber AS BusEventSubscriberCode,
  beh_c_subscriber.name AS BusinessEventSubscriberName
FROM beh_c_subscriber
;