A_CustMgmtTaskText

DDL: A_CUSTMGMTTASKTEXT Type: view COMPOSITE

Customer Management Task Text

A_CustMgmtTaskText is a Composite CDS View that provides data about "Customer Management Task Text" in SAP S/4HANA. It reads from 1 data source (P_CustMgmtActivityText) and exposes 5 fields with key fields CustMgmtTask, TextObjectType, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
P_CustMgmtActivityText P_CustMgmtActivityText from

Associations (1)

CardinalityTargetAliasCondition
[1] A_CustMgmtTask _CustMgmtTask $projection.CustMgmtTask = _CustMgmtTask.CustMgmtTask

Annotations (15)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Customer Management Task Text view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AbapCatalog.sqlViewName ATASTTEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY CustMgmtTask CustMgmtActivity
KEY TextObjectType _Text TextObjectType
KEY Language _Text Language
PlainLongText _Text PlainLongText
_CustMgmtTask _CustMgmtTask
@ClientHandling.algorithm:#SESSION_VARIABLE
@EndUserText.label: 'Customer Management Task Text'
@VDM: {
  viewType: #COMPOSITE,
  lifecycle.contract.type: #PUBLIC_REMOTE_API
}
@AbapCatalog: {
  sqlViewName: 'ATASTTEXT',
  compiler.compareFilter: true,
  preserveKey: true
}

@AccessControl: {
  authorizationCheck: #CHECK,
  personalData.blocking: #('TRANSACTIONAL_DATA')
}
@ObjectModel: {
   createEnabled: true,
   updateEnabled: true,
   deleteEnabled: true,
   usageType: {
     dataClass:      #TRANSACTIONAL,
     serviceQuality: #B,
     sizeCategory:   #L
   }
}
@Metadata.ignorePropagatedAnnotations: true

define view A_CustMgmtTaskText 
  as select from P_CustMgmtActivityText

  association [1] to A_CustMgmtTask as _CustMgmtTask on $projection.CustMgmtTask = _CustMgmtTask.CustMgmtTask
{

  key CustMgmtActivity as CustMgmtTask,
  key _Text.TextObjectType,
  key _Text.Language,
      _Text.PlainLongText,

      //Associations

      _CustMgmtTask

}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_TEXTOBJECTPLAINLONGTEXT",
"P_CUSTMGMTACTIVITYTEXT"
],
"ASSOCIATED":
[
"A_CUSTMGMTTASK"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/