I_BusinessPlace
Business Place Information
I_BusinessPlace (Basic)
Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.
Business Place · Country or Region-Specific Functions for Finance
I_BusinessPlace is a Basic CDS View that provides data about "Business Place Information" in SAP S/4HANA. It reads from 1 data source (P_BusinessPlace) and exposes 12 fields with key fields CompanyCode, BusinessPlace. It has 4 associations to related views.
SAP Help Documentation
| Category | General Functions |
|---|
This CDS view provides master data information about business places (branches or locations) within a company code, including their addresses, tax numbers, validity periods, and descriptions. It serves as a basic interface view for accessing business place configuration data. This CDS view provides the data to answer the following business questions: What business places (branches) are configured for each company code? What is the address information for a specific business place? What are the tax identification numbers (TaxNumber1, TaxNumber2, TaxNumber5) assigned to each business place? What is the validity period (start and end dates) for each business place? What is the description or name of a specific business place? Which business places are currently active based on their validity dates? How many business places does a company code operate? What is the complete master data profile for a given business place including its address details? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .
Prerequisites
Authorizations Users who want to use this CDS view must have a role with the following restriction types set to read access: BUKRS_BUPLA (Company Code/Business Place) The restriction type is edited in the Maintain Business Roles app. You can use the Display Restriction Types app to find out in which business catalogs the restriction type is included.
Structure
Important Fields Important fields in this view include the following: Field Name Description CompanyCode Company Code BusinessPlace Business Place AddressID Address BusinessPlaceStartDate Business Place Valid From BusinessPlaceEndDate Business Place Valid To TaxNumber1 Tax Number 1 TaxNumber2 Tax Number 2 TaxNumber5 Tax Number 5 BusinessPlaceDescription Name
SAP API Hub
| State | C1 |
|---|---|
| Line of Business | Country or Region-Specific Functions for Finance |
| Application Component | FI-LOC-BUP |
| Capabilities | Data Structure, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities, Data Source for Hierarchies in Analytics, Data Source for Data Extraction |
| Package | Country or Region-Specific Functions for Finance for SAP S/4HANA Cloud Private Edition |
Documentation
- Analytics with CDS Views — Build Analytics for S/4HANA Cloud Private Edition ABAP CDS views replicated to SAP Cloud Platform
- CDS Views on SAP Business Accelerator Hub — Explore SAP S/4HANA Cloud Private Edition Private Edition CDS Views on SAP Business Accelerator Hub
- Create CDS View as API — Create CDS views in SAP S/4HANA Cloud Private Edition and consume them as APIs
- Custom CDS Views — Access data using a Custom Core Data Service view (Custom CDS view)
- Key User Extensibility Tools — The Key User Extensibility Tools of S/4HANA
- SAP Extensibility Explorer for SAP S/4HANA Cloud Private Edition — Explore SAP S/4HANA Cloud Private Edition Extensibility options by leveraging the sample scenarios from SAP
- SAP S/4HANA Extensibility — SAP S/4HANA Extensibility Tutorial
- VDM View Types — The Virtual Data Model in SAP S/4HANA Cloud Private Edition
- View Browser — Search, browse and tag CDS Views
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_BusinessPlace | P_BusinessPlace | from |
Associations (4)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_BusinessPlaceText | _Text | $projection.CompanyCode = _Text.CompanyCode and $projection.BusinessPlace = _Text.BusinessPlace |
| [1..1] | I_CompanyCode | _CompanyCode | $projection.CompanyCode = _CompanyCode.CompanyCode |
| [0..1] | I_Address_2 | _Address | $projection.AddressID = _Address.AddressID and _Address.AddressPersonID = '' and _Address.AddressRepresentationCode = '' |
| [1..1] | E_BusinessPlace | _Extension | $projection.CompanyCode = _Extension.CompanyCode and $projection.BusinessPlace = _Extension.BusinessPlace |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IBUSINESSPLACE | view | |
| EndUserText.label | Business Place Information | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | BusinessPlace | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.modelingPattern | #DATA_STRUCTURE | view | |
| Analytics.dataExtraction.enabled | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.sapObjectNodeType.name | BusinessPlace | view |
Fields (12)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CompanyCode | bukrs | Company Code | |
| KEY | BusinessPlace | branch | Repository branch | |
| AddressID | adrnr | Sold-To Address | ||
| BusinessPlaceStartDate | validfrom | Business Place Valid From | ||
| BusinessPlaceEndDate | validto | Business Place Valid To | ||
| TaxNumber1 | stcd1 | Tax Number 1 | ||
| TaxNumber2 | stcd2 | Tax Number 2 | ||
| TaxNumber5 | stcd5 | Tax Number 5 | ||
| BusinessPlaceDescription | name | Zone name | ||
| _Text | _Text | |||
| _CompanyCode | _CompanyCode | |||
| _Address | _Address |
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_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: IBUSINESSPLACE
CREATE VIEW I_BusinessPlace AS
SELECT
bukrs AS CompanyCode,
branch AS BusinessPlace,
adrnr AS AddressID,
validfrom AS BusinessPlaceStartDate,
validto AS BusinessPlaceEndDate,
stcd1 AS TaxNumber1,
stcd2 AS TaxNumber2,
stcd5 AS TaxNumber5,
name AS BusinessPlaceDescription
FROM P_BusinessPlace
LEFT OUTER JOIN I_BusinessPlaceText AS _Text ON CompanyCode = _Text.CompanyCode AND BusinessPlace = _Text.BusinessPlace -- association [0..*]
LEFT OUTER JOIN I_CompanyCode AS _CompanyCode ON CompanyCode = _CompanyCode.CompanyCode -- association [1..1]
LEFT OUTER JOIN I_Address_2 AS _Address ON AddressID = _Address.AddressID AND _Address.AddressPersonID = '' AND _Address.AddressRepresentationCode = '' -- association [0..1]
LEFT OUTER JOIN E_BusinessPlace AS _Extension ON CompanyCode = _Extension.CompanyCode AND BusinessPlace = _Extension.BusinessPlace -- association [1..1]
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA