P_CostingProductionVersionVH
Costing Product Version Value Help
P_CostingProductionVersionVH is a Basic CDS View that provides data about "Costing Product Version Value Help" in SAP S/4HANA. It reads from 2 data sources (I_Material, mkal) and exposes 10 fields with key fields CostingProductionVersion, Material, Plant. Part of development package FINS_FIS_FICO.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_Material | Material | inner |
| mkal | mkal | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PCOSTPRODVERSNVH | view | |
| VDM.private | true | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view |
Fields (10)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CostingProductionVersion | |||
| KEY | Material | mkal | matnr | |
| KEY | Plant | mkal | werks | |
| ProductionVersionText | mkal | text1 | ||
| MaterialType | I_Material | MaterialType | ||
| MaterialGroup | I_Material | MaterialGroup | ||
| AuthorizationGroup | ||||
| MaterialAuthorizationGroup | ||||
| _MaterialType | I_Material | _MaterialType | ||
| _MaterialGroup | I_Material | _MaterialGroup |
@AbapCatalog.sqlViewName: 'PCOSTPRODVERSNVH'
@VDM.private: true
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
define view P_CostingProductionVersionVH
as select from mkal as mkal
inner join I_Material as Material on Material.Material = mkal.matnr
{
key cast (mkal.verid as ck_verid) as CostingProductionVersion,
key mkal.matnr as Material,
key mkal.werks as Plant,
mkal.text1 as ProductionVersionText,
Material.MaterialType,
Material.MaterialGroup,
Material._MaterialType.AuthorizationGroup,
Material._MaterialGroup.MaterialAuthorizationGroup,
Material._MaterialType,
Material._MaterialGroup
}
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