Faa_Sil_Doc_Int
Belege, die über FI-AA integriert nachzubuchen sind
Faa_Sil_Doc_Int is a CDS View that provides data about "Belege, die über FI-AA integriert nachzubuchen sind" in SAP S/4HANA. It reads from 1 data source (bkpf) and exposes 12 fields.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| bkpf | b | inner |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | FAAV_SIL_DOC_INT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| EndUserText.label | Belege, die über FI-AA integriert nachzubuchen sind | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #P | view |
@AbapCatalog.sqlViewName: 'FAAV_SIL_DOC_INT'
@AbapCatalog.compiler.compareFilter: true
@EndUserText.label: 'Belege, die über FI-AA integriert nachzubuchen sind'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality: #P
define view Faa_Sil_Doc_Int
// select INTEGRATED DOCUMENTS
// ========================
as select distinct from Faa_Sil_Awkey as a
inner join bkpf as b
on a.rclnt = b.mandt
and a.rbukrs = b.bukrs
and a.gjahr = b.gjahr
and a.awtyp = b.awtyp
and a.awkey = b.awkey
and a.awsys = b.awsys
and b.ldgrp = ''
{ a.rclnt as rclnt,
a.rldnr as rldnr,
a.rbukrs as rbukrs,
a.gjahr as gjahr,
b.belnr as belnr,
a.awtyp as awtyp,
a.awsys as awsys,
a.awref as awref,
a.aworg as aworg,
a.awkey as awkey,
'X' as integrated,
b.ldgrp as ldgrp }
where ( a.awtyp <> 'AMDP' )
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FAA_SIL_AWKEY",
"BKPF"
],
"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