[LS-165] New requirements for SLA Tasks Report Created: 17/Jan/25  Updated: 19/Jun/25  Due: 21/Jan/25  Resolved: 19/Jun/25

Status: Closed
Project: L3 Support
Component/s: SRD
Affects Version/s: None
Fix Version/s: None

Type: CR Priority: Normal
Reporter: Salem Dannawi Assignee: Abir Messaikeh
Resolution: Done Votes: 0
Labels: SRD
Σ Remaining Estimate: 0 minutes Remaining Estimate: 0 minutes
Σ Time Spent: 1 week, 1 hour Time Spent: 1 week, 1 hour
Σ Original Estimate: Not Specified Original Estimate: Not Specified

Attachments: File LS-165.rar     File RE LS-165_New requirements for SLA Tasks Report.msg     File SlaProcess.rar     PNG File example2.png    
Sub-Tasks:
Key
Summary
Type
Status
Assignee
LS-312 New requirements for SLA Tasks Report... Technical task Cancelled Khaled Khalil  
LS-166 New requirements for SLA Report Requi... Technical task Cancelled Khaled Khalil  
LS-339 New requirements for SLA Tasks Report... Technical task Cancelled Khaled Khalil  
Customer:
OMAN-Tel
Planned Start:
Planned End:
Actual Start:
Date of Baselining:

 Description   

we require the below changes :-

• CUSTOM Task should be created as well for mobile coverage requests.
• SLA Duration to be upto only one decimal point.
• CUSTOM_TAS_FIXED and CUSTOM_TAS_MOBILE task to be created to enable the team to have a separate view of fixed and mobile and have the flexibility extract a combined report for the TAS performance.
• ADD a column for the same report to show SLA exceeded flag (True / False)



 Comments   
Comment by Mohamad Kalawoun [ 21/Jan/25 ]

L3 WL : 4 md

Comment by Dawlat Matar [ 26/Feb/25 ]

ticket partition into 2 parts:
1. FIXED with decimal pint and the exceeded column : 1.5WD
2. MOBILE: 3 WD

Comment by Sara Saddik [ 27/Feb/25 ]

Below Points are implemented. Patch Required (3.7.0.1266)

  • SLA Duration to be upto only one decimal point.
  • ADD a column for the same report to show SLA exceeded flag (True / False)
Comment by Sara Saddik [ 27/Feb/25 ]

@integration,

kindly apply the below script on schema:
ALTER TABLE SRD_CUSTOM_SLA ADD EXCEEDED_SLA NUMBER(1);
commit;

Comment by Aya Said [ 15/Apr/25 ]

The mobile part of the ticket is implemented.

Patch required (3.7.0.1287).

Kindly find attached the modified processes.

Workload: 1.5 days

Comment by Abir Messaikeh [ 24/Apr/25 ]

From: Salem Dannawi <Salem.Dannawi@mobinets.com>
Sent: Tuesday, April 22, 2025 4:41 PM
To: Aya Said <Aya.Said@nuiva.com>; Sara Saddik <Sara.Saddik@nuiva.com>; Khaled Khalil <Khaled.Khalil@nuiva.com>; Nour Ayoubi <Nour.Ayoubi@nuiva.com>
Cc: Abir Messaikeh <Abir.Messaikeh@nuiva.com>; Dawlat Matar <Dawlat.Matar@nuiva.com>
Subject: RE: LS-165_New requirements for SLA Tasks Report

Dear @Sara Saddik,

After checking again, the below request

The Total duration should be 4 days, right? Or how you are calculating the total duration?
And the assignee column still blank for custom_tas as shown

And the assignee column still blank for custom_tas as shown - request ID reference 540

Comment by Salem Dannawi [ 29/Apr/25 ]

I agree with you on this point, but the customer is requesting to see the assignee name that has completed the CUSTOM_TAS task for example, it’s Marwa for below request, and to calculate the SLA duration for this task from CONFIRM_SOLUTION to SOLUTION_ACCEPTANCE task.

Comment by Aya Said [ 02/May/25 ]

Issue of assignee is fixed.

Patch required (3.7.0.1289)

Comment by Anonymous [ 21/May/25 ]

Email's attached.

Comment by Sara Saddik [ 21/May/25 ]

Dear Salem,

Kindly find attached the updated process to be uploaded.

@Natnael Asfaw
Kindly to apply the below scripts in order to fix the old data.

Script 1:

UPDATE SRD_TASK task
SET task.insertdate = (
SELECT cs.insertdate
FROM SRD_TASK cs
WHERE cs.REQUEST_ID = task.REQUEST_ID
AND cs.TASK_NAME = 'CONFIRM_SOLUTION'
)
WHERE task.TASK_NAME = 'CUSTOM_TAS_FIXED'
AND EXISTS (
SELECT 1
FROM SRD_TASK cs
WHERE cs.REQUEST_ID = task.REQUEST_ID
AND cs.TASK_NAME = 'CONFIRM_SOLUTION'
);

Script 2:

UPDATE SRD_REQUEST_EVENT e
SET e.start_time = (
SELECT inner_cs.start_time
FROM (
SELECT cs.start_time
FROM SRD_REQUEST_EVENT cs
WHERE cs.request_id = e.request_id
AND cs.task_name = 'CONFIRM_SOLUTION'
AND cs.start_time IS NOT NULL
) inner_cs
WHERE ROWNUM = 1
)
WHERE e.task_name = 'CUSTOM_TAS_FIXED'
AND EXISTS (
SELECT 1
FROM SRD_REQUEST_EVENT cs
WHERE cs.request_id = e.request_id
AND cs.task_name = 'CONFIRM_SOLUTION'
AND cs.start_time IS NOT NULL
);

Script 3:

UPDATE SRD_REQUEST_EVENT e
SET e.insertdate = (
SELECT inner_cs.insertdate
FROM (
SELECT cs.insertdate
FROM SRD_REQUEST_EVENT cs
WHERE cs.request_id = e.request_id
AND cs.task_name = 'CONFIRM_SOLUTION'
AND cs.insertdate IS NOT NULL
) inner_cs
WHERE ROWNUM = 1
)
WHERE e.task_name = 'CUSTOM_TAS_FIXED'
AND EXISTS (
SELECT 1
FROM SRD_REQUEST_EVENT cs
WHERE cs.request_id = e.request_id
AND cs.task_name = 'CONFIRM_SOLUTION'
AND cs.insertdate IS NOT NULL
);

Commit;

Comment by Salem Dannawi [ 19/Jun/25 ]

The issue is resolved now as customer has requested.

Comment by Salem Dannawi [ 19/Jun/25 ]

the duration of custom_tas is now fixed as requested by customer:
start custom_tas task from the creation date of confirm_solution till completion date of solution acceptance,

Generated at Wed Apr 15 12:51:28 EEST 2026 using JIRA 6.1.4#6159-sha1:44eaedef2e4a625c6c7183698b2468d4719c20dc.