I_SrvcDocAppointmentTypeText
Date Type of Service Transaction - Text
I_SrvcDocAppointmentTypeText is a Basic CDS View that provides data about "Date Type of Service Transaction - Text" in SAP S/4HANA. It reads from 1 data source (scapttxt) and exposes 5 fields with key fields SrvcDocAppointmentType, LanguageCode. It has 2 associations to related views. Part of development package CRMS4_REPORT.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| scapttxt | scapttxt | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_SrvcDocAppointmentType | _SrvcDocAppointmentType | $projection.SrvcDocAppointmentType = _SrvcDocAppointmentType.SrvcDocAppointmentType |
| [0..1] | I_Language | _Language | $projection.LanguageCode = _Language.Language |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Date Type of Service Transaction - Text | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | ISRVDOCDDATXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | SrvcDocAppointmentType | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SrvcDocAppointmentType | appt_type | ||
| KEY | LanguageCode | langu | ||
| SrvcDocAppointmentTypeText | txt_long | |||
| _Language | _Language | |||
| _SrvcDocAppointmentType | _SrvcDocAppointmentType |
@EndUserText.label: 'Date Type of Service Transaction - Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog: {
sqlViewName: 'ISRVDOCDDATXT',
compiler.compareFilter: true,
preserveKey: true
}
@ObjectModel.supportedCapabilities: [#CDS_MODELING_ASSOCIATION_TARGET,
#CDS_MODELING_DATA_SOURCE,
#LANGUAGE_DEPENDENT_TEXT,
// #SEARCHABLE_ENTITY,
#SQL_DATA_SOURCE]
@ObjectModel: {
usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING },
dataCategory: #TEXT
}
@ObjectModel.representativeKey: 'SrvcDocAppointmentType'
@Metadata.ignorePropagatedAnnotations: true
define view I_SrvcDocAppointmentTypeText as select from scapttxt
association [1..1] to I_SrvcDocAppointmentType as _SrvcDocAppointmentType on $projection.SrvcDocAppointmentType = _SrvcDocAppointmentType.SrvcDocAppointmentType
association [0..1] to I_Language as _Language on $projection.LanguageCode = _Language.Language
{
@ObjectModel.foreignKey.association: '_SrvcDocAppointmentType'
key appt_type as SrvcDocAppointmentType,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key langu as LanguageCode,
@Semantics.text:true
txt_long as SrvcDocAppointmentTypeText,
//Associations
_Language,
_SrvcDocAppointmentType
}
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