I_IHBAccountClosureText
IHB Account Closure Long Text
I_IHBAccountClosureText is a Composite CDS View that provides data about "IHB Account Closure Long Text" in SAP S/4HANA. It reads from 2 data sources (I_TextObject, I_IHBAccount) and exposes 9 fields with key fields IHBAccountUUID, Language. It has 2 associations to related views.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_TextObject | _TextObjectInSessionLanguage | inner |
| I_IHBAccount | I_IHBAccount | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | _Language.Language = $projection.Language |
| [0..1] | I_TextObjectPlainLongText | _TextObjectPlainLongText | _TextObjectPlainLongText.TextObjectKey = $projection.IHBAccountReferenceUUIDChar and _TextObjectPlainLongText.TextObjectType = 'LTXT' and _TextObjectPlainLongText.TextObjectCategory = '/PF1/AC_CL' and _TextObjectPlainLongText.Language = $projection.Language |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ACCTCLOSURETXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | IHB Account Closure Long Text | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #COMPOSITE | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | IHBAccountUUID | I_IHBAccount | IHBAccountUUID | |
| KEY | Language | I_TextObject | Language | |
| IHBAccountReferenceUUIDChar | I_IHBAccount | IHBAccountReferenceUUIDChar | ||
| TextObjectKey | I_TextObject | TextObjectKey | ||
| TextObjectCategory | ||||
| TextObjectType | ||||
| IHBAccountClosureLongText | _TextObjectPlainLongText | PlainLongText | ||
| _Language | _Language | |||
| _TextObjectPlainLongText | _TextObjectPlainLongText |
@AbapCatalog.sqlViewName: 'ACCTCLOSURETXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'IHB Account Closure Long Text'
@ObjectModel.usageType: {serviceQuality: #C, sizeCategory: #XL, dataClass: #MIXED}
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #COMPOSITE
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_IHBAccountClosureText as select from I_IHBAccount
inner join I_TextObject as _TextObjectInSessionLanguage on _TextObjectInSessionLanguage.TextObjectKey = I_IHBAccount.IHBAccountReferenceUUIDChar
and _TextObjectInSessionLanguage.TextObjectType = 'LTXT'
and _TextObjectInSessionLanguage.TextObjectCategory = '/PF1/AC_CL'
and _TextObjectInSessionLanguage.Language = $session.system_language
association [0..1] to I_Language as _Language on _Language.Language = $projection.Language
association [0..1] to I_TextObjectPlainLongText as _TextObjectPlainLongText on _TextObjectPlainLongText.TextObjectKey = $projection.IHBAccountReferenceUUIDChar
and _TextObjectPlainLongText.TextObjectType = 'LTXT'
and _TextObjectPlainLongText.TextObjectCategory = '/PF1/AC_CL'
and _TextObjectPlainLongText.Language = $projection.Language
{
key I_IHBAccount.IHBAccountUUID,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key _TextObjectInSessionLanguage.Language as Language,
I_IHBAccount.IHBAccountReferenceUUIDChar,
_TextObjectInSessionLanguage.TextObjectKey as TextObjectKey,
cast( '/PF1/AC_CL' as tdobject ) as TextObjectCategory,
cast( 'LTXT' as tdid preserving type ) as TextObjectType,
_TextObjectPlainLongText.PlainLongText as IHBAccountClosureLongText,
_Language,
_TextObjectPlainLongText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_IHBACCOUNT",
"I_TEXTOBJECT",
"I_TEXTOBJECTPLAINLONGTEXT"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_TEXTOBJECTPLAINLONGTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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