I_SerialNumberWithStkSgmtVH
Help-View for serial numbers
I_SerialNumberWithStkSgmtVH is a Basic CDS View that provides data about "Help-View for serial numbers" in SAP S/4HANA. It reads from 1 data source (I_Equipment) and exposes 9 fields with key fields SerialNumber, Material, Equipment.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_Equipment | I_Equipment | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMMIMSERNRVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| EndUserText.label | Help-View for serial numbers | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Search.searchable | true | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SerialNumber | SerialNumber | ||
| KEY | Material | Material | ||
| KEY | Equipment | Equipment | ||
| AuthorizationGroup | AuthorizationGroup | |||
| Customer | Customer | |||
| Supplier | Supplier | |||
| _Customer | _Customer | |||
| _Supplier | _Supplier | |||
| _Material | _Material |
@AbapCatalog: {
sqlViewName: 'IMMIMSERNRVH',
compiler.compareFilter: true,
preserveKey: true
}
@EndUserText.label: 'Help-View for serial numbers'
@AccessControl: {
authorizationCheck: #CHECK,
personalData.blocking:#NOT_REQUIRED
}
@VDM.viewType: #BASIC
@ObjectModel: {
usageType: {
sizeCategory: #L,
serviceQuality: #C,
dataClass:#MASTER
},
dataCategory:#VALUE_HELP
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
define view I_SerialNumberWithStkSgmtVH
as select from I_Equipment
{
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
key SerialNumber,
key Material,
@UI.hidden: true
key Equipment,
@Consumption.hidden: true
AuthorizationGroup,
@Consumption.hidden: true
Customer,
@Consumption.hidden: true
Supplier,
/* Associations */
@Consumption.hidden: true
_Customer,
@Consumption.hidden: true
_Supplier,
@Consumption.hidden: true
_Material
}
where
SerialNumber <> ' '
and EquipmentHasStockInformation = 'X'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_EQUIPMENT"
],
"ASSOCIATED":
[
"I_CUSTOMER",
"I_MATERIAL",
"I_SUPPLIER"
],
"BASE":
[
"I_EQUIPMENT"
],
"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