I_ChmlCmplncMatlAssgmtTP

DDL: I_CHMLCMPLNCMATLASSGMTTP Type: view TRANSACTIONAL

Chemical Compliance Material Assignment

I_ChmlCmplncMatlAssgmtTP is a Transactional CDS View that provides data about "Chemical Compliance Material Assignment" in SAP S/4HANA. It reads from 1 data source (I_ChmlCmplncMatlAssgmt) and exposes 10 fields with key field ChmlCmplncMatlAssgmtUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ChmlCmplncMatlAssgmt I_ChmlCmplncMatlAssgmt from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_ChmlCmplncInfoTP _ChmlCmplncInfo _ChmlCmplncInfo.ChmlCmplncInfoUUID = $projection.ChmlCmplncInfoUUID

Annotations (17)

NameValueLevelField
EndUserText.label Chemical Compliance Material Assignment view
AbapCatalog.sqlViewName ICCMATLASSGMTTP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK 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.writeDraftPersistence ehfndw_cci_mat view
ObjectModel.writeActivePersistence ehfndv_cci_mat view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #B view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY ChmlCmplncMatlAssgmtUUID ChmlCmplncMatlAssgmtUUID
ChmlCmplncInfoUUID ChmlCmplncInfoUUID
CreationUTCDateTime CreationUTCDateTime
CreatedByUser CreatedByUser
LastChangeUTCDateTime LastChangeUTCDateTime
LastChangedByUser LastChangedByUser
Material Material
MatlAssgmtIsPrimary MatlAssgmtIsPrimary
_ChmlCmplncInfo _ChmlCmplncInfo
_Product _Product
@EndUserText.label: 'Chemical Compliance Material Assignment'

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

@AccessControl:
{
  authorizationCheck: #CHECK
}

--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,
  writeDraftPersistence: 'ehfndw_cci_mat',
  writeActivePersistence: 'ehfndv_cci_mat',
  semanticKey:  [ 'ChmlCmplncMatlAssgmtUUID' ],
  usageType:
  {
    dataClass: #MASTER,
    sizeCategory: #L,
    serviceQuality: #B
  }
}
define view I_ChmlCmplncMatlAssgmtTP
  as select from I_ChmlCmplncMatlAssgmt
  association [1..1] to I_ChmlCmplncInfoTP as _ChmlCmplncInfo on _ChmlCmplncInfo.ChmlCmplncInfoUUID = $projection.ChmlCmplncInfoUUID
{
  key ChmlCmplncMatlAssgmtUUID,
      @ObjectModel.mandatory: true
      ChmlCmplncInfoUUID,     
      CreationUTCDateTime,
      CreatedByUser,
      LastChangeUTCDateTime,
      LastChangedByUser,

      @ObjectModel.mandatory: true
      Material,
      MatlAssgmtIsPrimary,

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