I_Sgbt_Nte_Cds_Apitp

DDL: I_SGBT_NTE_CDS_APITP SQL: VIGBTNTECDSAPITP Type: view TRANSACTIONAL Package: S_GBT_NTE

Notizen am Anwendungsobjekt - Draft

I_Sgbt_Nte_Cds_Apitp is a Transactional CDS View that provides data about "Notizen am Anwendungsobjekt - Draft" in SAP S/4HANA. It reads from 1 data source (Sgbt_Nte_Cds_Cont) and exposes 17 fields with key field noteid. It has 3 associations to related views. Part of development package S_GBT_NTE.

Data Sources (1)

SourceAliasJoin Type
Sgbt_Nte_Cds_Cont NoteContent from

Associations (3)

CardinalityTargetAliasCondition
[1..1] Sgbt_Nte_Cds_Ntype NoteTypeDef $projection.notetype = NoteTypeDef.Name
[1..1] Sgbt_Nte_Cds_Langu LanguageDef $projection.langu = LanguageDef.LanguageISOCode
[0..*] i_sgbt_nte_cds_attr _attr $projection.noteid = _attr.Noteid

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName VIGBTNTECDSAPITP view
ClientDependent true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Notizen am Anwendungsobjekt - Draft view
VDM.viewType #TRANSACTIONAL view
ObjectModel.modelCategory #BUSINESS_OBJECT view
ObjectModel.compositionRoot true view
ObjectModel.transactionalProcessingEnabled true view
ObjectModel.draftEnabled true view
ObjectModel.writeDraftPersistence SGBT_NTE_CONT_D view
ObjectModel.writeActivePersistence SGBT_NTE_CONT view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.entityChangeStateId changed view
ObjectModel.semanticKey NoteID view

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY noteid Sgbt_Nte_Cds_Cont noteid Unique ID
objectid Sgbt_Nte_Cds_Cont objectid Object Value
notetype Sgbt_Nte_Cds_Cont notetype Topic
NoteTypeDef NoteTypeDef
langu Sgbt_Nte_Cds_Cont langu Primary lang.
LanguageDef LanguageDef
title Sgbt_Nte_Cds_Cont title View Title
mimetype Sgbt_Nte_Cds_Cont mimetype MIMETYPE
length Sgbt_Nte_Cds_Cont length Text Length
creator Sgbt_Nte_Cds_Cont creator User ID
created Sgbt_Nte_Cds_Cont created UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
changer Sgbt_Nte_Cds_Cont changer Last Changed By
changed Sgbt_Nte_Cds_Cont changed Time Stamp
content Sgbt_Nte_Cds_Cont content Trusted Site Content
_attr _attr
dp_item_key
readonly

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_Sgbt_Nte_Cds_Apitp.
-- 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: VIGBTNTECDSAPITP

CREATE VIEW I_Sgbt_Nte_Cds_Apitp AS
SELECT
  NoteContent.noteid AS noteid,
  NoteContent.objectid AS objectid,
  NoteContent.notetype AS notetype,
  NoteTypeDef,
  NoteContent.langu AS langu,
  LanguageDef,
  NoteContent.title AS title,
  NoteContent.mimetype AS mimetype,
  NoteContent.length AS length,
  NoteContent.creator AS creator,
  NoteContent.created AS created,
  NoteContent.changer AS changer,
  NoteContent.changed AS changed,
  NoteContent.content AS content,
  cast('' as nte_dp_key) AS dp_item_key,
  cast('' as nte_readonly) AS readonly
FROM Sgbt_Nte_Cds_Cont AS NoteContent
LEFT OUTER JOIN Sgbt_Nte_Cds_Ntype AS NoteTypeDef ON notetype = NoteTypeDef.Name  -- association [1..1]
LEFT OUTER JOIN Sgbt_Nte_Cds_Langu AS LanguageDef ON langu = LanguageDef.LanguageISOCode  -- association [1..1]
LEFT OUTER JOIN i_sgbt_nte_cds_attr AS _attr ON noteid = _attr.Noteid  -- association [0..*]
;