I_CAInvcgRunExternalRefVH

DDL: I_CAINVCGRUNEXTERNALREFVH Type: view_entity BASIC

Fakturierungsläufe (Wertehilfe)

I_CAInvcgRunExternalRefVH is a Basic CDS View that provides data about "Fakturierungsläufe (Wertehilfe)" in SAP S/4HANA. It reads from 1 data source (I_CAInvcgDocLog) and exposes 13 fields with key fields CAInvcgRunExternalReference, CAInvcgProcess, CAInvcgCreationDate, CAInvcgLogUUID.

Data Sources (1)

SourceAliasJoin Type
I_CAInvcgDocLog I_CAInvcgDocLog from

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
EndUserText.label Fakturierungsläufe (Wertehilfe) view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey CAInvcgRunExternalReference view
Search.searchable true view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY CAInvcgRunExternalReference CAInvcgRunExternalReference Run Reference
KEY CAInvcgProcess CAInvcgProcess Invoicing Proc.
KEY CAInvcgCreationDate CAInvcgCreationDate Invoiced On
KEY CAInvcgLogUUID CAInvcgLogUUID UUID
CAReconciliationKey CAReconciliationKey Reconcil. Key
CreatedByUser CreatedByUser User Name
CAPostingDate CAPostingDate Posting Date
CAInvcgIsDocumentSimulated CAInvcgIsDocumentSimulated Doc. Simulated
CAInvcgIsDocumentPreliminary CAInvcgIsDocumentPreliminary Preliminary Invoice
CAIsMassRun CAIsMassRun Mass Processing
CAMassRunInternalID CAMassRunInternalID Valuation Run ID No.
CAInvcgProcessText CAInvcgProcessText Process Text
_CAInvcgProcess _CAInvcgProcess

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_CAInvcgRunExternalRefVH.
-- 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.

CREATE VIEW I_CAInvcgRunExternalRefVH AS
SELECT
  CAInvcgRunExternalReference,
  CAInvcgProcess,
  CAInvcgCreationDate,
  CAInvcgLogUUID,
  CAReconciliationKey,
  CreatedByUser,
  CAPostingDate,
  CAInvcgIsDocumentSimulated,
  CAInvcgIsDocumentPreliminary,
  CAIsMassRun,
  CAMassRunInternalID,
  CAInvcgProcessText
FROM I_CAInvcgDocLog
;