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
|