Views [dbo].[View_Request_to_Act_Log]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Created11:10:19 AM Wednesday, March 07, 2007
Last Modified9:09:09 PM Friday, December 05, 2008
Columns
Name
id
persid
ref_num
summary
description
status
active_flag
open_date
time_spent_sum
last_mod_dt
last_mod_by
close_date
resolve_date
rootcause
log_agent
assignee
group_id
customer
charge_back_id
affected_rc
support_lev
category
solution
impact
priority
urgency
severity
extern_ref
last_act_id
cr_tticket
parent
template_name
sla_violation
predicted_sla_viol
macro_predict_viol
created_via
call_back_date
call_back_flag
event_token
sched_token
type
string1
string2
string3
string4
string5
string6
problem
incident_priority
change
ticket_avoided
tenant
cawf_procid
caused_by_chg
outage_start_time
outage_end_time
service_type
severity_num
urgency_num
category_name
asset
impact_num
assignee_lastname
assignee_firstname
assignee_middlename
customer_lastname
customer_firstname
customer_middlename
group_name
groupID
status_name
priority_num
actlog_id
actlog_persid
call_req_id
actlog_last_mod_dt
time_spent
time_stamp
system_time
analyst
actlog_desc
action_desc
actlog_type
knowledge_session
knowledge_tool
internal
activity_type
analyst_lastname
analyst_firstname
analyst_middlename
Permissions
TypeActionOwning Principal
GrantSelectservice_desk_admin_group
GrantSelectservice_desk_ro_group
SQL Script
CREATE view  View_Request_to_Act_Log AS SELECT View_Request.*, View_Act_Log.id actlog_id, View_Act_Log.persid actlog_persid, View_Act_Log.call_req_id, View_Act_Log.last_mod_dt actlog_last_mod_dt, View_Act_Log.time_spent, View_Act_Log.time_stamp, View_Act_Log.system_time, View_Act_Log.analyst, View_Act_Log.description actlog_desc, View_Act_Log.action_desc, View_Act_Log.type actlog_type, View_Act_Log.knowledge_session, View_Act_Log.knowledge_tool, View_Act_Log.internal, View_Act_Log.activity_type, View_Act_Log.analyst_lastname, View_Act_Log.analyst_firstname, View_Act_Log.analyst_middlename FROM ( View_Request inner join  View_Act_Log ON View_Request.persid = View_Act_Log.call_req_id)
GO
GRANT SELECT ON  [dbo].[View_Request_to_Act_Log] TO [service_desk_admin_group]
GRANT SELECT ON  [dbo].[View_Request_to_Act_Log] TO [service_desk_ro_group]
GO
Uses