I_FMEACustomValnProcedure
Custom Valuation Procedures
I_FMEACustomValnProcedure is a Basic CDS View that provides data about "Custom Valuation Procedures" in SAP S/4HANA. It reads from 1 data source (plmc_audit_calc) and exposes 3 fields with key field FMEAValuationProcedure. It has 1 association to related views. Part of development package PLM_FMEA.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| plmc_audit_calc | plmc_audit_calc | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_FMEACustomValnProcedTxt | _Text | $projection.FMEAValuationProcedure = _Text.FMEAValuationProcedure |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Custom Valuation Procedures | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| VDM.viewType | #BASIC | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | FMEAValuationProcedure | plmc_audit_calc | calculation_procedure | |
| CodeIsInactive | plmc_audit_calc | inactive | ||
| _Text | _Text |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Custom Valuation Procedures'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #S,
dataClass: #CUSTOMIZING
}
@VDM.viewType: #BASIC
define view entity I_FMEACustomValnProcedure
as select from plmc_audit_calc
association [0..*] to I_FMEACustomValnProcedTxt as _Text on $projection.FMEAValuationProcedure = _Text.FMEAValuationProcedure
{
key plmc_audit_calc.calculation_procedure as FMEAValuationProcedure,
plmc_audit_calc.inactive as CodeIsInactive,
_Text
}
where
plmc_audit_calc.assessment_category = ' '
or plmc_audit_calc.assessment_category = '01'
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