I_EquipmentStdVH

DDL: I_EQUIPMENTSTDVH SQL: IE__VH6 Type: view COMPOSITE

Equipment

I_EquipmentStdVH (Composite)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Asset Management

I_EquipmentStdVH is a Composite CDS View that provides data about "Equipment" in SAP S/4HANA. It reads from 1 data source (I_Equipment) and exposes 8 fields with key field Equipment.

SAP Help Documentation

CategoryCDS Views for Maintenance Management
Purpose
This view provides value help for Equipment . This view should be used for value help purposes only. If you intend to select the entire business data, use the view I_Equipment instead. To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations Users who want to use this CDS view must have a role with the following restriction types set to read access: BEGRU_KNA1 (Authorization Group for Customers) BEGRU_LFA1 (Authorization Group for Suppliers) KTOKD (Customer Account Group) KTOKK (Supplier Account Group) BEGRP (Technical Object Authorization Group) B_BUP_DCPD (Business Partner Processing) These restriction types are edited in the Maintain Business Roles app.

Structure
Important Fields Important fields in this view include the following: Field Name Description AUTHORIZATIONGROUP Technical Object Authorization Group EQUIPMENTNAME Description of technical object CUSTOMER Customer to Whom Serial Number was Delivered SUPPLIER Vendor Number EQUIPMENT Equipment Number

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessAsset Management
Application ComponentPM-EQM-EQ
CapabilitiesData Source in SQL Select, Association Target for Defining CDS Entities, Data Source for Defining CDS Entities, Data Source for Search, Data Provider for Value Help
PackageAsset Management for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
I_Equipment I_Equipment from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IE__VH6 view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey Equipment view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
Consumption.ranked true view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Equipment view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY Equipment Equipment Equipment Number
EquipmentName Description of technical object
_EquipmentText _EquipmentText
Customer Customer Customer to Whom Serial Number was Delivered
Supplier Supplier Vendor number
AuthorizationGroup AuthorizationGroup Technical Object Authorization Group
_Customer _Customer
_Supplier _Supplier

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_EquipmentStdVH.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IE__VH6

CREATE VIEW I_EquipmentStdVH AS
SELECT
  Equipment,
  _EquipmentText[1:Language=$session.system_language].EquipmentName AS EquipmentName,
  Customer,
  Supplier,
  AuthorizationGroup
FROM I_Equipment
;