I_BusSolnQtanItmExtReference
Solution Quotation Item External Reference
I_BusSolnQtanItmExtReference is a Basic CDS View that provides data about "Solution Quotation Item External Reference" in SAP S/4HANA. It reads from 1 data source (crms4d_ext_ref) and exposes 2 fields with key fields BusinessSolutionQuotation, BusSolutionQuotationItem. Part of development package ODATA_CRMS4_SOLUTIONQUOTATION.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| crms4d_ext_ref | crms4d_ext_ref | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Solution Quotation Item External Reference | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AbapCatalog.sqlViewName | IBSQITMEXTREFE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BusinessSolutionQuotation | object_id | ||
| KEY | BusSolutionQuotationItem | number_int |
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Solution Quotation Item External Reference'
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@AccessControl: {
authorizationCheck: #CHECK,
personalData.blocking: #('TRANSACTIONAL_DATA')
}
@AbapCatalog: {
sqlViewName: 'IBSQITMEXTREFE',
compiler.compareFilter: true,
preserveKey: true
}
@ObjectModel: {
// representativeKey: 'ServiceDocument',
usageType: {
dataClass: #TRANSACTIONAL,
serviceQuality: #B,
sizeCategory: #XL
}
}
@Metadata.ignorePropagatedAnnotations: true
define view I_BusSolnQtanItmExtReference
as select from crms4d_ext_ref
{
key object_id as BusinessSolutionQuotation,
key number_int as BusSolutionQuotationItem,
//added for 2023 op
//reference_number as BusSolnQtanItemExtReference
case
when reference_type = '0006' then reference_number
else ''
end
as BusSolnQtanItemExtReference,
case
when reference_type = '0022' then reference_number
else ''
end as LegalContractItemExtReference
}
where
objtype_h = 'BUS2000116' // Service Process
and number_int <> '000000' // Item
//added for 2023 op
//and reference_type = '0006' // Solution Quotation Item External Reference
and ( reference_type = '0006' // Solution Quotation Item External Reference
or reference_type = '0022' // Legal Contract Item External Reference
)
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