I am using CR10, HPUX, OpenView Service Desk on Oracle 9. I have written a CR tracking Service Calls and Incidents handled by our contractor for Support Serices using Views and Tables/Fields. The History table below has gobs and gobs of data in each record. I have written three formulas to track when the call was routed to them, when they accepted it, and when they closed it. Here are the formulas
Route to Tier 3
If {ITSM_HISTORYLINES_SERVICECALL.HSC_SUBJECT} like 'Workgroup from "Tier*" to "Tier 3 AppSupport*.' or {ITSM_HISTORYLINES_SERVICECALL.HSC_SUBJECT} like ['Status set to "Routed".', 'Status from "New" to "Routed".', 'Status from "Pending" to "Routed".', 'Status from "In Progress" to "Routed".', 'Status from "Resolved" to "0_Updated By Client_0".'] and {V_SERVICECALL.ASSWORKGROUP_NAME} startswith "Tier 3 AppSupport" then dateadd("h",-9,{ITSM_HISTORYLINES_SERVICECALL.HSC_CREATED}) else {V_SERVICECALL.CREATED}
Accepted Date/ Time
If {ITSM_HISTORYLINES_SERVICECALL.HSC_SUBJECT} like ['Status from "Routed" to "In Progress".', 'Status from "Pending" to "In Progress".', 'Status from "In Progress" to "Pending".', 'Status from "Routed" to "Pending".'] then dateadd("h",-9,{ITSM_HISTORYLINES_SERVICECALL.HSC_CREATED}) else {V_SERVICECALL.CREATED}
Resolved
dateadd("h",-1,{V_SERVICECALL.ACTUALFINISH})
When I go to Selection Criteria and enter the following
{V_SERVICECALL.ASSWORKGROUP_NAME} startswith "Tier 3 AppSupport" and
{@Routed to Tier 3} in LastFullWeek and
{@Accepted Date/Time} in LastFullWeek and
{@Resolved} in LastFullWeek and
{ITSM_HISTORYLINES_SERVICECALL.HSC_SER_OID} > 2200000
the report runs fairly quick (still slow), but when I replace and with or, so I can pick up any edits during the LastFulWeek, the reports tanks and I get an error "Unable to Open a Rowset" and then another that says I have run out of temp space, which I can get fixed, but this is after three hours. What can I write in to get any edits without using or?
Thanks so much for any help!
Route to Tier 3
If {ITSM_HISTORYLINES_SERVICECALL.HSC_SUBJECT} like 'Workgroup from "Tier*" to "Tier 3 AppSupport*.' or {ITSM_HISTORYLINES_SERVICECALL.HSC_SUBJECT} like ['Status set to "Routed".', 'Status from "New" to "Routed".', 'Status from "Pending" to "Routed".', 'Status from "In Progress" to "Routed".', 'Status from "Resolved" to "0_Updated By Client_0".'] and {V_SERVICECALL.ASSWORKGROUP_NAME} startswith "Tier 3 AppSupport" then dateadd("h",-9,{ITSM_HISTORYLINES_SERVICECALL.HSC_CREATED}) else {V_SERVICECALL.CREATED}
Accepted Date/ Time
If {ITSM_HISTORYLINES_SERVICECALL.HSC_SUBJECT} like ['Status from "Routed" to "In Progress".', 'Status from "Pending" to "In Progress".', 'Status from "In Progress" to "Pending".', 'Status from "Routed" to "Pending".'] then dateadd("h",-9,{ITSM_HISTORYLINES_SERVICECALL.HSC_CREATED}) else {V_SERVICECALL.CREATED}
Resolved
dateadd("h",-1,{V_SERVICECALL.ACTUALFINISH})
When I go to Selection Criteria and enter the following
{V_SERVICECALL.ASSWORKGROUP_NAME} startswith "Tier 3 AppSupport" and
{@Routed to Tier 3} in LastFullWeek and
{@Accepted Date/Time} in LastFullWeek and
{@Resolved} in LastFullWeek and
{ITSM_HISTORYLINES_SERVICECALL.HSC_SER_OID} > 2200000
the report runs fairly quick (still slow), but when I replace and with or, so I can pick up any edits during the LastFulWeek, the reports tanks and I get an error "Unable to Open a Rowset" and then another that says I have run out of temp space, which I can get fixed, but this is after three hours. What can I write in to get any edits without using or?
Thanks so much for any help!