/DMBE/i_object_internal_number

DDL: /DMBE/I_OBJECT_INTERNAL_NUMBER SQL: /DMBE/IINOB Type: view

Link between Internal Number and Object

/DMBE/i_object_internal_number is a CDS View that provides data about "Link between Internal Number and Object" in SAP S/4HANA. It reads from 1 data source (inob) and exposes 3 fields with key fields mandt, cuobj.

Data Sources (1)

SourceAliasJoin Type
inob inob from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName /DMBE/IINOB view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Link between Internal Number and Object view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY mandt mandt Editing Client
KEY cuobj cuobj Object Number
objek objek Object

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 /DMBE/i_object_internal_number.
-- 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: /DMBE/IINOB

CREATE VIEW /DMBE/i_object_internal_number AS
SELECT
  mandt,
  cuobj,
  objek
FROM inob
;