P_CollsResubmissionNote

DDL: P_COLLSRESUBMISSIONNOTE Type: view COMPOSITE

P_CollsResubmissionNote is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (I_BusinessPartnerCustomer, I_CollectionsResubmission) and exposes 3 fields with key fields ResubmissionUUID, CollectionSegment. It has 2 associations to related views.

Data Sources (2)

SourceAliasJoin Type
I_BusinessPartnerCustomer I_BusinessPartnerCustomer inner
I_CollectionsResubmission I_CollectionsResubmission from

Associations (2)

CardinalityTargetAliasCondition
[0..*] Sgbt_Nte_Cds_Cont _NoteContent $projection.ResubmissionUUID = _NoteContent.objectid and _NoteContent.objectnodetype = 'CollectionsResubmission' and _NoteContent.notetype = 'COLL_RSM_NOTE'
[0..1] I_Customer _Customer $projection.Customer = _Customer.Customer

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName PCLLSRSMNTE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
VDM.viewType #COMPOSITE view
VDM.private true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.representativeKey CollectionSegment view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ResubmissionUUID ResubmissionUUID
KEY CollectionSegment CollectionSegment
Customer Customer
@AbapCatalog: { sqlViewName: 'PCLLSRSMNTE',
                compiler: { compareFilter: true },
                preserveKey: true }
@AccessControl: { authorizationCheck: #NOT_REQUIRED,
                  personalData:       { blocking: #BLOCKED_DATA_EXCLUDED } }
@VDM: { viewType: #COMPOSITE,
        private: true }
@ClientHandling: { algorithm: #SESSION_VARIABLE }
@ObjectModel: { usageType: { serviceQuality: #C,
                             sizeCategory: #L,
                             dataClass: #TRANSACTIONAL },
                representativeKey: 'CollectionSegment' }

define view P_CollsResubmissionNote
  as select from I_CollectionsResubmission
    inner join   I_BusinessPartnerCustomer on I_CollectionsResubmission.BusinessPartner = I_BusinessPartnerCustomer.BusinessPartner

  // VDM Association

  // Notes

  association [0..*] to Sgbt_Nte_Cds_Cont as _NoteContent on  $projection.ResubmissionUUID = _NoteContent.objectid
                                                          and _NoteContent.objectnodetype  = 'CollectionsResubmission'
                                                          and _NoteContent.notetype        = 'COLL_RSM_NOTE'

  // Customer

  association [0..1] to I_Customer        as _Customer    on  $projection.Customer = _Customer.Customer

{
      //I_BusinessPartnerCustomer

  key ResubmissionUUID,
  key CollectionSegment,
      Customer,
      'sap-icon://notes' as NoteIconURL,


      'Note'             as NoteDescription,

      CreatedByUser,
      CreationDateTime,

      // Exposed Associations

      _NoteContent,
      _Customer,
      _CollectionSegment

}


where
  ResubmissionDueDate = '99991231'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_BUSINESSPARTNERCUSTOMER",
"I_COLLECTIONSRESUBMISSION"
],
"ASSOCIATED":
[
"I_COLLECTIONSEGMENT",
"I_CUSTOMER",
"SGBT_NTE_CDS_CONT"
],
"BASE":
[
"I_COLLECTIONSRESUBMISSION"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/