P_CostRateBusinessTransType
Business Transaction Type for Cost Rate
P_CostRateBusinessTransType is a Basic CDS View that provides data about "Business Transaction Type for Cost Rate" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field BusinessTransactionType. It has 1 association to related views. Part of development package FINS_CO_COST_RATE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | P_CostRateBusinessTransTypeTxt | _Text | $projection.BusinessTransactionType = _Text.BusinessTransactionType |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #BASIC | view | |
| VDM.private | true | view | |
| AbapCatalog.sqlViewName | PCRBUSTRANTYPE | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BusinessTransactionType | domvalue_l | ||
| _Text | _Text |
@VDM.viewType: #BASIC
@VDM.private: true
@AbapCatalog.sqlViewName: 'PCRBUSTRANTYPE'
@AccessControl.authorizationCheck: #CHECK //NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #CUSTOMIZING
define view P_CostRateBusinessTransType
as select from dd07l
association [0..*] to P_CostRateBusinessTransTypeTxt as _Text on $projection.BusinessTransactionType = _Text.BusinessTransactionType
{
@ObjectModel.text.association: '_Text'
key domvalue_l as BusinessTransactionType,
_Text
} where domname = 'FCO_RATE_BTTYPE' and as4local = 'A';
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