A_BusinessPlace

DDL: A_BUSINESSPLACE SQL: ABUSINESSPLACE Type: view BASIC Package: ID-FI-BUPLA-DATA

Business Place

A_BusinessPlace is a Basic CDS View that provides data about "Business Place" in SAP S/4HANA. It reads from 1 data source (I_BusinessPlace) and exposes 9 fields with key fields CompanyCode, BusinessPlace. It has 1 association to related views. Part of development package ID-FI-BUPLA-DATA.

Data Sources (1)

SourceAliasJoin Type
I_BusinessPlace I_BusinessPlace from

Associations (1)

CardinalityTargetAliasCondition
[0..1] E_BusinessPlace _Extension $projection.CompanyCode = _Extension.CompanyCode and $projection.BusinessPlace = _Extension.BusinessPlace

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName ABUSINESSPLACE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Business Place view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #BASIC view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.createEnabled false view
ObjectModel.updateEnabled false view
ObjectModel.deleteEnabled false view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
KEY BusinessPlace BusinessPlace Business place
AddressID AddressID Ship-to address
BusinessPlaceStartDate BusinessPlaceStartDate Vers.Valid From
BusinessPlaceEndDate BusinessPlaceEndDate Vers.Valid To
TaxNumber1 TaxNumber1 VAT Reg. No.
TaxNumber2 TaxNumber2 Tax Number 2
TaxNumber5 TaxNumber5 Tax Number 5
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 A_BusinessPlace.
-- 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: ABUSINESSPLACE

CREATE VIEW A_BusinessPlace AS
SELECT
  CompanyCode,
  BusinessPlace,
  AddressID,
  BusinessPlaceStartDate,
  BusinessPlaceEndDate,
  TaxNumber1,
  TaxNumber2,
  TaxNumber5,
  BusinessPlaceDescription
FROM I_BusinessPlace
LEFT OUTER JOIN E_BusinessPlace AS _Extension ON CompanyCode = _Extension.CompanyCode AND BusinessPlace = _Extension.BusinessPlace  -- association [0..1]
;