Deprecated
This CDS view is deprecated in S/4HANA. View all deprecated CDS views →

P_BR_ReportingNFExportKey

DDL: P_BR_REPORTINGNFEXPORTKEY SQL: PBRSPEDNFEXKEY Type: view CONSUMPTION

Nota Fiscal References by NFe Key

P_BR_ReportingNFExportKey is a Consumption CDS View that provides data about "Nota Fiscal References by NFe Key" in SAP S/4HANA. It reads from 5 data sources (I_BR_NFDocument, I_BR_NFDocument, I_BR_NFItem, P_BR_ReportingNFeActive, I_BR_NFExportDocument) and exposes 13 fields with key field BR_NotaFiscal.

Data Sources (5)

SourceAliasJoin Type
I_BR_NFDocument docMain inner
I_BR_NFDocument docRef inner
I_BR_NFItem itmMain from
P_BR_ReportingNFeActive nfeActive inner
I_BR_NFExportDocument nfeExp inner

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName PBRSPEDNFEXKEY view
EndUserText.label Nota Fiscal References by NFe Key view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.private true view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY BR_NotaFiscal I_BR_NFDocument BR_NotaFiscal Nota Fiscal
BR_NFDirection
BR_NFIssuedBy
BR_NFPartner
BR_NFModel
BR_NFSeries
BR_NFSubSeries
BR_NFeNumber
BR_NFIssueDate
CompanyCode
BusinessPlace
BusinessPlaceStateTaxNumber
BR_NFPostingDateasBR_NFPostingDate

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view P_BR_ReportingNFExportKey.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: PBRSPEDNFEXKEY

CREATE VIEW P_BR_ReportingNFExportKey AS
SELECT
  docRef.BR_NotaFiscal AS BR_NotaFiscal
FROM I_BR_NFItem AS itmMain
INNER JOIN I_BR_NFExportDocument AS nfeExp ON /* join condition not captured in parsed metadata */
INNER JOIN I_BR_NFDocument AS docMain ON /* join condition not captured in parsed metadata */
INNER JOIN P_BR_ReportingNFeActive AS nfeActive ON /* join condition not captured in parsed metadata */
INNER JOIN I_BR_NFDocument AS docRef ON /* join condition not captured in parsed metadata */
;