R_SetlMgmtSAPObjectType
Settlement Management SAP Object Type
R_SetlMgmtSAPObjectType is a Basic CDS View that provides data about "Settlement Management SAP Object Type" in SAP S/4HANA. It reads from 2 data sources (I_SAPObjectType_2, wlf_d_sot) and exposes 3 fields with key field SAPObjectType. It has 1 association to related views. Part of development package WLF_AIL_OBJECT_TYPE.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_SAPObjectType_2 | I_SAPObjectType_2 | inner |
| wlf_d_sot | wlf_d_sot | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | R_SetlMgmtSAPObjectTypeText | _Text | |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.dataMaintenance | #DISPLAY_ONLY | view | |
| EndUserText.label | Settlement Management SAP Object Type | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.representativeKey | SAPObjectType | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| Analytics.technicalName | RWLFSAPOBJTY | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Search.searchable | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SAPObjectType | wlf_d_sot | bo_type | |
| SAPObjectTypeInUppercase | I_SAPObjectType_2 | SAPObjectTypeInUppercase | ||
| _Text | _Text |
@AbapCatalog: {
dataMaintenance: #DISPLAY_ONLY
}
@EndUserText.label: 'Settlement Management SAP Object Type'
@AccessControl: {
authorizationCheck: #NOT_REQUIRED
}
@ObjectModel: {
dataCategory: #VALUE_HELP,
representativeKey: 'SAPObjectType',
supportedCapabilities: [#VALUE_HELP_PROVIDER,
#SQL_DATA_SOURCE,
#CDS_MODELING_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET],
usageType.serviceQuality: #A,
usageType.dataClass: #META,
usageType.sizeCategory: #S,
resultSet.sizeCategory: #XS
}
@Analytics.technicalName: 'RWLFSAPOBJTY'
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #SAP_INTERNAL_API
}
@Metadata: {
ignorePropagatedAnnotations: true
}
@Search.searchable: true
define root view entity R_SetlMgmtSAPObjectType
as select from wlf_d_sot
inner join I_SAPObjectType_2 on wlf_d_sot.ront_name = I_SAPObjectType_2.SAPObjectTypeInUppercase
composition [0..*] of R_SetlMgmtSAPObjectTypeText as _Text
{
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
key wlf_d_sot.bo_type as SAPObjectType,
@Consumption.hidden: true
I_SAPObjectType_2.SAPObjectTypeInUppercase as SAPObjectTypeInUppercase,
/* Associations */
_Text
}
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