R_BusSolnOrdItmAppointmentTP

DDL: R_BUSSOLNORDITMAPPOINTMENTTP Type: view_entity TRANSACTIONAL

Business Solution Order Item Appointment - TP

R_BusSolnOrdItmAppointmentTP is a Transactional CDS View that provides data about "Business Solution Order Item Appointment - TP" in SAP S/4HANA. It reads from 2 data sources (R_BusinessSolutionOrderItemTP, I_SrvcDocAppointment) and exposes 7 fields with key fields BusinessSolutionOrder, BusinessSolutionOrderItem, SrvcDocAppointmentType. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
R_BusinessSolutionOrderItemTP BusinessSolutionOrderItem inner
I_SrvcDocAppointment ServiceAppointment from

Associations (1)

CardinalityTargetAliasCondition
[1..1] R_BusinessSolutionOrderTP _BusinessSolutionOrderTP $projection.BusinessSolutionOrder = _BusinessSolutionOrderTP.BusinessSolutionOrder

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
EndUserText.label Business Solution Order Item Appointment - TP view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY BusinessSolutionOrder R_BusinessSolutionOrderItemTP BusinessSolutionOrder
KEY BusinessSolutionOrderItem R_BusinessSolutionOrderItemTP BusinessSolutionOrderItem
KEY SrvcDocAppointmentType I_SrvcDocAppointment SrvcDocAppointmentType
SrvcDocApptStartDateTime I_SrvcDocAppointment SrvcDocApptStartDateTime
SrvcDocApptEndDateTime I_SrvcDocAppointment SrvcDocApptEndDateTime
_BusinessSolutionOrderItemTP _BusinessSolutionOrderItemTP
_BusinessSolutionOrderTP _BusinessSolutionOrderTP
@AccessControl: {
  authorizationCheck: #CHECK,
  personalData.blocking: #('TRANSACTIONAL_DATA')
}
@VDM: {
  viewType: #TRANSACTIONAL,
  lifecycle.contract.type: #SAP_INTERNAL_API
}

@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: {
   usageType: {
     dataClass:      #TRANSACTIONAL,
     serviceQuality: #C,
     sizeCategory:   #L
   }
}

@EndUserText.label: 'Business Solution Order Item Appointment - TP'

define view entity R_BusSolnOrdItmAppointmentTP 
as select from I_SrvcDocAppointment  as ServiceAppointment 
 inner join   R_BusinessSolutionOrderItemTP  as BusinessSolutionOrderItem on ServiceAppointment.SrvcMgmtObjectUUID = BusinessSolutionOrderItem.SrvcDocItmApptRefObjectUUID      
  
 association to parent R_BusinessSolutionOrderItemTP as _BusinessSolutionOrderItemTP on  $projection.BusinessSolutionOrder     = _BusinessSolutionOrderItemTP.BusinessSolutionOrder
                                                                                      and $projection.BusinessSolutionOrderItem = _BusinessSolutionOrderItemTP.BusinessSolutionOrderItem 
 
 association [1..1] to R_BusinessSolutionOrderTP     as _BusinessSolutionOrderTP     on  $projection.BusinessSolutionOrder     = _BusinessSolutionOrderTP.BusinessSolutionOrder
                                                                                         
  {
  
  key BusinessSolutionOrderItem.BusinessSolutionOrder         as BusinessSolutionOrder,
  key BusinessSolutionOrderItem.BusinessSolutionOrderItem     as BusinessSolutionOrderItem,
  key ServiceAppointment.SrvcDocAppointmentType               as SrvcDocAppointmentType, 
    ServiceAppointment.SrvcDocApptStartDateTime             as SrvcDocApptStartDateTime,
    ServiceAppointment.SrvcDocApptEndDateTime               as SrvcDocApptEndDateTime,
    
    _BusinessSolutionOrderItemTP,
    _BusinessSolutionOrderTP
}
where  ServiceAppointment.SrvcDocApptStartDateTime is not initial 
or     ServiceAppointment.SrvcDocApptEndDateTime   is not initial
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SRVCDOCAPPOINTMENT",
"R_BUSINESSSOLUTIONORDERITEMTP"
],
"ASSOCIATED":
[
"R_BUSINESSSOLUTIONORDERITEMTP",
"R_BUSINESSSOLUTIONORDERTP"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/