P_AstIntelNtwkObjLinkForNavgn

DDL: P_ASTINTELNTWKOBJLINKFORNAVGN SQL: PAINOBJLINKNAV Type: view CONSUMPTION

P_AstIntelNtwkObjLinkForNavgn is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (I_AssetIntelNtwkObjectLink) and exposes 5 fields with key field AssetIntelNtwkObjectLinkID.

Data Sources (1)

SourceAliasJoin Type
I_AssetIntelNtwkObjectLink I_AssetIntelNtwkObjectLink from

Annotations (4)

NameValueLevelField
VDM.private true view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName PAINOBJLINKNAV view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY AssetIntelNtwkObjectLinkID AssetIntelNtwkObjectLinkID Object Link Id
AssetIntelNtwkSyncedObjectID AssetIntelNtwkSyncedObjectID EAM Object ID
AssetIntelNtwkSyncedObjectType AssetIntelNtwkSyncedObjectType EAM Object Type
AssetIntelNtwkObjectType AssetIntelNtwkObjectType AIN Object Type
AssetIntelNtwkObjectID AssetIntelNtwkObjectID AIN Object ID

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_AstIntelNtwkObjLinkForNavgn.
-- 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: PAINOBJLINKNAV

CREATE VIEW P_AstIntelNtwkObjLinkForNavgn AS
SELECT
  AssetIntelNtwkObjectLinkID,
  AssetIntelNtwkSyncedObjectID,
  AssetIntelNtwkSyncedObjectType,
  AssetIntelNtwkObjectType,
  AssetIntelNtwkObjectID
FROM I_AssetIntelNtwkObjectLink
;