C_CollectionsAccountNote

DDL: C_COLLECTIONSACCOUNTNOTE Type: view_entity CONSUMPTION Package: ODATA_PROCESS_RECEIVABLES

Collections Account Note

C_CollectionsAccountNote is a Consumption CDS View that provides data about "Collections Account Note" in SAP S/4HANA. It reads from 1 data source (I_CollectionsAccountNote) and exposes 22 fields with key fields Customer, CollectionSegment, NoteID, CustomerContactUUID, ResubmissionUUID. It is exposed through 3 OData services (UI_COLL_MD_MANAGE, UI_HOBRECEIVABLES_DISPLAY, UI_PROCESSRECEIVABLES_MANAGE). It is used in 2 Fiori applications: Manage Collections Master Data, Display Head Office Receivables. Part of development package ODATA_PROCESS_RECEIVABLES.

Data Sources (1)

SourceAliasJoin Type
I_CollectionsAccountNote I_CollectionsAccountNote projection

Annotations (10)

NameValueLevelField
EndUserText.label Collections Account Note view
ObjectModel.representativeKey NoteID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.query.implementedBy ABAP:CL_COLL_PR_NOTE_QUERY view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
VDM.viewType #CONSUMPTION view
Metadata.allowExtensions true view

OData Services (3)

ServiceBindingVersionContractRelease
UI_COLL_MD_MANAGE UI_COLL_MD_MANAGE V2 C1 NOT_TO_BE_RELEASED_STABLE
UI_HOBRECEIVABLES_DISPLAY UI_HOBRECEIVABLES_DISPLAY V2 C1 NOT_TO_BE_RELEASED_STABLE
UI_PROCESSRECEIVABLES_MANAGE UI_PROCESSRECEIVABLES_MAN V2 C1 NOT_TO_BE_RELEASED_STABLE

Fiori Apps (2)

App IDApp NameTypeDescription
F5400 Manage Collections Master Data Transactional Use this app to activate customers for Collections Management processes. For activated accounts, you can maintain Collection Groups per Collection Segments as well as assign Specialists on Collection Segment level.
F5401 Display Head Office Receivables Transactional If head office / branch relationships are used in SAP FI-AR, the work list entries in SAP Collections Management can be created on the branch level. Accordingly, only the branch related FI line items are shown on the Invoices list in the Process Receivables app. The app Head Office Receivables can be called via the button Display Head Office Receivables in the Process Receivables app. The button is only available, if such a relationship is maintained for the customer. The app provides the information on customer recevievables and related objects (dispute cases, promises to pay, resubmissions, company relationships, notes) from the perspective of the head office. Unlike the Process Receivables, the creation of new objects is not possible in this app.

Manage Collections Master Data

Business Role: Accounts Receivable Accountant

Use this app to activate customers for Collections Management processes. For activated accounts, you can maintain Collection Groups per Collection Segments as well as assign Specialists on Collection Segment level.

Display Head Office Receivables

Business Role: Accounts Receivable Accountant

If head office / branch relationships are used in SAP FI-AR, the work list entries in SAP Collections Management can be created on the branch level. Accordingly, only the branch related FI line items are shown on the Invoices list in the Process Receivables app. The app Head Office Receivables can be called via the button Display Head Office Receivables in the Process Receivables app. The button is only available, if such a relationship is maintained for the customer.The app provides the information on customer recevievables and related objects (dispute cases, promises to pay, resubmissions, company relationships, notes) from the perspective of the head office. Unlike the Process Receivables, the creation of new objects is not possible in this app.

Fields (22)

KeyFieldSource TableSource FieldDescription
KEY Customer Customer
KEY CollectionSegment CollectionSegment
KEY NoteID NoteID
KEY CustomerContactUUID CustomerContactUUID
KEY ResubmissionUUID ResubmissionUUID
ObjectKey ObjectKey
CreatedByUser CreatedByUser
CreationDateTime CreationDateTime
NoteIconURL NoteIconURL
NoteDescription NoteDescription
NoteText NoteText
MigrationStatus MigrationStatus
IsHeadOffice IsHeadOffice
UserDescription _CreatedByContactCard UserDescription
virtualFullNamead_namtext
virtualDepartmentad_dprtmnt
virtualPhoneNumbercontactcardphonenumber
virtualFaxNumbercontactcardfaxnumber
virtualDraftUUIDbobfuuid
_CollectionSegment _CollectionSegment
_Customer _Customer
_CreatedByContactCard _CreatedByContactCard
@EndUserText: { label: 'Collections Account Note' }
@ObjectModel: { representativeKey: 'NoteID',
                semanticKey:       [ 'NoteID' ],
                usageType:         { dataClass:      #TRANSACTIONAL,
                                     sizeCategory:   #L,
                                     serviceQuality: #C },
                query: { implementedBy: 'ABAP:CL_COLL_PR_NOTE_QUERY' } }
@AccessControl: { authorizationCheck: #CHECK,
                  personalData: { blocking: #BLOCKED_DATA_EXCLUDED } }
@VDM: { viewType: #CONSUMPTION,
        usage: { type: [ #TRANSACTIONAL_PROCESSING_SERVICE ] } }
@Metadata: { allowExtensions: true } 

define root view entity C_CollectionsAccountNote
  as projection on I_CollectionsAccountNote
{

          // VDM Fields

  key     Customer,
  key     CollectionSegment,
  key     NoteID,
  key     CustomerContactUUID,
  key     ResubmissionUUID,
          ObjectKey,

          @ObjectModel: { text: { element: [ 'UserDescription' ] } }
          CreatedByUser,

          CreationDateTime,
          NoteIconURL,
          NoteDescription,
          NoteText,
          MigrationStatus,
          IsHeadOffice,

          // Text Fields

          _CreatedByContactCard.UserDescription as UserDescription,

  virtual FullName          : ad_namtext,
  virtual Department        : ad_dprtmnt,
  virtual EmailAddress      : contactcardemailaddress,
  virtual PhoneNumber       : contactcardphonenumber,
  virtual MobilePhoneNumber : contactcardmobilephonenumber,
  virtual FaxNumber         : contactcardfaxnumber,
  virtual DraftUUID         : /bobf/uuid,

          // Exposed Associations

          @ObjectModel: { sort: { enabled: false },
                          filter: { enabled: false } }
          _CollectionSegment,

          @ObjectModel: { sort: { enabled: false },
                          filter: { enabled: false } }
          _Customer,

          @ObjectModel: { sort: { enabled: false },
                          filter: { enabled: false } }
          _CreatedByContactCard

}