A_BPDataController
Business Partner Data Controller
A_BPDataController is a Basic CDS View that provides data about "Business Partner Data Controller" in SAP S/4HANA. It reads from 1 data source (I_BPDataController) and exposes 9 fields with key fields BusinessPartner, DataController, PurposeForPersonalData.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_BPDataController | I_BPDataController | from |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ABPDATACTRLR | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Business Partner Data Controller | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.createEnabled | true | view | |
| ObjectModel.updateEnabled | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BusinessPartner | BusinessPartner | ||
| KEY | DataController | DataControllerName | ||
| KEY | PurposeForPersonalData | BPDataPurposeText | ||
| DataControlAssignmentStatus | DataControlAssignmentStatus | |||
| BPDataControllerIsDerived | BPDataControllerIsDerived | |||
| PurposeDerived | PurposeDerived | |||
| PurposeType | PurposeType | |||
| BusinessPurposeFlag | BusinessPurposeFlag | |||
| _BusinessPartner | _BusinessPartner |
@AbapCatalog.sqlViewName: 'ABPDATACTRLR'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Business Partner Data Controller'
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #MASTER
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.personalData.blocking: #REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.createEnabled: true
@ObjectModel.updateEnabled: true
@Metadata.ignorePropagatedAnnotations: true
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
define view A_BPDataController as select from I_BPDataController
association[1..1] to A_BusinessPartner as _BusinessPartner on $projection.BusinessPartner = _BusinessPartner.BusinessPartner
{
key BusinessPartner,
key DataControllerName as DataController,
key BPDataPurposeText as PurposeForPersonalData,
DataControlAssignmentStatus,
@ObjectModel.readOnly: true
BPDataControllerIsDerived,
@ObjectModel.readOnly: true
PurposeDerived,
@ObjectModel.readOnly: true
PurposeType,
@ObjectModel.readOnly: true
BusinessPurposeFlag,
_BusinessPartner
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- 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