V_PaytFrmtParamStruct
Payment Format Parameter Structure
V_PaytFrmtParamStruct is a CDS View that provides data about "Payment Format Parameter Structure" in SAP S/4HANA. It reads from 2 data sources (dd02l, dd02t) and exposes 2 fields with key field tabname. Part of development package FINS_BL_CUPM.
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Payment Format Parameter Structure | view | |
| AbapCatalog.sqlViewName | VPAYFRMTPARMSTRU | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | tabname | |||
| ddtext | ddtext |
@EndUserText.label: 'Payment Format Parameter Structure'
@AbapCatalog.sqlViewName: 'VPAYFRMTPARMSTRU'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm : #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #MASTER
@Metadata.ignorePropagatedAnnotations: true
define view V_PaytFrmtParamStruct as
select from dd02l
left outer join dd02t on dd02l.tabname = dd02t.tabname
and dd02t.ddlanguage = $session.system_language
and dd02l.as4local = dd02t.as4local
and dd02l.as4vers = dd02t.as4vers
{
key cast(dd02l.tabname as formf_fcupm preserving type) as tabname,
ddtext
}where dd02l.as4local = 'A'
and dd02l.as4vers = '0000'
and dd02l.tabclass = 'INTTAB'
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