I_FollowUpActivityText
Follow-Up Activity - Text
I_FollowUpActivityText is a Basic CDS View that provides data about "Follow-Up Activity - Text" in SAP S/4HANA. It reads from 1 data source (msr_i_code_t) and exposes 4 fields with key fields CustRetItmFollowUpActivity, Language. It has 3 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| msr_i_code_t | FollowUpDefault | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | msr_c_code_t | _FollowUpCustomerSpecific | $projection.CustRetItmFollowUpActivity = _FollowUpCustomerSpecific.fu_code and $projection.Language = _FollowUpCustomerSpecific.spras |
| [0..1] | I_FollowUpActivityVH | _FollowUpActivity | $projection.CustRetItmFollowUpActivity = _FollowUpActivity.CustRetItmFollowUpActivity |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFUCODETXT | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Follow-Up Activity - Text | view | |
| ObjectModel.representativeKey | CustRetItmFollowUpActivity | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| Analytics.dataExtraction.enabled | true | view | |
| ObjectModel.dataCategory | #TEXT | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CustRetItmFollowUpActivity | msr_i_code_t | fu_code | |
| KEY | Language | msr_i_code_t | spras | |
| _FollowUpActivity | _FollowUpActivity | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IFUCODETXT'
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Follow-Up Activity - Text'
@ObjectModel.representativeKey: 'CustRetItmFollowUpActivity'
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@Analytics.dataExtraction.enabled: true
@ObjectModel.dataCategory: #TEXT
define view I_FollowUpActivityText
as select from msr_i_code_t as FollowUpDefault
association [0..1] to msr_c_code_t as _FollowUpCustomerSpecific on $projection.CustRetItmFollowUpActivity = _FollowUpCustomerSpecific.fu_code
and $projection.Language = _FollowUpCustomerSpecific.spras
association [0..1] to I_FollowUpActivityVH as _FollowUpActivity on $projection.CustRetItmFollowUpActivity = _FollowUpActivity.CustRetItmFollowUpActivity
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_FollowUpActivity'
key FollowUpDefault.fu_code as CustRetItmFollowUpActivity,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key FollowUpDefault.spras as Language,
@Semantics.text: true
case when _FollowUpCustomerSpecific.fu_code_text is null or _FollowUpCustomerSpecific.fu_code_text = ''
then
FollowUpDefault.fu_code_text
else
_FollowUpCustomerSpecific.fu_code_text
end as CustRetItmFollowUpActivityDesc,
_FollowUpActivity,
_Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"MSR_C_CODE_T",
"MSR_I_CODE_T"
],
"ASSOCIATED":
[
"I_FOLLOWUPACTIVITYVH",
"I_LANGUAGE",
"MSR_C_CODE_T"
],
"BASE":
[],
"ANNO_REF":
[],
"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