C_ProcurementProgressTextVH
Procurement Progress - Text
C_ProcurementProgressTextVH is a Consumption CDS View that provides data about "Procurement Progress - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields ProcurementProgress, Language. Part of development package ODATA_PP_MRP.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Procurement Progress - Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| Search.searchable | true | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.representativeKey | ProcurementProgress | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProcurementProgress | |||
| KEY | Language | ddlanguage | ||
| ProcurementProgressDesc | ddtext |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Procurement Progress - Text'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #S,
dataClass: #MIXED
}
@Search.searchable: true
@VDM.viewType:#CONSUMPTION
@ObjectModel.representativeKey: 'ProcurementProgress'
@ObjectModel.dataCategory:#VALUE_HELP
define view entity C_ProcurementProgressTextVH
as select from dd07t
{
@ObjectModel.text.element: [ 'ProcurementProgressDesc' ]
key cast( domvalue_l as procurementprogressindicator ) as ProcurementProgress,
@Semantics.language: true
@UI.hidden: true
key ddlanguage as Language,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@Semantics.text: true
ddtext as ProcurementProgressDesc
}
where
(
domname = 'PROCUREMENTPROGRESSINDICATOR'
and as4local = 'A'
and ddlanguage = $session.system_language
);
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