I_JITPckgGrpDefTxt

DDL: I_JITPCKGGRPDEFTXT Type: view_entity BASIC

JIT Package Group Definition - Text

I_JITPckgGrpDefTxt is a Basic CDS View that provides data about "JIT Package Group Definition - Text" in SAP S/4HANA. It reads from 1 data source (njit_d_pgd_txt) and exposes 5 fields with key fields JITPckgGrpDefUUID, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
njit_d_pgd_txt njit_d_pgd_txt from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
Analytics.technicalName IJITPGDEFT view
EndUserText.label JIT Package Group Definition - Text view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.representativeKey JITPckgGrpDefUUID view
ObjectModel.sapObjectNodeType.name JITPackgGrpSpecDescription view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
Search.searchable true view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY JITPckgGrpDefUUID db_key UUID
KEY Language spras Off. Language
JITPckgGrpDesc pckg_grp_desc Package Group Spec Description
_JITPackageGroupDefinition _JITPackageGroupDefinition
_Language _Language

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_JITPckgGrpDefTxt.
-- 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 I_JITPckgGrpDefTxt AS
SELECT
  db_key AS JITPckgGrpDefUUID,
  spras AS Language,
  pckg_grp_desc AS JITPckgGrpDesc
FROM njit_d_pgd_txt
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;