I_ReturnsFollowUpActivityText

DDL: I_RETURNSFOLLOWUPACTIVITYTEXT Type: view_entity BASIC Package: VDM_ARM_BASICS

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. Part of development package VDM_ARM_BASICS.

Data Sources (1)

SourceAliasJoin Type
msr_i_code_t FollowUpDefault from

Annotations (13)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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
}