A_SrcgProjQtnNote

DDL: A_SRCGPROJQTNNOTE Type: view_entity CONSUMPTION

Note

A_SrcgProjQtnNote is a Consumption CDS View that provides data about "Note" in SAP S/4HANA. It reads from 1 data source (R_SrcgProjQtnNoteTP) and exposes 11 fields with key field NoteBasicUUID. It is exposed through 1 OData service (API_SOURCINGPROJECTQUOTATION).

Data Sources (1)

SourceAliasJoin Type
R_SrcgProjQtnNoteTP R_SrcgProjQtnNoteTP projection

Annotations (9)

NameValueLevelField
EndUserText.label Note view
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
OData.entityType.name SrcgProjQtnNote_Type view

OData Services (1)

ServiceBindingVersionContractRelease
API_SOURCINGPROJECTQUOTATION API_SRCGPROJQUOTATION V4 C2 C1

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY NoteBasicUUID NoteBasicUUID Note ID
SourcingProjectQuotationUUID SourcingProjectQuotationUUID Supplier Quotation UUID
NoteBasicLanguage NoteBasicLanguage Lang.
NoteBasicType NoteBasicType Name
NoteBasicTitle NoteBasicTitle Title
NoteBasicMimeType NoteBasicMIMEType MIME Type
NoteBasicCreatedByUser NoteBasicCreatedByUser Created By
NoteBasicCreationDateTime NoteBasicCreationDateTime Created At
NoteBasicChangedByUser NoteBasicChangedByUser Last Changed By
NoteBasicChangeDateTime NoteBasicChangeDateTime Last Changed at
NoteBasicContent NoteBasicContent Content of note

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 A_SrcgProjQtnNote.
-- 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 A_SrcgProjQtnNote AS
SELECT
  NoteBasicUUID,
  SourcingProjectQuotationUUID,
  NoteBasicLanguage,
  NoteBasicType,
  NoteBasicTitle,
  NoteBasicMimeType,
  NoteBasicCreatedByUser,
  NoteBasicCreationDateTime,
  NoteBasicChangedByUser,
  NoteBasicChangeDateTime,
  NoteBasicContent
FROM R_SrcgProjQtnNoteTP
;