(file) Return to act_finalprocess.cfm CVS log (file) (dir) Up to [Development] / p2rx-programs

 1 neenan 1.2 <!--- 
 2                Please change the 'To' & 'From' fields in the CFmail tag to include each center admin email address 
 3            
 4             	Name:  act_finalprocess.cfm
 5 neenan 1.1     	Purpose: This file is as action file to bring up all the information such as organization details, services selected. The 
 6            				email of the user is also selected so the details can be emailed to the concerned person. The hidden variable - Visitor_id
 7            				using the GetUserEmail query passed onto the next dsp_adduser.cfm form if user selects "Edit the program" on the final 
 8            				confirmation page.
 9            		Date created: 02/23/2005
10                   	Dependancy: URl.Orgid
11            		Variables: 	
12            					
13            		Functions: 
14            		Date changed: 
15            					02/24/2005			Prabin & Neena  Created & Documentation
16            ---> 	
17            
18            <cfquery name="GetUserEmail" datasource="#programsdb#">
19            	Select 		*
20            	From 		OutsideUsers
21            	where orgid= #URL.OrgID#
22            </cfquery>
23            
24            
25            <cfquery name="DisPlayProgramExpertise" datasource="#programsdb#">
26 neenan 1.1 select *
27            from dService s, dOrgtoService os, dOrganization o
28            where o.orgID=os.orgID and os.ServiceID=s.ServiceID and s.type='Expertise' and o.OrgID=#URL.OrgID#
29            </cfquery> 
30            
31            <cfquery name="DisPlayProgramClients" datasource="#programsdb#">
32            select *
33            from dService s, dOrgtoService os, dOrganization o
34            where o.orgID=os.orgID and os.ServiceID=s.ServiceID and s.type='Clients' and o.OrgID=#URL.OrgID#
35            </cfquery> 
36            
37            <cfquery name="DisPlayProgramResource" datasource="#programsdb#">
38            select *
39            from dService s, dOrgtoService os, dOrganization o
40            where o.orgID=os.orgID and os.ServiceID=s.ServiceID and s.type='Resources' and o.OrgID=#URL.OrgID#
41            </cfquery> 
42            
43            <cfquery name="getOrg" datasource="#programsdb#">
44            select * from dorganization
45            where OrgID=#URL.OrgID#
46            </cfquery>
47 neenan 1.1 
48            <cfoutput><input type="hidden" name="vid" value="#GetUserEmail.visitor_id#"></cfoutput>
49            
50 neenan 1.2 <cfmail from="ryoder@unomaha.edu" to="pkanel@mail.unomaha.edu,nnaidu@mail.unomaha.edu, #getUserEmail.Email#" subject="Information of the organization has been changed">
51 neenan 1.1 #GetUserEmail.fname# #GetUserEmail.lname#
52            This e-mail is automatically generated to let you know that the information for your organization
53            has been changed in our database. We might contact you to validate the information. Once the information has been 
54            validated, the status for the organization will be changed and will be displayed on our site.
55            
56            Current Information:
57            ====================
58            
59            Organization Name: #getORG.OrganizationName#
60            Profile: #getOrg.Profile#
61            Division: #getOrg.Division#
62            Address: #getOrg.Address1# #getOrg.Address1#
63            		 #getOrg.City# #getOrg.StateOrProvince# #getOrg.PostalCode#
64            		 #getOrg.Country#  
65            Region:	 #getOrg.Region#
66            TimeZone: #getOrg.TimeZone#
67            Phone Number: #getOrg.Phone#
68            Extension: #getOrg.Extension#
69            Fax Number: #getOrg.FaxNumber#  
70            Email Address: #getOrg.EmailName#  
71            HotLine:  #getOrg.Hotline#
72 neenan 1.1 URL: #getOrg.URL#  
73            Graphic URL: #getOrg.GraphicURL#  
74            Resources: #DisplayProgramResource.Service# 
75            Expertise: #DisplayProgramExpertise.Service#
76            Clients:   #DisplayProgramClients.Service#
77            		  
78            </cfmail>

CVS Admin
Powered by
ViewCVS 1.0-dev