v_feb_fuzzy_view
v_feb_fuzzy_view is a CDS View in SAP S/4HANA. It reads from 1 data source (bkpf).
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| bkpf | bkpf | inner |
Annotations (2)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientDependent | view | ||
| AbapCatalog.sqlViewName | V_FEB_FUZZY | view |
@ClientDependent: ''
@AbapCatalog.sqlViewName: 'V_FEB_FUZZY'
// Search view for bank statement post-processing:
// provide selected BSEG / BKPF columns in which the user
// lets the system search for text or number fragments
// from the note-to-payee (bank statement memo line)
define view v_feb_fuzzy_view
as
select
bseg.bukrs,
bseg.belnr,
bseg.gjahr,
bseg.buzei,
bkpf.xblnr,
bseg.koart,
bkpf.bktxt,
bseg.sgtxt,
bseg.kunnr,
bseg.lifnr,
bseg.rebzg,
bseg.augbl,
bseg.xref1,
bseg.xref2,
bseg.xref3,
bseg.zuonr,
bseg.vertn
from bseg as bseg
inner join bkpf as bkpf
on bkpf.bukrs = bseg.bukrs
and bkpf.belnr = bseg.belnr
and bkpf.gjahr = bseg.gjahr
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"BKPF",
"BSEG"
],
"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