I_ChmlCmplncApplAssgmtTP

DDL: I_CHMLCMPLNCAPPLASSGMTTP Type: view TRANSACTIONAL Package: EHFND_BO_CCI

Chemical Compliance Application Assignment

I_ChmlCmplncApplAssgmtTP is a Transactional CDS View that provides data about "Chemical Compliance Application Assignment" in SAP S/4HANA. It reads from 1 data source (I_ChmlCmplncApplAssgmt) and exposes 9 fields with key field ChmlCmplncApplUUID. It has 1 association to related views. Part of development package EHFND_BO_CCI.

Data Sources (1)

SourceAliasJoin Type
I_ChmlCmplncApplAssgmt I_ChmlCmplncApplAssgmt from

Associations (1)

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

Annotations (17)

NameValueLevelField
EndUserText.label Chemical Compliance Application Assignment view
AbapCatalog.sqlViewName ICCAPPLASSGMTTP 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_appl view
ObjectModel.writeActivePersistence ehfndv_cci_appl view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #B view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY ChmlCmplncApplUUID ChmlCmplncApplUUID
ChmlCmplncInfoUUID ChmlCmplncInfoUUID
CreatedByUser CreatedByUser
CreationUTCDateTime CreationUTCDateTime
LastChangeUTCDateTime LastChangeUTCDateTime
LastChangedByUser LastChangedByUser
ChmlCmplncApplication ChmlCmplncApplication
_ChmlCmplncInfo _ChmlCmplncInfo
_Application _Application
@EndUserText.label: 'Chemical Compliance Application Assignment'

@AbapCatalog:
{
  sqlViewName: 'ICCAPPLASSGMTTP',
  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_appl',
  writeActivePersistence: 'ehfndv_cci_appl',
  semanticKey:  [ 'ChmlCmplncApplUUID' ],
  usageType:
  {
    dataClass: #MASTER,
    sizeCategory: #L,
    serviceQuality: #B
  }
}
define view I_ChmlCmplncApplAssgmtTP  
  as select from I_ChmlCmplncApplAssgmt 
  association [1..1] to I_ChmlCmplncInfoTP as _ChmlCmplncInfo on _ChmlCmplncInfo.ChmlCmplncInfoUUID = $projection.ChmlCmplncInfoUUID
  {
    key ChmlCmplncApplUUID, 
    @ObjectModel.mandatory: true    
    ChmlCmplncInfoUUID, 
    CreatedByUser,
    CreationUTCDateTime,  
    LastChangeUTCDateTime, 
    LastChangedByUser,
    @ObjectModel.mandatory: true
    ChmlCmplncApplication,    

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