Details
-
Type:
CR
-
Status:
Cancelled
(View Workflow)
-
Priority:
Normal
-
Resolution: Unresolved
-
Component/s: NEP
-
Labels:None Labels
-
Customer:OMAN-Tel
Description
the customer is requesting to have the DB view for redline IDUs as the excel sheet attached below with all details
Attachments
Activity
-
- Time Spent:
- 1 hour, 30 minutes
-
match the existing data with the DV requested from customer
| Field | Original Value | New Value |
|---|---|---|
| Gantt Options | Milestone (set to milestone: having a due date but zero effort) | |
| Planned Start | 2025-08-22 24:00 (milestone: set planned start date to due date) | |
| Planned End | 2025-08-22 24:00 (milestone: set planned end date to due date) |
| Remaining Estimate | 0 minutes [ 0 ] | |
| Time Spent | 1 hour, 30 minutes [ 5400 ] | |
| Worklog Id | 274647 [ 274647 ] |
| Baseline Start | 2025-08-22 24:00 (set baseline based of initial work logging) | |
| Baseline End | 2025-08-22 24:00 (set baseline based of initial work logging) |
| Attachment | IDU Report.csv [ 116206 ] |
| Attachment | new siites report.csv [ 116207 ] |
| Status | Opened [ 1 ] | Pending Requirements [ 10300 ] |
| Status | Pending Requirements [ 10300 ] | Pending Design Session [ 10112 ] |
| Status | Pending Design Session [ 10112 ] | Dev Scheduled [ 10014 ] |
| Assignee | Khaled Khalil [ kkhalil ] | Nouha Mhadhbi [ nmhadhbi ] |
| Assignee | Nouha Mhadhbi [ nmhadhbi ] | Salem Dannawi [ sdannawi ] |
-
- Time Spent:
- 1 hour
-
check the updated file,
analyze the headers and compare it with customers requirements
| Time Spent | 1 hour, 30 minutes [ 5400 ] | 6 hours, 30 minutes [ 23400 ] |
| Worklog Id | 275959 [ 275959 ] |
| Time Spent | 6 hours, 30 minutes [ 23400 ] | 7 hours [ 25200 ] |
| Worklog Id | 275988 [ 275988 ] |
| Time Spent | 7 hours [ 25200 ] | 7 hours, 30 minutes [ 27000 ] |
| Worklog Id | 275988 [ 275988 ] |
| Status | Dev Scheduled [ 10014 ] | Cancelled [ 10013 ] |
-
- Time Spent:
- 2 hours, 30 minutes
-
update the data sent by customer,
add the missing catalog models
validate the new csv to be imported,
create 2 different csvs,
analyze the naming changing and update the file,
delete old data,
import the new data and validate and its working fine
| Time Spent | 7 hours, 30 minutes [ 27000 ] | 1 day, 1 hour, 30 minutes [ 34200 ] |
| Worklog Id | 276351 [ 276351 ] |
| Worklog Id | 276351 [ 276351 ] |
| Time Spent | 1 day, 1 hour, 30 minutes [ 34200 ] | 1 day, 2 hours [ 36000 ] |
| Worklog Id | 276351 [ 276351 ] |
| Summary | Redline device dump from NEP | Redline device dump from NEP for Infovista |
| Transition | Time In Source Status | Execution Times | Last Executer | Last Execution Date | |||||
|---|---|---|---|---|---|---|---|---|---|
|
12d 18h 10m | 1 | Hassan Abdine | 28/Aug/25 8:42 AM | |||||
|
7s | 1 | Hassan Abdine | 28/Aug/25 8:42 AM | |||||
|
14s | 1 | Hassan Abdine | 28/Aug/25 8:43 AM | |||||
|
4d 5h 43m | 1 | Abir Messaikeh | 01/Sep/25 2:26 PM |
|
Links Hierarchy |
Documentation
|
Documentation
The ticket has been resolved, and a batch will be released for it.
Please find the script below to apply.
Best regards,
Nouha
INSERT INTO DB_VIEW_CONF (VIEW_NAME, ATTRIBUTE_NAME, VALUE) VALUES ('REDLINE_VIEW','VERSION_NAME','put your version');
--------------------------------------------------------------------------------------------------------------------------
CREATE OR REPLACE FORCE EDITIONABLE VIEW REDLINE_VIEW ( "VENDOR", "IDU_NAME", "LABEL", "IDU_ID", "LOCATION", "IDU_TYPE", "NE_ID", "SITE_ID", "SITE_NAME", "LOCATION_REGION","LOCATION_CITY")
AS WITH SELECTED_VERSION
AS (SELECT VERSIONID VERSION_ID FROM VERSION
WHERE NAME = (SELECT VALUE FROM DB_VIEW_CONF WHERE VIEW_NAME = 'REDLINE_VIEW' AND ATTRIBUTE_NAME = 'VERSION_NAME'))
select m.name vendor,
i.name IDU_NAME,
i.name || ' '||i.objectid LABEL,
i.objectid IDU_ID,
c.wilayah_name LOCATION,
type.name IDU_TYPE,
i.neid NE_ID,
s.objectid SITE_ID,
s.name SITE_NAME,
c.governate_name LOCATION_REGION,
c.city_name LOCATION_CITY
FROM IDU i
left join SELECTED_VERSION v on v.VERSION_ID=i.versionid
left join site s on s.siteid=i.siteid
left join FN_CITY_VIEW c on c.city_id=s.zone_id
left join IduType type on i.IduTypeID=type.IduTypeID
left join Manufacturer m on m.ManufacturerID=type.ManufacturerID
where m.name='REDLINE';