A_SourcingProjectItemNote

DDL: A_SOURCINGPROJECTITEMNOTE Type: view_entity CONSUMPTION

Note for Item

A_SourcingProjectItemNote is a Consumption CDS View that provides data about "Note for Item" in SAP S/4HANA. It reads from 1 data source (R_SourcingProjectItemNoteTP) and exposes 12 fields with key field NoteBasicUUID.

Data Sources (1)

SourceAliasJoin Type
R_SourcingProjectItemNoteTP R_SourcingProjectItemNoteTP projection

Annotations (8)

NameValueLevelField
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
EndUserText.label Note for Item view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY NoteBasicUUID NoteBasicUUID Note ID
SourcingProjectItemUUID SourcingProjectItemUUID Item UUID
NoteBasicType NoteBasicType Name
NoteBasicLanguage NoteBasicLanguage Lang.
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
SourcingProjectUUID SourcingProjectUUID Sourcing Project UUID

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_SourcingProjectItemNote.
-- 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_SourcingProjectItemNote AS
SELECT
  NoteBasicUUID,
  SourcingProjectItemUUID,
  NoteBasicType,
  NoteBasicLanguage,
  NoteBasicTitle,
  NoteBasicMimeType,
  NoteBasicCreatedByUser,
  NoteBasicCreationDateTime,
  NoteBasicChangedByUser,
  NoteBasicChangeDateTime,
  NoteBasicContent,
  SourcingProjectUUID
FROM R_SourcingProjectItemNoteTP
;