P_ClfnSdmInobIncons

DDL: P_CLFNSDMINOBINCONS Type: view BASIC Package: NGC_CORE_DB

Helper View for INOB Inconsistency SDM

P_ClfnSdmInobIncons is a Basic CDS View that provides data about "Helper View for INOB Inconsistency SDM" in SAP S/4HANA. It reads from 3 data sources (inob, kssk, tcla) and exposes 5 fields. Part of development package NGC_CORE_DB.

Data Sources (3)

SourceAliasJoin Type
inob inob left_outer
kssk kssk from
tcla tcla inner

Annotations (11)

NameValueLevelField
EndUserText.label Helper View for INOB Inconsistency SDM view
ClientHandling.algorithm #AUTOMATED view
AbapCatalog.sqlViewName PSDMINOBINC view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_ALLOWED view
VDM.private true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #NONE view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (5)

KeyFieldSource TableSource FieldDescription
kssk_objek kssk objek Object
kssk_mafid kssk mafid Record type
kssk_klart kssk klart Class Type
kssk_clint kssk clint Int class no.
kssk_adzhl kssk adzhl Int. counter

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 P_ClfnSdmInobIncons.
-- 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 P_ClfnSdmInobIncons AS
SELECT
  kssk.objek AS kssk_objek,
  kssk.mafid AS kssk_mafid,
  kssk.klart AS kssk_klart,
  kssk.clint AS kssk_clint,
  kssk.adzhl AS kssk_adzhl
FROM kssk
INNER JOIN tcla ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN inob ON /* join condition not captured in parsed metadata */
;