Views [dbo].[View_Request_to_Properties]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Created10:24:27 AM Sunday, December 05, 2010
Last Modified10:24:27 AM Sunday, December 05, 2010
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
affected_service
external_system_ticket
incorrectly_assigned
major_incident
orig_user_admin_org
orig_user_cost_center
orig_user_dept
orig_user_organization
outage_detail_what
outage_detail_who
outage_detail_why
outage_reason_desc
outage_type
pct_service_restored
remote_control_used
requested_by
resolution_code
resolution_method
resolvable_at_lower
return_to_service
symptom_code
target_closed_count
target_closed_last
target_hold_count
target_hold_last
target_resolved_count
target_resolved_last
target_start_last
caextwf_instance_id
sap_category
sap_client
sap_component
sap_cprog
sap_dbsys
sap_frontend
sap_instance
sap_msg
sap_os
sap_priority
sap_sftwcomp
sap_sftwcomppatch
sap_sftwcomprel
sap_solman
sap_state
sap_status
sap_subject
sap_syshost
sap_sysid
sap_systyp
sap_userstatus
sap_xnum
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
crprp_id
crprp_persid
sequence
label
crprp_description
value
required
sample
owning_cr
crprp_last_mod_dt
crprp_last_mod_by
Permissions
TypeActionOwning Principal
GrantSelectservice_desk_admin_group
GrantSelectservice_desk_ro_group
SQL Script
create view  View_Request_to_Properties AS SELECT View_Request.*, cr_prp.id crprp_id, cr_prp.persid crprp_persid, cr_prp.sequence, cr_prp.label, cr_prp.description crprp_description, cr_prp.value, cr_prp.required, cr_prp.sample, cr_prp.owning_cr, cr_prp.last_mod_dt crprp_last_mod_dt, cr_prp.last_mod_by crprp_last_mod_by FROM ( View_Request inner join  cr_prp ON View_Request.persid = cr_prp.owning_cr)
GO
GRANT SELECT ON  [dbo].[View_Request_to_Properties] TO [service_desk_admin_group]
GRANT SELECT ON  [dbo].[View_Request_to_Properties] TO [service_desk_ro_group]
GO
Uses