P_ServiceConfItmRefSrvcContr

DDL: P_SERVICECONFITMREFSRVCCONTR Type: view_entity COMPOSITE

Reference Service Contract of Service Confirmation Item

P_ServiceConfItmRefSrvcContr is a Composite CDS View that provides data about "Reference Service Contract of Service Confirmation Item" in SAP S/4HANA. It reads from 1 data source (I_ServiceDocumentItemPrdcssr_2) and exposes 4 fields with key field ServiceConfirmationItemUUID.

Data Sources (1)

SourceAliasJoin Type
I_ServiceDocumentItemPrdcssr_2 I_ServiceDocumentItemPrdcssr_2 from

Annotations (9)

NameValueLevelField
EndUserText.label Reference Service Contract of Service Confirmation Item view
VDM.private true view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #NONE view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ServiceConfirmationItemUUID
ReferenceServiceContract _ServiceDocItm ServiceDocument
ReferenceServiceContractItem _ServiceDocItm ServiceDocumentItem
ServiceDocumentItemObjectType ServiceDocumentItemObjectType
@EndUserText.label: 'Reference Service Contract of Service Confirmation Item'
@VDM: {
   private: true,
  viewType: #COMPOSITE,
  lifecycle.contract.type: #NONE
}
@AccessControl: {
  authorizationCheck: #CHECK,
  personalData.blocking: #('TRANSACTIONAL_DATA')
}
@ObjectModel: {
   usageType: {
     dataClass:      #TRANSACTIONAL,
     serviceQuality: #B,
     sizeCategory:   #L
   }
}
@Metadata.ignorePropagatedAnnotations: true

/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ]  } */
define view entity P_ServiceConfItmRefSrvcContr
  as select from I_ServiceDocumentItemPrdcssr_2
{

  key hextobin(ServiceDocumentItemCharUUID) as ServiceConfirmationItemUUID,
      _ServiceDocItm.ServiceDocument        as ReferenceServiceContract,
      _ServiceDocItm.ServiceDocumentItem    as ReferenceServiceContractItem,
      
      // Added for access control

      @Consumption.hidden: true
      ServiceDocumentItemObjectType
}

where
      _ServiceDocItm.ServiceObjectType =    'BUS2000112' // Service Contract

  and ServiceDocumentItemObjectType    like 'BUS2000%'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SERVICEDOCUMENTITEMENHCD",
"I_SERVICEDOCUMENTITEMPRDCSSR_2"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/