CAST Imaging System - Application layers view mode - Concept Objects - Missing link
Purpose (problem description)
This page helps you to investigate the issue of missing link between objects, for example when you are able to find a link between 2 objects in Enlighten, but the same is not visible in Imaging System:.

CAST AIP Versions
| AIP Version | Yes/No |
|---|---|
| 8.3.x | ✅ |
Applicable Platform or
| Imaging version | Yes/No |
|---|---|
| 2.x.x | ✅ |
Observed on RDBMS
| RDBMS | Yes/No |
|---|---|
| CSS | ✅ |
Step by Step scenario
- Import/export application
- Visualize Imaging results
Action Plan
Perform the below actions
- Check if the link is visible in Enlighten, if the link is visible then the link was created at analysis level, else if the link was not created at analysis level, you should refer to the following page for further investigation - CMS Snapshot Analysis - Run Analyzer - Missing or Wrong links between two objects
- Check if the link is part of the export files:
- Get the Ids of the 2 objects by referring to SQL Queries - CAST Knowledge Base - Queries on objects - How to get the ID of an object from its object name or full name
- From the export file named <application_is_lnk.csv> , check if there is a row with caller and called id.
- If the link is not part from the export folder, then the issue accured at export level, perform the following:
- Check if the link is a default link - Enlighten - Information - How to identify if a link is a default link
- If the link is a custom link then it is expected to not get the link at Imaging level.
- Else If the link is a default link then get the link type from Enlighten and perform the following:
Export application in debug mode - CAST Imaging System - Information - Export application in debug mode
Check if the link type is part of Imaging metamodel by running the following on KB:
- Check if the link is a default link - Enlighten - Information - How to identify if a link is a default link
select case count(1) when 0 Then ‘false’ else ’true' end from aaa_is_link_types where link_aip_description = ‘’
**Query result example**
false
If the query returns false, then the link type is not part of Imaging metamodel, it's is expected to not export the link, else the link is part of the Imaging metamodel, follow next step
3. Check if the link was ignored based on technical rules by running the following on KB:
```sql
select is_ignored
from aaa_is_lnk_processing
where caller_id =<Caller id>
and called_id = <called_id>
**Query result example**
true
if the query returns true then the link was ignored based on technical rules and it's expected to not export it, else if the link was not ignored based on technical rules, contact [CAST Technical Support](https://help.castsoftware.com/hc/en-us/requests/new) and provide the following [Relevant Input](#CASTImagingSystemApplicationlayersviewmodeConceptObjectsMissinglink-RelevantInput)
- Else if the link is part of the export folder, then the issue occurred at import level, contact CAST Technical Support and provide the following Relevant Input
- If the problem you are facing does not match any case listed in this page, report your problem to CAST Technical Support and provide the following Relevant Input
Relevant Input
- Screenshot showing the issue
- CSV file resulting from the export process - Export and import the Application data
- Log file resulting from the export process - Export and import the Application data
- Cast Imaging System log files - Logging
- CAST Analysis Service schema
Notes/comments
Ticket # 31175
Related Pages