I_ServiceQuotationStdVH
Service Quotation
I_ServiceQuotationStdVH is a Composite CDS View that provides data about "Service Quotation" in SAP S/4HANA. It reads from 1 data source (I_ServiceDocumentEnhcd) and exposes 16 fields with key field ServiceQuotation. Part of development package CRMS4_SERV_QUOTATION_UI.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ServiceDocumentEnhcd | I_ServiceDocumentEnhcd | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Service Quotation | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.representativeKey | ServiceQuotation | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| Analytics.technicalName | ISRVCQTANSTDVH | view | |
| Search.searchable | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (16)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceQuotation | |||
| ServiceQuotationDescription | ||||
| ServiceObjectType | ServiceObjectType | |||
| ServiceDocumentType | ServiceDocumentType | |||
| ServiceDocumentStatus | ServiceDocumentStatus | |||
| SalesOrganization | SalesOrganization | |||
| SalesOffice | SalesOffice | |||
| SalesGroup | SalesGroup | |||
| DistributionChannel | DistributionChannel | |||
| Division | Division | |||
| ResponsibleEmployee | ResponsibleEmployee | |||
| SalesOrganizationOrgUnitID | SalesOrganizationOrgUnitID | |||
| SalesOfficeOrgUnitID | SalesOfficeOrgUnitID | |||
| SalesGroupOrgUnitID | SalesGroupOrgUnitID | |||
| ServiceOrganization | ServiceOrganization | |||
| RefInHouseRepairIsExisting | RefInHouseRepairIsExisting |
@EndUserText.label: 'Service Quotation'
@VDM: {
viewType: #COMPOSITE,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@AccessControl: {
authorizationCheck: #CHECK,
personalData.blocking: #('TRANSACTIONAL_DATA')
}
@ObjectModel: {
representativeKey: 'ServiceQuotation',
dataCategory: #VALUE_HELP,
usageType: {serviceQuality: #B, sizeCategory: #XL, dataClass: #TRANSACTIONAL}
}
@Analytics.technicalName: 'ISRVCQTANSTDVH'
@Search: {
searchable: true
}
@Metadata: {
ignorePropagatedAnnotations: true
}
define view entity I_ServiceQuotationStdVH
as select from I_ServiceDocumentEnhcd
{
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.7
@Search.ranking: #HIGH
key cast(ServiceDocument as crms4_qtan_id_vh_lbl preserving type) as ServiceQuotation,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold:0.7
@Search.ranking : #HIGH
@Semantics.text: true
cast(ServiceDocumentDescription as crms4_qtan_description preserving type) as ServiceQuotationDescription,
// The following fields are required for authorization checks
@Consumption.hidden: true
ServiceObjectType,
@Consumption.hidden: true
ServiceDocumentType,
@Consumption.hidden: true
ServiceDocumentStatus,
@Consumption.hidden: true
SalesOrganization,
@Consumption.hidden: true
SalesOffice,
@Consumption.hidden: true
SalesGroup,
@Consumption.hidden: true
DistributionChannel,
@Consumption.hidden: true
Division,
@Consumption.hidden: true
ResponsibleEmployee,
@Consumption.hidden: true
SalesOrganizationOrgUnitID,
@Consumption.hidden: true
SalesOfficeOrgUnitID,
@Consumption.hidden: true
SalesGroupOrgUnitID,
@Consumption.hidden: true
ServiceOrganization,
@Consumption.hidden: true
RefInHouseRepairIsExisting
}
where
ServiceObjectType = 'BUS2000116'
and ServiceDocumentIsQuotation = 'X'
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