I_SpecialProcurementType
Special Procurement Type for BOM Item
I_SpecialProcurementType is a Basic CDS View that provides data about "Special Procurement Type for BOM Item" in SAP S/4HANA. It reads from 2 data sources (t460a, t460t) and exposes 3 fields with key fields SpecialProcurementType, Plant.
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISPCLPROCMTTYPE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Special Procurement Type for BOM Item | view | |
| ClientHandling.type | #INHERITED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| Search.searchable | true | view | |
| ObjectModel.representativeKey | SpecialProcurementType | view |
@AbapCatalog.sqlViewName: 'ISPCLPROCMTTYPE'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Special Procurement Type for BOM Item'
@ClientHandling.type : #INHERITED
@ClientHandling.algorithm : #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #S, dataClass: #CUSTOMIZING}
@Search.searchable: true
@ObjectModel.representativeKey: 'SpecialProcurementType'
define view I_SpecialProcurementType
as select from t460a inner join
t460t on t460a.sobsl = t460t.sobsl and
t460a.werks = t460t.werks and
t460t.spras = $session.system_language
{
@Search.defaultSearchElement: true
key t460a.sobsl as SpecialProcurementType,
@Search.defaultSearchElement: true
key t460a.werks as Plant,
@Semantics.text: true
@Search.defaultSearchElement: true
t460t.ltext as SpecialProcurementTypeText
}
where t460a.clcor = 'X'
or t460a.dirpr = 'X'
or t460a.dumps = 'X'
or t460a.mlscr = 'X'
or ( t460a.rewfg = 'X'
and t460a.rewrk != ' ' )
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T460A",
"T460T"
],
"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