FARMLVD_APAR_ACCDOC_AUTH
Rec Item Auth Check Helper View
FARMLVD_APAR_ACCDOC_AUTH is a CDS View that provides data about "Rec Item Auth Check Helper View" in SAP S/4HANA. It reads from 3 data sources (I_OperationalAcctgDocItem, FARMLVD_COMPANY, I_Customer) and exposes 13 fields with key fields CompanyCode, FiscalYear, AccountingDocument, AccountingDocumentItem.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| I_OperationalAcctgDocItem | AcctDocItm | from |
| FARMLVD_COMPANY | CompanyCtryKey | left_outer |
| I_Customer | cust | left_outer |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | FMVAPARACDOCAUTH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.buffering.status | #NOT_ALLOWED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| AbapCatalog.preserveKey | true | view | |
| EndUserText.label | Rec Item Auth Check Helper View | view |
Fields (13)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CompanyCode | I_OperationalAcctgDocItem | CompanyCode | |
| KEY | FiscalYear | I_OperationalAcctgDocItem | FiscalYear | |
| KEY | AccountingDocument | I_OperationalAcctgDocItem | AccountingDocument | |
| KEY | AccountingDocumentItem | I_OperationalAcctgDocItem | AccountingDocumentItem | |
| FinancialAccountType | I_OperationalAcctgDocItem | FinancialAccountType | ||
| PostingDate | I_OperationalAcctgDocItem | PostingDate | ||
| SpecialGLCode | I_OperationalAcctgDocItem | SpecialGLCode | ||
| BusinessArea | I_OperationalAcctgDocItem | BusinessArea | ||
| FunctionalArea | I_OperationalAcctgDocItem | FunctionalArea | ||
| CountryKey | FARMLVD_COMPANY | CountryKey | ||
| CustomerAccountGroup | I_Customer | CustomerAccountGroup | ||
| CustomerendasAccount | ||||
| ClearingAccountingDocument | I_OperationalAcctgDocItem | ClearingAccountingDocument |
@AbapCatalog.sqlViewName: 'FMVAPARACDOCAUTH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ObjectModel.usageType.sizeCategory: #XXL
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.serviceQuality: #D
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.buffering.status: #NOT_ALLOWED
@Metadata.ignorePropagatedAnnotations: true
@AbapCatalog.preserveKey:true
@EndUserText.label: 'Rec Item Auth Check Helper View'
define view FARMLVD_APAR_ACCDOC_AUTH
as select from I_OperationalAcctgDocItem as AcctDocItm
left outer join I_Customer as cust
on AcctDocItm.Customer = cust.Customer
left outer join FARMLVD_COMPANY as CompanyCtryKey
on AcctDocItm.CompanyCode = CompanyCtryKey.CompanyCode {
key AcctDocItm.CompanyCode,
key AcctDocItm.FiscalYear,
key AcctDocItm.AccountingDocument,
key AcctDocItm.AccountingDocumentItem,
AcctDocItm.FinancialAccountType,
AcctDocItm.PostingDate,
AcctDocItm.SpecialGLCode,
AcctDocItm.BusinessArea,
AcctDocItm.FunctionalArea,
CompanyCtryKey.CountryKey,
cust.CustomerAccountGroup,
case when AcctDocItm.FinancialAccountType='K'
then AcctDocItm.Supplier
else AcctDocItm.Customer end as Account,
AcctDocItm.ClearingAccountingDocument
}
where AcctDocItm.ClearingAccountingDocument is not null
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FARMLVD_COMPANY",
"I_CUSTOMER",
"I_OPERATIONALACCTGDOCITEM"
],
"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