I_ReturnsFollowUpActivityText
Logistical Follow-Up Activities for Customer Returns - Text
I_ReturnsFollowUpActivityText is a Basic CDS View that provides data about "Logistical Follow-Up Activities for Customer Returns - Text" in SAP S/4HANA. It reads from 1 data source (msr_i_code_t) and exposes 5 fields with key fields ReturnsFollowUpActivity, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| msr_i_code_t | FollowUpDefault | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| Analytics.technicalName | IRETFUCODETXT | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Logistical Follow-Up Activities for Customer Returns - Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.representativeKey | ReturnsFollowUpActivity | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ReturnsFollowUpActivity | msr_i_code_t | fu_code | |
| KEY | Language | msr_i_code_t | spras | |
| ReturnsFollowUpActivityDesc | ||||
| _FollowUpActivity | _FollowUpActivity | |||
| _Language | _Language |
@AbapCatalog.viewEnhancementCategory : [ #NONE]
@Analytics.technicalName : 'IRETFUCODETXT'
@AccessControl.authorizationCheck : #NOT_REQUIRED
@EndUserText.label : 'Logistical Follow-Up Activities for Customer Returns - Text'
@Metadata.ignorePropagatedAnnotations : true
@ObjectModel.usageType : {
serviceQuality : #A,
sizeCategory : #S,
dataClass : #CUSTOMIZING
}
@ObjectModel.representativeKey : 'ReturnsFollowUpActivity'
@ObjectModel.dataCategory : #TEXT
@ObjectModel.modelingPattern : #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities : [
#LANGUAGE_DEPENDENT_TEXT,
#SQL_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET,
#CDS_MODELING_DATA_SOURCE,
#EXTRACTION_DATA_SOURCE
]
@Analytics.dataExtraction.enabled: true
@VDM.viewType : #BASIC
@VDM.lifecycle.contract.type : #PUBLIC_LOCAL_API
define view entity I_ReturnsFollowUpActivityText
as select from msr_i_code_t as FollowUpDefault
left outer to one join msr_c_code_t as FollowUpCustomerSpecific on FollowUpDefault.fu_code = FollowUpCustomerSpecific.fu_code
and FollowUpDefault.spras = FollowUpCustomerSpecific.spras
association[0..1] to I_ReturnsFollowUpActivity as _FollowUpActivity on $projection.ReturnsFollowUpActivity = _FollowUpActivity.ReturnsFollowUpActivity
association[0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association : '_FollowUpActivity'
key FollowUpDefault.fu_code as ReturnsFollowUpActivity,
@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 ReturnsFollowUpActivityDesc,
_FollowUpActivity,
_Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"MSR_C_CODE_T",
"MSR_I_CODE_T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_RETURNSFOLLOWUPACTIVITY"
],
"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