P_RU_VATExtraInfo1

DDL: P_RU_VATEXTRAINFO1 SQL: PRUVATEXTRAINFO1 Type: view CONSUMPTION

P_RU_VATExtraInfo1 is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (I_RU_ExtNumByDefault) and exposes 3 fields.

Data Sources (1)

SourceAliasJoin Type
I_RU_ExtNumByDefault I_RU_ExtNumByDefault from

Annotations (8)

NameValueLevelField
VDM.private true view
VDM.viewType #CONSUMPTION view
AbapCatalog.sqlViewName PRUVATEXTRAINFO1 view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view

Fields (3)

KeyFieldSource TableSource FieldDescription
CompanyCode CompanyCode Receiver Company Code
AccountingDocumentType AccountingDocumentType Journal Entry Type
ExtDocNmbrAndDteAreFilled ExtDocNmbrAndDteAreFilled FillExtNum&DateByDef

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_RU_VATExtraInfo1.
-- 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: PRUVATEXTRAINFO1

CREATE VIEW P_RU_VATExtraInfo1 AS
SELECT
  CompanyCode,
  AccountingDocumentType,
  ExtDocNmbrAndDteAreFilled
FROM I_RU_ExtNumByDefault
;