I_CmplRqApplCompText

DDL: I_CMPLRQAPPLCOMPTEXT SQL: ICRVAPPCOMPT Type: view BASIC Package: EHFND_BO_COMPLIANCE_REQ

CmplRq Application Component Text

I_CmplRqApplCompText is a Basic CDS View that provides data about "CmplRq Application Component Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields Language, CmplRqApplicationComponent. It has 2 associations to related views. Part of development package EHFND_BO_COMPLIANCE_REQ.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_CmplRqVers _CmplRqVers $projection.CmplRqApplicationComponent = _CmplRqVers.CmplRqApplicationComponent
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ICRVAPPCOMPT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label CmplRq Application Component Text view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.representativeKey CmplRqApplicationComponent view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY CmplRqApplicationComponent
CmplRqApplicationComponentName
_CmplRqVers _CmplRqVers
_Language _Language
_CmplRqApplComp _CmplRqApplComp
@AbapCatalog.sqlViewName: 'ICRVAPPCOMPT'
@AbapCatalog.compiler.compareFilter: true
// Authorization not required, CRV is customizing-like data and  shall be generally available without restriction

@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'CmplRq Application Component Text'

@VDM.viewType: #BASIC

@ObjectModel:
{
  dataCategory: #TEXT,
  usageType:
  {
    dataClass: #MASTER,
    sizeCategory: #S,
    serviceQuality: #B
  },
  representativeKey: 'CmplRqApplicationComponent'
}

// Client handling by session

@ClientHandling.algorithm: #SESSION_VARIABLE

/*----------------------------------------------------------------------------------------------------------------------
    Returns all language dependent Compliance Requirement Application Components (ENV, HSS, PMA, ...)
------------------------------------------------------------------------------------------------------------------------*/

/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ]  } */
define view I_CmplRqApplCompText
  as select from dd07t

  association        to parent I_CmplRqApplComp as _CmplRqApplComp on $projection.CmplRqApplicationComponent = _CmplRqApplComp.CmplRqApplicationComponent


  association [0..*] to I_CmplRqVers            as _CmplRqVers     on $projection.CmplRqApplicationComponent = _CmplRqVers.CmplRqApplicationComponent
  association [0..1] to I_Language              as _Language       on $projection.Language = _Language.Language
{
      @Semantics.language: true
  key cast (dd07t.ddlanguage as spras preserving type )           as Language,

  key cast ( domvalue_l as ehfnd_solution_area )                  as CmplRqApplicationComponent,

      @Semantics.text: true
      cast ( ddtext as ehfnd_crv_appl_comp_name preserving type ) as CmplRqApplicationComponentName,

      /* Associations */
      _CmplRqVers,
      _Language,
      _CmplRqApplComp
}
where
      domname  = 'EHFND_EHSM_COMPONENT'
  and as4local = 'A'