I_SampleDrawingProcedure
Sample-Drawing Procedure for Material
I_SampleDrawingProcedure is a Basic CDS View that provides data about "Sample-Drawing Procedure for Material" in SAP S/4HANA.
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISAMPDRAWPROC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Sample-Drawing Procedure for Material | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ObjectModel.representativeKey | SmplDrawingProcedure | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SmplDrawingProcedure | |||
| QltyMstrDataAuthorizationGroup | qprvk | qmastauth |
// Help view for foreign key relation //
// Do not use //
// Use I_SmplDrwgProcedureVersion //
@AbapCatalog.sqlViewName: 'ISAMPDRAWPROC'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Sample-Drawing Procedure for Material'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM: {
viewType:#BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@ObjectModel.representativeKey: 'SmplDrawingProcedure'
@ObjectModel.usageType: { serviceQuality: #A, sizeCategory: #M, dataClass: #MASTER }
define view I_SampleDrawingProcedure
as select distinct from qprvk
{
key cast( qprvk.prziehverf as vdm_qprziehver preserving type ) as SmplDrawingProcedure,
// required for authorization check
@Consumption.hidden: true
qprvk.qmastauth as QltyMstrDataAuthorizationGroup
}
where
qprvk.version = '000001'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"QPRVK"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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