Views [dbo].[View_Change_to_Request]
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
chg_ref_num
summary
description
status
active_flag
start_date
open_date
last_mod_dt
last_mod_by
close_date
resolve_date
rootcause
est_total_time
actual_total_time
log_agent
assignee
organization
group_id
affected_contact
requestor
category
priority
need_by
est_comp_date
actual_comp_date
est_cost
actual_cost
justification
backout_plan
impact
parent
effort
support_lev
template_name
sla_violation
predicted_sla_viol
macro_predict_viol
created_via
call_back_date
call_back_flag
string1
string2
string3
string4
string5
string6
service_date
service_num
product
actions
type_of_contact
reporting_method
person_contacting
flag1
flag2
flag3
flag4
flag5
flag6
user1
user2
user3
cawf_procid
project
zusmrequestid
zusmrequestitemid
zend_date
zstart_date
zTest
tenant
chgtype
sched_start_date
sched_end_date
sched_duration
actual_start_date
actual_end_date
status_name
priority_num
category_name
organization_name
affected_end_user_lastname
affected_end_user_firstname
affected_end_user_middlename
requester_lastname
requester_firstname
requester_middlename
business
assignee_lastname
assignee_firstname
assignee_middlename
groupID
group_name
service_type
impact_num
product_sym
type_of_contact_sym
rpting_method_sym
person_contacting_sym
cr_id
ref_num
cr_summary
cr_persid
cr_description
cr_status
cr_active_flag
time_spent_sum
cr_open_date
cr_last_mod_dt
cr_close_date
cr_log_agent
cr_group_id
cr_assignee
customer
charge_back_id
affected_rc
cr_support_lev
cr_category
solution
cr_impact
cr_priority
urgency
severity
extern_ref
last_act_id
cr_tticket
cr_parent
cr_template_name
cr_sla_violation
cr_predicted_sla_viol
cr_created_via
cr_call_back_date
cr_call_back_flag
event_token
type
cr_string1
cr_string2
cr_string3
cr_string4
cr_string5
cr_string6
change
Permissions
TypeActionOwning Principal
GrantSelectservice_desk_admin_group
GrantSelectservice_desk_ro_group
SQL Script
CREATE view  View_Change_to_Request AS SELECT View_Change.*, call_req.id cr_id, call_req.ref_num, call_req.summary cr_summary, call_req.persid cr_persid, call_req.description cr_description, call_req.status cr_status, call_req.active_flag cr_active_flag, call_req.time_spent_sum, call_req.open_date cr_open_date, call_req.last_mod_dt cr_last_mod_dt, call_req.close_date cr_close_date, call_req.log_agent cr_log_agent, call_req.group_id cr_group_id, call_req.assignee cr_assignee,call_req.customer, call_req.charge_back_id, call_req.affected_rc, call_req.support_lev cr_support_lev, call_req.category cr_category, call_req.solution, call_req.impact cr_impact, call_req.priority cr_priority, call_req.urgency, call_req.severity, call_req.extern_ref, call_req.last_act_id, call_req.cr_tticket, call_req.parent cr_parent, call_req.template_name cr_template_name, call_req.sla_violation cr_sla_violation, call_req.predicted_sla_viol cr_predicted_sla_viol, call_req.created_via cr_created_via, call_req.call_back_date cr_call_back_date, call_req.call_back_flag cr_call_back_flag, call_req.event_token, call_req.type, call_req.string1 cr_string1, call_req.string2 cr_string2, call_req.string3 cr_string3, call_req.string4 cr_string4, call_req.string5 cr_string5, call_req.string6 cr_string6, call_req.change FROM ( View_Change inner join  call_req ON View_Change.id = call_req.change)
GO
GRANT SELECT ON  [dbo].[View_Change_to_Request] TO [service_desk_admin_group]
GRANT SELECT ON  [dbo].[View_Change_to_Request] TO [service_desk_ro_group]
GO
Uses