C_SrcgProjVersioningReasonVH
Reason for New Version of Srcg Project
C_SrcgProjVersioningReasonVH is a Consumption CDS View that provides data about "Reason for New Version of Srcg Project" in SAP S/4HANA. It reads from 3 data sources (I_ProductSourcingReasonModel, I_SourcingProjectType, I_ProductSourcingReason) and exposes 4 fields with key fields SourcingProjectReason, SourcingProjectType. It is exposed through 2 OData services (UI_SOURCINGPROJECT_MANAGE, UI_SRCGPROJ_CONTRIBUTE). Part of development package ODATA_MM_PUR_SRCGPROJ_MAINTAIN.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| I_ProductSourcingReasonModel | _SourcingProjectReasonModel | inner |
| I_SourcingProjectType | _SourcingProjectType | inner |
| I_ProductSourcingReason | I_ProductSourcingReason | from |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CSPITMVRSRSNVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | SourcingProjectReason | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| VDM.viewType | #CONSUMPTION | view | |
| EndUserText.label | Reason for New Version of Srcg Project | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view |
OData Services (2)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_SOURCINGPROJECT_MANAGE | UI_SOURCINGPROJECT_MANAGE | V2 | C1 | NOT_RELEASED |
| UI_SRCGPROJ_CONTRIBUTE | UI_SRCGPROJ_CONTRIBUTE | V2 | C1 | NOT_RELEASED |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SourcingProjectReason | I_ProductSourcingReason | ProductSourcingReason | |
| KEY | SourcingProjectType | I_SourcingProjectType | SourcingProjectType | |
| SourcingProjectReasonGroup | I_ProductSourcingReasonModel | ProductSourcingReasonGroup | ||
| SourcingProjectReasonText |
@AbapCatalog.sqlViewName: 'CSPITMVRSRSNVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: { representativeKey: 'SourcingProjectReason',
usageType.dataClass: #MASTER, //#MIXED,
usageType.serviceQuality: #C,
usageType.sizeCategory: #L,
dataCategory: #VALUE_HELP
//resultSet.sizeCategory: #XS
}
@VDM.viewType: #CONSUMPTION
@EndUserText.label: 'Reason for New Version of Srcg Project'
@Search.searchable: true
@Consumption.ranked: true
define view C_SrcgProjVersioningReasonVH
as select from I_ProductSourcingReason
inner join I_ProductSourcingReasonModel as _SourcingProjectReasonModel on I_ProductSourcingReason.ProductSourcingReason = _SourcingProjectReasonModel.ProductSourcingReason
inner join I_SourcingProjectType as _SourcingProjectType on _SourcingProjectType.SrcgProjVersioningReasonGroup = _SourcingProjectReasonModel.ProductSourcingReasonGroup
{
@UI.hidden: true
@ObjectModel.text.element: ['SourcingProjectReasonText']
key I_ProductSourcingReason.ProductSourcingReason as SourcingProjectReason,
key _SourcingProjectType.SourcingProjectType,
@UI.hidden: true
_SourcingProjectReasonModel.ProductSourcingReasonGroup as SourcingProjectReasonGroup,
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.7 }
@Semantics.text: true
I_ProductSourcingReason._SourcingProjectReasonText[1:Language = $session.system_language ].ProductSourcingReasonText as SourcingProjectReasonText
}
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