I_BusSolnQuotationItemText
Solution Quotation Item Text
I_BusSolnQuotationItemText is a Basic CDS View that provides data about "Solution Quotation Item Text" in SAP S/4HANA. It reads from 2 data sources (crms4d_serv_i, stxh) and exposes 5 fields.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| crms4d_serv_i | crms4d_serv_i | inner |
| stxh | STXH | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Solution Quotation Item Text | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | IBSQITEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| ServiceDocument | crms4d_serv_i | object_id | ||
| ServiceDocumentItem | crms4d_serv_i | number_int | ||
| Language | stxh | tdspras | ||
| TextObjectType | stxh | tdid | ||
| PlainLongText |
@EndUserText.label: 'Solution Quotation Item Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog: {
sqlViewName: 'IBSQITEXT',
compiler.compareFilter: true,
preserveKey: true
}
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@AccessControl: {
authorizationCheck: #NOT_ALLOWED,
personalData.blocking: #('TRANSACTIONAL_DATA')
}
@ObjectModel: {
usageType: {
dataClass: #TRANSACTIONAL,
serviceQuality: #C,
sizeCategory: #XL
}
}
//@Analytics.dataCategory: #DIMENSION
@Metadata.ignorePropagatedAnnotations: true
define view I_BusSolnQuotationItemText
as select from stxh as STXH
inner join crms4d_serv_i as crms4d_serv_i on stxh.tdname = bintohex(
crms4d_serv_i.item_guid
)
{
crms4d_serv_i.object_id as ServiceDocument,
crms4d_serv_i.number_int as ServiceDocumentItem,
stxh.tdspras as Language,
stxh.tdid as TextObjectType,
cast( '' as abap.char(150) ) as PlainLongText
}
where
crms4d_serv_i.objtype_h = 'BUS2000116'
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