P_DunningProcedureValueHelp
Dunning Procedure Value Help
P_DunningProcedureValueHelp is a Basic CDS View that provides data about "Dunning Procedure Value Help" in SAP S/4HANA. It reads from 2 data sources (t047a, t047t) and exposes 2 fields with key field DunningProcedure. Part of development package ODATA_CUSTOMER_LIST.
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PDUNNPROCVH | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| VDM.private | true | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view |
@AbapCatalog.sqlViewName: 'PDUNNPROCVH'
@ClientHandling.algorithm : #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@VDM.private: true
@Search.searchable: true
@Consumption.ranked: true
define view P_DunningProcedureValueHelp
as select from t047a as _DunningProcedure
left outer join t047t as _Text on _Text.mahna = _DunningProcedure.mahna
and _Text.spras = $session.system_language
{
@ObjectModel.text.element: 'DunningProcedureDescription'
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
key _DunningProcedure.mahna as DunningProcedure,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
_Text.textm as DunningProcedureDescription
}
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