I_ChmlCmplncReqMktTP

DDL: I_CHMLCMPLNCREQMKTTP Type: view TRANSACTIONAL Package: EHFND_BO_CRQ

Requested Market of a Chemical Compliance Request

I_ChmlCmplncReqMktTP is a Transactional CDS View that provides data about "Requested Market of a Chemical Compliance Request" in SAP S/4HANA. It reads from 1 data source (I_ChmlCmplncReqMkt) and exposes 14 fields. It has 1 association to related views. Part of development package EHFND_BO_CRQ.

Data Sources (1)

SourceAliasJoin Type
I_ChmlCmplncReqMkt I_ChmlCmplncReqMkt from

Associations (1)

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

Annotations (17)

NameValueLevelField
EndUserText.label Requested Market of a Chemical Compliance Request view
AbapCatalog.sqlViewName ICRQMREQTP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey 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.writeActivePersistence EHFNDV_CRQ_MREQ view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #B view

Fields (14)

KeyFieldSource TableSource FieldDescription
UUIDofcompositionkeyChmlCmplncReqMktUUID
ChmlCmplncRequestUUID ChmlCmplncRequestUUID
CreationUTCDateTime CreationUTCDateTime
CreatedByUser CreatedByUser
LastChangeUTCDateTime LastChangeUTCDateTime
LastChangedByUser LastChangedByUser
ChmlCmplncProdnIsReqd ChmlCmplncProdnIsReqd
ChmlCmplncSalesIsReqd ChmlCmplncSalesIsReqd
Country Country
ChmlCmplncReqChgType ChmlCmplncReqChgType
_ChmlCmplncReq _ChmlCmplncReq
_CreatedByUser _CreatedByUser
_LastChangedByUser _LastChangedByUser
_Country _Country
@EndUserText.label: 'Requested Market of a Chemical Compliance Request'
@AbapCatalog:
{
 sqlViewName: 'ICRQMREQTP',
 compiler.compareFilter: true,
 preserveKey: true
}

@AccessControl:
{
  authorizationCheck: #MANDATORY,
  privilegedAssociations: ['_CreatedByUser','_LastChangedByUser']
}
--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,
  writeActivePersistence: 'EHFNDV_CRQ_MREQ',
  createEnabled: true,
  updateEnabled: true,
  deleteEnabled: true,
  semanticKey:  [ 'ChmlCmplncRequestUUID' ],

  usageType:
  {
    dataClass: #MASTER,
    sizeCategory: #L,
    serviceQuality: #B
  }
}


define view I_ChmlCmplncReqMktTP
  as select from I_ChmlCmplncReqMkt

  association [1..1] to I_ChmlCmplncReqTP as _ChmlCmplncReq on $projection.ChmlCmplncRequestUUID = _ChmlCmplncReq.ChmlCmplncRequestUUID

{
      --UUID of composition
      @ObjectModel.mandatory: true
  key ChmlCmplncReqMktUUID,

      @ObjectModel.mandatory: true
      ChmlCmplncRequestUUID,

      CreationUTCDateTime,
      CreatedByUser,
      LastChangeUTCDateTime,
      LastChangedByUser,

      ChmlCmplncProdnIsReqd,
      ChmlCmplncSalesIsReqd,
 
      @ObjectModel.mandatory: true
      Country,

      ChmlCmplncReqChgType,
      
      /* Associations */
      @ObjectModel.association.type:  [#TO_COMPOSITION_ROOT, #TO_COMPOSITION_PARENT ]
      _ChmlCmplncReq,
      _CreatedByUser,
      _LastChangedByUser,
      _Country
}