Fclm_Bam_Doc_Chara
Characteristics of Bank Account Document
Fclm_Bam_Doc_Chara is a CDS View that provides data about "Characteristics of Bank Account Document" in SAP S/4HANA. It reads from 3 data sources (klah, ksml, cabn) and exposes 8 fields with key fields mandt, clint, posnr, adzhl. Part of development package FCLM_BAM.
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | VFCLMDCHARA | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Characteristics of Bank Account Document | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #B | view |
@AbapCatalog.sqlViewName: 'VFCLMDCHARA'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Characteristics of Bank Account Document'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #B
define view Fclm_Bam_Doc_Chara as select from klah as a
inner join ksml as b on a.mandt = b.mandt and a.clint = b.clint
inner join cabn as c on a.mandt = c.mandt and b.imerk = c.atinn and b.adzhl = c.adzhl{
key a.mandt,
key b.clint,
key b.posnr,
key b.adzhl,
a.class,
a.klart,
b.imerk,
c.atnam
}
where a.class like 'SAP_FCLM%'
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