C_BusinessPlaceDP

DDL: C_BUSINESSPLACEDP Type: view_entity CONSUMPTION Package: ID-FI-BUPLA-DATA

Business Place Information

C_BusinessPlaceDP is a Consumption CDS View that provides data about "Business Place Information" in SAP S/4HANA. It reads from 1 data source (I_BusinessPlace) and exposes 12 fields with key fields CompanyCode, BusinessPlace. It has 3 associations to related views. It is exposed through 1 OData service (DP_BUSINESSPLACE). Part of development package ID-FI-BUPLA-DATA.

Data Sources (1)

SourceAliasJoin Type
I_BusinessPlace I_BusinessPlace from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_Address_2 _Address $projection.AddressID = _Address.AddressID and _Address.AddressPersonID = '' and _Address.AddressRepresentationCode = ''
[1..1] I_CompanyCode _CompanyCode $projection.CompanyCode = _CompanyCode.CompanyCode
[0..*] C_BusinessPlaceTextDP _Text

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Business Place Information view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #EXTERNAL_DATA_PROVIDER view
ObjectModel.representativeKey BusinessPlace view
ObjectModel.sapObjectNodeType.name BusinessPlace view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #CONSUMPTION view

OData Services (1)

ServiceBindingVersionContractRelease
DP_BUSINESSPLACE DP_BUSINESSPLACE C2 NOT_RELEASED

Fields (12)

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
_Text _Text
_Address _Address
_CompanyCode _CompanyCode

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_BusinessPlaceDP.
-- 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 C_BusinessPlaceDP AS
SELECT
  CompanyCode,
  BusinessPlace,
  AddressID,
  BusinessPlaceStartDate,
  BusinessPlaceEndDate,
  TaxNumber1,
  TaxNumber2,
  TaxNumber5,
  BusinessPlaceDescription
FROM I_BusinessPlace
LEFT OUTER JOIN I_Address_2 AS _Address ON AddressID = _Address.AddressID AND _Address.AddressPersonID = '' AND _Address.AddressRepresentationCode = ''  -- association [0..1]
LEFT OUTER JOIN I_CompanyCode AS _CompanyCode ON CompanyCode = _CompanyCode.CompanyCode  -- association [1..1]
LEFT OUTER JOIN C_BusinessPlaceTextDP AS _Text ON /* condition not available in parsed metadata */  -- association [0..*]
;