I_JVAInfoRecordAttachLink

DDL: I_JVAINFORECORDATTACHLINK SQL: IRECFILELNK Type: view COMPOSITE

JVABILLING Attachment Service

I_JVAInfoRecordAttachLink (Composite)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Joint Venture Billing - Read · Cross Applications

I_JVAInfoRecordAttachLink is a Composite CDS View that provides data about "JVABILLING Attachment Service" in SAP S/4HANA. It reads from 1 data source (I_JVABillingFileLink) and exposes 15 fields with key fields CompanyCode, FiscalYear, FiscalPeriod, JointVenturePartner, CreationDate.

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentCA-JVA-JVA
CapabilitiesAssociation Target for Defining CDS Entities, Data Source in SQL Select, Data Source for Defining CDS Entities
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
I_JVABillingFileLink JVFile from

Parameters (3)

NameTypeDefault
P_CompanyCode bukrs
P_FiscalYear gjahr
P_FiscalPeriod poper

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IRECFILELNK view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
EndUserText.label JVABILLING Attachment Service view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.sapObjectNodeType.name JVABillingDocument view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode I_JVABillingFileLink CompanyCode Receiver Company Code
KEY FiscalYear I_JVABillingFileLink FiscalYear G/L Fiscal Year
KEY FiscalPeriod I_JVABillingFileLink FiscalPeriod Posting Period
KEY JointVenturePartner I_JVABillingFileLink JointVenturePartner Joint Venture Partner
KEY CreationDate I_JVABillingFileLink CreationDate Time Stamp
KEY LinkedSAPObjectKey I_JVABillingFileLink ObjectKey Document Management Object Key
KEY JVABillingFileType I_JVABillingFileLink JVABillingFileType Billing File Type
DocumentInfoRecordDocType _DirObjectLinks DocumentInfoRecordDocType Document Type
DocumentInfoRecordDocNumber _DirObjectLinks DocumentInfoRecordDocNumber Document number
DocumentInfoRecordDocPart _DirObjectLinks DocumentInfoRecordDocPart Document Part
DocumentInfoRecordDocVersion _DirObjectLinks DocumentInfoRecordDocVersion Document Version
LinkedSAPObject _DirObjectLinks LinkedSAPObject Linked SAP Object
LogicalDocument _DirOriginals LogicalDocument Logical document
PhysicalDocument _DirOriginals PhysicalDocument Physical document
WorkstationApplication _DirOriginals WorkstationApplication Application

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 I_JVAInfoRecordAttachLink.
-- 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: IRECFILELNK
-- Parameters: P_CompanyCode : bukrs, P_FiscalYear : gjahr, P_FiscalPeriod : poper

CREATE VIEW I_JVAInfoRecordAttachLink AS
SELECT
  JVFile.CompanyCode AS CompanyCode,
  JVFile.FiscalYear AS FiscalYear,
  JVFile.FiscalPeriod AS FiscalPeriod,
  JVFile.JointVenturePartner AS JointVenturePartner,
  JVFile.CreationDate AS CreationDate,
  JVFile.ObjectKey AS LinkedSAPObjectKey,
  JVFile.JVABillingFileType AS JVABillingFileType,
  _DirObjectLinks.DocumentInfoRecordDocType AS DocumentInfoRecordDocType,
  _DirObjectLinks.DocumentInfoRecordDocNumber AS DocumentInfoRecordDocNumber,
  _DirObjectLinks.DocumentInfoRecordDocPart AS DocumentInfoRecordDocPart,
  _DirObjectLinks.DocumentInfoRecordDocVersion AS DocumentInfoRecordDocVersion,
  _DirObjectLinks.LinkedSAPObject AS LinkedSAPObject,
  _DirOriginals.LogicalDocument AS LogicalDocument,
  _DirOriginals.PhysicalDocument AS PhysicalDocument,
  _DirOriginals.WorkstationApplication AS WorkstationApplication
FROM I_JVABillingFileLink AS JVFile
;