A_BusinessSolutionOrderText
Header Text
A_BusinessSolutionOrderText is a Composite CDS View that provides data about "Header Text" in SAP S/4HANA. It reads from 1 data source (I_ServiceDocumentLongText) and exposes 5 fields with key fields BusinessSolutionOrder, Language, TextObjectType. It has 1 association to related views. Part of development package ODATA_CRMS4_SOLUTIONORDER.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ServiceDocumentLongText | BusinessSolutionOrderText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | A_BusinessSolutionOrder | _BusinessSolutionOrder | $projection.BusinessSolutionOrder = _BusinessSolutionOrder.BusinessSolutionOrder |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Header Text | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | ABSOTXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| ObjectModel.createEnabled | true | view | |
| ObjectModel.updateEnabled | true | view | |
| ObjectModel.deleteEnabled | true | 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 |
|---|---|---|---|---|
| KEY | BusinessSolutionOrder | I_ServiceDocumentLongText | ServiceDocument | |
| KEY | Language | Language | ||
| KEY | TextObjectType | TextObjectType | ||
| PlainLongText | ServiceDocumentLongText | |||
| _BusinessSolutionOrder | _BusinessSolutionOrder |
@EndUserText.label: 'Header Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog: {
sqlViewName: 'ABSOTXT',
compiler.compareFilter: true
}
@VDM: {
viewType: #COMPOSITE,
lifecycle.contract.type: #PUBLIC_REMOTE_API
}
@AccessControl: {
authorizationCheck: #MANDATORY,
personalData.blocking: #('TRANSACTIONAL_DATA')
}
@ObjectModel: {
createEnabled: true,
updateEnabled: true,
deleteEnabled: true,
usageType: {
dataClass: #TRANSACTIONAL,
serviceQuality: #C,
sizeCategory: #XL
}
}
@Metadata.ignorePropagatedAnnotations: true
define view A_BusinessSolutionOrderText
as select from I_ServiceDocumentLongText as BusinessSolutionOrderText
association [1..1] to A_BusinessSolutionOrder as _BusinessSolutionOrder on $projection.BusinessSolutionOrder = _BusinessSolutionOrder.BusinessSolutionOrder
{
key BusinessSolutionOrderText.ServiceDocument as BusinessSolutionOrder,
key Language,
key TextObjectType,
ServiceDocumentLongText as PlainLongText,
_BusinessSolutionOrder
}
where BusinessSolutionOrderText.ServiceObjectType = 'BUS2000172'
and BusinessSolutionOrderText.ServiceDocumentItem = '000000'
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