C_DspDocFlwConcurDocumentVH

DDL: C_DSPDOCFLWCONCURDOCUMENTVH Type: view_entity CONSUMPTION Package: ODATA_GL_DSP_DOC_FLW

Concur Document

C_DspDocFlwConcurDocumentVH is a Consumption CDS View that provides data about "Concur Document" in SAP S/4HANA. It reads from 1 data source (I_ConcurPostedDocumentStdVH) and exposes 7 fields with key fields ConcurDocumentID, ConcurSystemKey, ConcurDocumentType, ConcurDocumentRevisionNumber. It is exposed through 1 OData service (ASQL_F3665). Part of development package ODATA_GL_DSP_DOC_FLW.

Data Sources (1)

SourceAliasJoin Type
I_ConcurPostedDocumentStdVH I_ConcurPostedDocumentStdVH from

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.representativeKey ConcurDocumentID view
VDM.viewType #CONSUMPTION view
Metadata.ignorePropagatedAnnotations true view
Consumption.ranked true view
Search.searchable true view
EndUserText.label Concur Document view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F3665 ASQL_F3665 C2 NOT_RELEASED

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ConcurDocumentID ConcurDocumentID
KEY ConcurSystemKey ConcurSystemKey
KEY ConcurDocumentType ConcurDocumentType
KEY ConcurDocumentRevisionNumber ConcurDocumentRevisionNumber
CompanyCode CompanyCode Receiver Company Code
AnchorDocument
ReferenceDocumentType

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 C_DspDocFlwConcurDocumentVH.
-- 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 C_DspDocFlwConcurDocumentVH AS
SELECT
  ConcurDocumentID,
  ConcurSystemKey,
  ConcurDocumentType,
  ConcurDocumentRevisionNumber,
  CompanyCode,
  cast( ConcurDocumentID as fac_ddf_anchor_document ) AS AnchorDocument,
  cast( 'CTE' as fis_awtyp ) AS ReferenceDocumentType
FROM I_ConcurPostedDocumentStdVH
;