I_ChmlCmplncReqPlntTP

DDL: I_CHMLCMPLNCREQPLNTTP Type: view TRANSACTIONAL Package: EHFND_BO_CRQ

Chemical Compliance Request Plant

I_ChmlCmplncReqPlntTP is a Transactional CDS View that provides data about "Chemical Compliance Request Plant" in SAP S/4HANA. It reads from 1 data source (I_ChmlCmplncReqPlnt) and exposes 10 fields with key field ChmlCmplncReqPlntUUID. It has 1 association to related views. Part of development package EHFND_BO_CRQ.

Data Sources (1)

SourceAliasJoin Type
I_ChmlCmplncReqPlnt I_ChmlCmplncReqPlnt from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_ChmlCmplncReqTP _ChmlCmplncReq $projection.ChmlCmplncRequestUUID = _ChmlCmplncReq.ChmlCmplncRequestUUID

Annotations (16)

NameValueLevelField
EndUserText.label Chemical Compliance Request Plant view
AbapCatalog.sqlViewName ICRQPLANTTP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.modelCategory #BUSINESS_OBJECT view
ObjectModel.transactionalProcessingEnabled true view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.writeActivePersistence ehfndv_crq_plant view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #B view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY ChmlCmplncReqPlntUUID ChmlCmplncReqPlntUUID
ChmlCmplncRequestUUID ChmlCmplncRequestUUID
CreatedByUser CreatedByUser
CreationUTCDateTime CreationUTCDateTime
LastChangeUTCDateTime LastChangeUTCDateTime
LastChangedByUser LastChangedByUser
ActivePlant ActivePlant
ChmlCmplncReqChgType ChmlCmplncReqChgType
_Plant _Plant
_ChmlCmplncReq _ChmlCmplncReq
@EndUserText.label: 'Chemical Compliance Request Plant'

@AbapCatalog:
{
  sqlViewName: 'ICRQPLANTTP',
  compiler.compareFilter: true
}

@AccessControl:
{
  authorizationCheck: #MANDATORY
}

--Client Handling of the view
@ClientHandling.algorithm: #SESSION_VARIABLE

@VDM.viewType: #TRANSACTIONAL
@VDM.lifecycle.contract.type:#SAP_INTERNAL_API

@ObjectModel:
{
  modelCategory: #BUSINESS_OBJECT,
  transactionalProcessingEnabled: true,
  createEnabled: true,
  updateEnabled: true,
  deleteEnabled: true,
  writeActivePersistence: 'ehfndv_crq_plant',
  semanticKey:  [ 'ChmlCmplncReqPlntUUID' ],
  usageType:
  {
    dataClass: #MASTER,
    sizeCategory: #L,
    serviceQuality: #B
  }
}
define view I_ChmlCmplncReqPlntTP
  as select from I_ChmlCmplncReqPlnt
  association [1..1] to I_ChmlCmplncReqTP as _ChmlCmplncReq on $projection.ChmlCmplncRequestUUID = _ChmlCmplncReq.ChmlCmplncRequestUUID
{
  key ChmlCmplncReqPlntUUID,
      @ObjectModel.mandatory: true
      ChmlCmplncRequestUUID,
      CreatedByUser,
      CreationUTCDateTime,
      LastChangeUTCDateTime,
      LastChangedByUser,
      @ObjectModel.mandatory: true
      ActivePlant,

      ChmlCmplncReqChgType,

      /* Associations */
      _Plant,
      
      @ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT]
      _ChmlCmplncReq
}