Sgbt_Nte_Cds_Ntype

DDL: SGBT_NTE_CDS_NTYPE SQL: V_NTE_CDS_NTYPE Type: view BASIC

CDS View für Notiztypen für Notizen am Anwendungsobjekt

Sgbt_Nte_Cds_Ntype is a Basic CDS View that provides data about "CDS View für Notiztypen für Notizen am Anwendungsobjekt" in SAP S/4HANA. It reads from 1 data source (sgbt_nte_type) and exposes 12 fields with key field Name. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
sgbt_nte_type NoteTypeDef from

Associations (2)

CardinalityTargetAliasCondition
[1..1] Sgbt_Nte_Cds_Ntypet NoteTypeText $projection.Name = NoteTypeText.Name
[1..*] sgbt_nte_cds_attrdef AttrDef $projection.Name = AttrDef.Notetype

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName V_NTE_CDS_NTYPE view
ClientDependent true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label CDS View für Notiztypen für Notizen am Anwendungsobjekt view
VDM.viewType #BASIC view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY Name sgbt_nte_type name Zone name
LanguageDependent sgbt_nte_type langdep Translation-Rel
MaximalLength sgbt_nte_type maxlength Maximum Length
Multiple sgbt_nte_type multiple Multiple Values
NoSubject sgbt_nte_type no_subject No subject
LastChanger sgbt_nte_type changer Last Changed By
LastChanged sgbt_nte_type changed Time Stamp
Profile sgbt_nte_type profile WBS sched. prof
Authority
Description NoteTypeText Description Well Code Des.
NoteTypeText NoteTypeText
AttrDef AttrDef

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 Sgbt_Nte_Cds_Ntype.
-- 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: V_NTE_CDS_NTYPE

CREATE VIEW Sgbt_Nte_Cds_Ntype AS
SELECT
  NoteTypeDef.name AS Name,
  NoteTypeDef.langdep AS LanguageDependent,
  NoteTypeDef.maxlength AS MaximalLength,
  NoteTypeDef.multiple AS Multiple,
  NoteTypeDef.no_subject AS NoSubject,
  NoteTypeDef.changer AS LastChanger,
  NoteTypeDef.changed AS LastChanged,
  NoteTypeDef.profile AS Profile,
  cast ('' as nte_auth) AS Authority,
  NoteTypeText.Description AS Description,
  NoteTypeText,
  AttrDef
FROM sgbt_nte_type AS NoteTypeDef
LEFT OUTER JOIN Sgbt_Nte_Cds_Ntypet AS NoteTypeText ON Name = NoteTypeText.Name  -- association [1..1]
LEFT OUTER JOIN sgbt_nte_cds_attrdef AS AttrDef ON Name = AttrDef.Notetype  -- association [1..*]
;