C_BusinessPlaceVH

DDL: C_BUSINESSPLACEVH SQL: CBUPLAVH Type: view CONSUMPTION Package: ID-FI-BUPLA-DATA

Business Place Value Help

C_BusinessPlaceVH is a Consumption CDS View that provides data about "Business Place Value Help" in SAP S/4HANA. It reads from 1 data source (I_BusinessPlace) and exposes 3 fields with key fields CompanyCode, BusinessPlace. Part of development package ID-FI-BUPLA-DATA.

Data Sources (1)

SourceAliasJoin Type
I_BusinessPlace I_BusinessPlace from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CBUPLAVH view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.preserveKey true view
ObjectModel.dataCategory #VALUE_HELP view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Business Place Value Help view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
KEY BusinessPlace BusinessPlace Business place
BusinessPlaceDescription BusinessPlaceDescription 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 C_BusinessPlaceVH.
-- 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: CBUPLAVH

CREATE VIEW C_BusinessPlaceVH AS
SELECT
  CompanyCode,
  BusinessPlace,
  BusinessPlaceDescription
FROM I_BusinessPlace
;