I_RO_SAFTPurInvoiceItemAmount
RO SAFT Purchase Invoice Item Amount
I_RO_SAFTPurInvoiceItemAmount is a Basic CDS View that provides data about "RO SAFT Purchase Invoice Item Amount" in SAP S/4HANA. It reads from 1 data source (bseg) and exposes 8 fields.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| bseg | bseg | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IROSAFTPURINAMT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| EndUserText.label | RO SAFT Purchase Invoice Item Amount | view |
@AbapCatalog.sqlViewName: 'IROSAFTPURINAMT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@EndUserText.label: 'RO SAFT Purchase Invoice Item Amount'
define view I_RO_SAFTPurInvoiceItemAmount as select from bseg
join bkpf
on bseg.bukrs = bkpf.bukrs
and bseg.belnr = bkpf.belnr
and bseg.gjahr = bkpf.gjahr
{
bseg.bukrs as CompanyCode,
bseg.belnr as AccountingDocument,
bseg.gjahr as FiscalYear,
bseg.buzei as AccountingDocumentItem,
bseg.dmbtr as TransactionAmountInLocalCrcy,//Amount,
bkpf.waers as TransactionCurrency,//CurrencyCode,
bseg.wrbtr as InvoiceAmountInInvoiceDocCrcy,//CurrencyAmount,
//bkpf.kursf as ExchangeRate
cast(round(bkpf.kursf, 4) as saft_ro_exchange_rate) as ExchangeRate
}
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