P_Fqmbankstatement
P_Fqmbankstatement is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (febep, febko) and exposes 11 fields.
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.private | true | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | PFQMBS | view |
Fields (11)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| BankStatementApplication | febko | anwnd | ||
| BankStatementSendingBank | febko | absnd | ||
| BankStatementInternalID | febko | azidt | ||
| BankStatementShortID | febko | kukey | ||
| BankStatementDate | febko | azdat | ||
| BankStatementInputType | febko | efart | ||
| PaymentTransactionTypeGroup | febko | vgtyp | ||
| BankStatementItem | febep | esnum | ||
| DocumentReferenceID | febep | xblnr | ||
| PaymentTransaction | febep | vorgc | ||
| PaymentTransactionText | febep | vgext |
@VDM.private: true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'PFQMBS'
define view P_Fqmbankstatement as select from febep
inner join febko on febep.kukey = febko.kukey
{
febko.anwnd as BankStatementApplication,
febko.absnd as BankStatementSendingBank,
febko.azidt as BankStatementInternalID,
febko.kukey as BankStatementShortID,
febko.azdat as BankStatementDate,
febko.efart as BankStatementInputType,
febko.vgtyp as PaymentTransactionTypeGroup,
febep.esnum as BankStatementItem,
febep.xblnr as DocumentReferenceID,
febep.vorgc as PaymentTransaction,
febep.vgext as PaymentTransactionText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FEBEP",
"FEBKO"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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