I_CollectionsProfileVH
Collections Profile Value Help
I_CollectionsProfileVH is a Composite CDS View that provides data about "Collections Profile Value Help" in SAP S/4HANA. It reads from 1 data source (I_CollectionsProfile) and exposes 3 fields with key field CollectionProfile. It is exposed through 1 OData service (UI_COLL_MD_MANAGE). It is used in 1 Fiori application: Manage Collections Master Data. Part of development package UDM_COLL_CDS.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CollectionsProfile | I_CollectionsProfile | from |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICOLLPRFVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Collections Profile Value Help | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.representativeKey | CollectionProfile | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_COLL_MD_MANAGE | UI_COLL_MD_MANAGE | V2 | C1 | NOT_TO_BE_RELEASED_STABLE |
Fiori Apps (1)
| App ID | App Name | Type | Description |
|---|---|---|---|
| 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. |
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.
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CollectionProfile | CollectionProfile | ||
| CollectionsProfileName | ||||
| _Text | _Text |
@AbapCatalog: { sqlViewName: 'ICOLLPRFVH',
compiler: { compareFilter: true },
preserveKey: true }
@AccessControl: { authorizationCheck: #NOT_REQUIRED}
@EndUserText: { label: 'Collections Profile Value Help' }
@ClientHandling: { algorithm: #SESSION_VARIABLE }
@VDM: { viewType: #COMPOSITE,
lifecycle: { contract: { type: #PUBLIC_LOCAL_API } } }
@ObjectModel: { usageType: { serviceQuality: #A,
sizeCategory: #S,
dataClass: #CUSTOMIZING },
dataCategory: #VALUE_HELP,
semanticKey: [ 'CollectionProfile' ],
representativeKey: 'CollectionProfile',
resultSet: { sizeCategory: #XS } }
@Search: { searchable: true }
@Consumption: { ranked: true }
define view I_CollectionsProfileVH
as select from I_CollectionsProfile
{
// VDM Fields
@UI: { lineItem: [ { position: 10 } ] }
@ObjectModel: { text: { element: [ 'CollectionsProfileName' ] } }
@Search: { defaultSearchElement: true,
ranking: #HIGH,
fuzzinessThreshold: 0.8 }
key CollectionProfile,
@Semantics: { text: true }
_Text[1:Language = $session.system_language].CollectionsProfileName as CollectionsProfileName,
// Exposed associations
_Text
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA