C_BPDataProviderTypeTextVH
Text view for Data provider field
C_BPDataProviderTypeTextVH is a Consumption CDS View that provides data about "Text view for Data provider field" in SAP S/4HANA. It reads from 1 data source (I_BR_Domain) and exposes 5 fields with key fields DataProvider, Language. It has 1 association to related views. Part of development package VDM_MD_BP.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_BR_Domain | I_BR_Domain | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | C_BPDataProviderTypeVH | _DataProviderValueHelp | $projection.DataProvider = _DataProviderValueHelp.DataProvider |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CBPDATAPROVIDERT | view | |
| VDM.viewType | #CONSUMPTION | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| Search.searchable | true | view | |
| ObjectModel.representativeKey | DataProvider | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| EndUserText.label | Text view for Data provider field | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DataProvider | |||
| KEY | Language | Language | ||
| DataProviderText | DomainText | |||
| DomainValue | DomainValue | |||
| _DataProviderValueHelp | _DataProviderValueHelp |
@AbapCatalog.sqlViewName: 'CBPDATAPROVIDERT'
@VDM.viewType: #CONSUMPTION
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.dataCategory: #TEXT
@Search.searchable: true
@ObjectModel.representativeKey: 'DataProvider'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
@EndUserText.label: 'Text view for Data provider field'
define view C_BPDataProviderTypeTextVH
as select from I_BR_Domain
association [0..1] to C_BPDataProviderTypeVH as _DataProviderValueHelp on $projection.DataProvider = _DataProviderValueHelp.DataProvider
{
@ObjectModel.foreignKey.association: '_DataProviderValueHelp'
key cast ( cast ( substring( DomainValue, 1, 1 ) as abap.char( 1 ) ) as exbu_type ) as DataProvider,
@Semantics.language:true
key Language as Language,
@Semantics.text: true
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@EndUserText.quickInfo: 'Short Description'
@Consumption.filter.hidden: true
DomainText as DataProviderText,
@Search.defaultSearchElement: true
@Consumption.hidden: true
DomainValue as DomainValue,
_DataProviderValueHelp
}
where
Name = 'EXBU_TYPE'
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