I_SecurityClassFundTypeText
Security Class Fund Type - Text
I_SecurityClassFundTypeText is a Basic CDS View that provides data about "Security Class Fund Type - Text" in SAP S/4HANA. It reads from 1 data source (tw21t) and exposes 6 fields with key fields Language, SecurityClassFundType. It has 2 associations to related views. Part of development package FTR_SECURITIES_CORE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tw21t | tw21t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_SecurityClassFundType | _SecurityClassFundType | $projection.SecurityClassFundType = _SecurityClassFundType.SecurityClassFundType |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.buffering.status | #NOT_ALLOWED | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.sqlViewName | ISCRTYFDTYPTXT | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Security Class Fund Type - Text | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | SecurityClassFundType | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #BASIC | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | spras | ||
| KEY | SecurityClassFundType | sfoty | ||
| SecurityClassFundTypeName | ||||
| ScrtyClassFundTypeDescription | ||||
| _SecurityClassFundType | _SecurityClassFundType | |||
| _Language | _Language |
// harmonized annotations
@AbapCatalog.buffering.status: #NOT_ALLOWED
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true // only if required by ATC check
@AbapCatalog.sqlViewName: 'ISCRTYFDTYPTXT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Security Class Fund Type - Text'
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET]
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'SecurityClassFundType'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.resultSet.sizeCategory:#XS
@Metadata.ignorePropagatedAnnotations: true // For C1-Release
@VDM.viewType: #BASIC
define view I_SecurityClassFundTypeText
as select from tw21t
association [0..1] to I_SecurityClassFundType as _SecurityClassFundType on $projection.SecurityClassFundType = _SecurityClassFundType.SecurityClassFundType
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key spras as Language,
key sfoty as SecurityClassFundType,
@Semantics.text: true
cast(xkurzbez as ftr_gen_seccls_fund_type_sname preserving type ) as SecurityClassFundTypeName,
@Semantics.text: true
cast(xlangbez as ftr_gen_seccls_fund_type_lname preserving type ) as ScrtyClassFundTypeDescription,
_SecurityClassFundType,
_Language
}
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