| 13 |
rsolanki |
1 |
<%@LANGUAGE="VBSCRIPT"%>
|
|
|
2 |
<%
|
|
|
3 |
'=====================================================
|
|
|
4 |
'| |
|
|
|
5 |
'| OS_Processes |
|
|
|
6 |
'| |
|
|
|
7 |
'=====================================================
|
|
|
8 |
%>
|
|
|
9 |
<%
|
|
|
10 |
Option explicit
|
|
|
11 |
Response.Expires = 0
|
|
|
12 |
%>
|
|
|
13 |
<!--#include file="common/globals.asp"-->
|
|
|
14 |
<!--#include file="common/config.asp"-->
|
|
|
15 |
<!--#include file="common/common_subs.asp"-->
|
|
|
16 |
<!--#include file="common/_os_common.asp"-->
|
|
|
17 |
<%
|
|
|
18 |
'------------ ACCESS CONTROL ------------------
|
|
|
19 |
%>
|
|
|
20 |
<!--#include file="_access_control_general.asp"-->
|
|
|
21 |
<%
|
|
|
22 |
'------------ VARIABLE DEFINITION -------------
|
| 21 |
rsolanki |
23 |
Dim rsQry, ProcId, ProcName, Interface, RunAs, Owner
|
| 13 |
rsolanki |
24 |
'------------ CONSTANTS DECLARATION -----------
|
|
|
25 |
'------------ VARIABLE INIT -------------------
|
|
|
26 |
'------------ CONDITIONS ----------------------
|
|
|
27 |
'----------------------------------------------
|
|
|
28 |
%>
|
|
|
29 |
<%
|
|
|
30 |
'------------ RUN BEFORE PAGE RENDER ----------
|
|
|
31 |
'----------------------------------------------
|
|
|
32 |
%>
|
|
|
33 |
<html>
|
|
|
34 |
<head>
|
|
|
35 |
<title>Deployment Manager</title>
|
|
|
36 |
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
|
|
|
37 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
|
|
38 |
<link href="scripts/deployment_manager.css" rel="stylesheet" type="text/css">
|
|
|
39 |
<script language="JavaScript" src="scripts/common.js"></script>
|
|
|
40 |
</head>
|
|
|
41 |
|
|
|
42 |
<body leftmargin="0" topmargin="0">
|
|
|
43 |
<!-- HEADER ++++++++++++++++ -->
|
|
|
44 |
<!--#include file="_header.asp"-->
|
|
|
45 |
<!-- +++++++++++++++++++++++ -->
|
|
|
46 |
<!-- MAIN MENU + CRUMBS ++++++++++++++++ -->
|
|
|
47 |
<!--#include file="_main_menu.asp"-->
|
|
|
48 |
<!-- +++++++++++++++++++++++++++++++++++++ -->
|
|
|
49 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
|
50 |
<tr>
|
|
|
51 |
<td width="1%" valign="top" background="images/bg_bage_0.gif">
|
|
|
52 |
<!-- NODE BROWSER ++++++++++++++++++++++ -->
|
|
|
53 |
<!--#include file="_bom_browser.asp"-->
|
|
|
54 |
<!-- END OF NODE BROWSER +++++++++++++++ -->
|
|
|
55 |
</td>
|
|
|
56 |
<td width="1" background="images/bg_bage_1.gif"><img src="images/spacer.gif" width="1" height="600"></td>
|
|
|
57 |
<td width="100%" valign="top" bgcolor="#FFFFFF">
|
|
|
58 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
|
59 |
<tr>
|
|
|
60 |
<td valign="top" background="images/bg_blue.gif"></td>
|
|
|
61 |
<td align="right" valign="bottom" background="images/bg_blue.gif" class="body_txtw"><%Call RenderTitle( objOsCollector )%></td>
|
|
|
62 |
<td background="images/bg_blue.gif"><img src="images/spacer.gif" width="10" height="20"></td>
|
|
|
63 |
</tr>
|
|
|
64 |
<tr>
|
|
|
65 |
<td width="1%" valign="top" background="images/bg_blue.gif"></td>
|
|
|
66 |
<td width="100%" valign="bottom" background="images/bg_blue.gif">
|
|
|
67 |
<!-- TAB CONTROLS ++++++++++++++++++++++ -->
|
|
|
68 |
<!--#include file="_tabs_definition.asp"-->
|
|
|
69 |
<%
|
|
|
70 |
Set objTabControl = New TabControl
|
|
|
71 |
objTabControl.TemplateDoc = ReadFile( Server.MapPath("controls/ERGTabStyleWinXP/tab_style.html") ) ' Supply tab style definition
|
|
|
72 |
objTabControl.TabStyle = "StyleWinXP"
|
|
|
73 |
objTabControl.AddTabDefnition ( arrOsTabDef )
|
|
|
74 |
objTabControl.SelectByName ("Processes")
|
|
|
75 |
objTabControl.Render ()
|
|
|
76 |
%>
|
|
|
77 |
<!-- END OF TAB CONTROLS +++++++++++++++ -->
|
|
|
78 |
</td>
|
|
|
79 |
<td width="1%" background="images/bg_blue.gif"><img src="images/spacer.gif" width="10" height="35"></td>
|
|
|
80 |
</tr>
|
|
|
81 |
<tr>
|
|
|
82 |
<td background="images/bg_bage_0.gif"><img src="images/spacer.gif" width="30" height="10"></td>
|
| 15 |
rsolanki |
83 |
<td background="images/bg_bage_0.gif">
|
|
|
84 |
<!-- BUTTONS CONTROL +++++++++++++++++++ -->
|
|
|
85 |
<%
|
|
|
86 |
'-- Define Action buttons on this tab
|
|
|
87 |
aTabBtnsDef = Array("btnAddProc", "btnExportNodespec")
|
|
|
88 |
|
|
|
89 |
Call LoadTabActionButtons ( aTabBtnsDef, objBtnControl )
|
|
|
90 |
|
|
|
91 |
' -- Render Buttons
|
|
|
92 |
Call objBtnControl.Render ( aTabBtnsDef )
|
|
|
93 |
|
|
|
94 |
%></td>
|
|
|
95 |
|
|
|
96 |
|
| 13 |
rsolanki |
97 |
<td background="images/bg_blue.gif"><img src="images/p_bar_corrner.gif" width="17" height="42"></td>
|
|
|
98 |
</tr>
|
|
|
99 |
<tr>
|
|
|
100 |
<td> </td>
|
|
|
101 |
<td> </td>
|
|
|
102 |
<td valign="top"><%If Request.Cookies( enumCOOKIE_NAME )( "user_bar" ) = "hide" Then%><a href="<%=SCRIPT_NAME%>?user_bar=<%=enumDEFAULT%>&<%=objPMod.ComposeURL()%>"><img src="icons/b_left.gif" title="Maximize favourits" width="13" height="13" vspace="5" border="0"></a><%End If%></td>
|
|
|
103 |
</tr>
|
|
|
104 |
</table>
|
|
|
105 |
<table width="100%" border="0" cellspacing="10" cellpadding="0">
|
|
|
106 |
<tr>
|
|
|
107 |
<td>
|
|
|
108 |
<!-- PAGE DETAILS +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
| 15 |
rsolanki |
109 |
<!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --></td>
|
|
|
110 |
</tr>
|
|
|
111 |
</table>
|
|
|
112 |
<table width="520" border="0">
|
|
|
113 |
<tr>
|
|
|
114 |
<td nowrap width="87" background="images/bg_table_col.gif"><div align="left"><span class="body_col">Health Tag</span></div></td>
|
|
|
115 |
<td nowrap width="68" background="images/bg_table_col.gif"><div align="left"><span class="body_col">Package</span></div></td>
|
|
|
116 |
<td nowrap width="143" background="images/bg_table_col.gif"><div align="left"><span class="body_col">Command Interface</span></div></td>
|
|
|
117 |
<td nowrap width="85" background="images/bg_table_col.gif"><div align="left"><span class="body_col">Interface</span></div></td>
|
|
|
118 |
<td nowrap width="62" background="images/bg_table_col.gif"><div align="left"><span class="body_col">Owner</span></div></td>
|
|
|
119 |
<td nowrap width="" background="images/bg_table_col.gif"><div align="left"></div></td>
|
|
|
120 |
</tr>
|
|
|
121 |
|
|
|
122 |
<%
|
|
|
123 |
' Load some action buttons
|
|
|
124 |
Call objBtnControl.LoadActionButtons ( Array("btnEditProc", "btnRemoveProc"), OraDatabase )
|
|
|
125 |
objBtnControl.ButtonSpacer = 1
|
|
|
126 |
|
| 13 |
rsolanki |
127 |
Dim currProd_id
|
|
|
128 |
|
|
|
129 |
OraDatabase.Parameters.Add "OS_ID", dbPARos_id, ORAPARM_INPUT, ORATYPE_NUMBER
|
|
|
130 |
|
| 15 |
rsolanki |
131 |
Set rsQry = OraDatabase.DbCreateDynaset( GetQuery ("OsProcessConfig.sql"), ORADYN_DEFAULT )
|
| 13 |
rsolanki |
132 |
|
|
|
133 |
currProd_id = ""
|
|
|
134 |
While (NOT rsQry.BOF) AND (NOT rsQry.EOF)
|
| 15 |
rsolanki |
135 |
ProcId = rsQry("prod_id")
|
| 19 |
rsolanki |
136 |
ProcName = rsQry("pkg_health_tag")
|
| 21 |
rsolanki |
137 |
Interface = rsQry("is_interface")
|
| 29 |
jtweddle |
138 |
If NOT IsNull(rsQry("cmd_interface")) Then
|
|
|
139 |
RunAs = Replace(rsQry("cmd_interface"), "'", "'" )
|
|
|
140 |
Else
|
|
|
141 |
RunAs = rsQry("cmd_interface")
|
|
|
142 |
End If
|
|
|
143 |
|
| 21 |
rsolanki |
144 |
Owner = rsQry("pkg_owner")
|
| 15 |
rsolanki |
145 |
%>
|
|
|
146 |
<tr>
|
|
|
147 |
<td><div align="left"><span class="body_row"><%=rsQry("pkg_health_tag")%></span></div></td>
|
|
|
148 |
<td><div align="left"><span class="body_row"><%=rsQry("pkg_name")%></span></div></td>
|
|
|
149 |
<td><div align="left"><span class="body_row"><%=rsQry("cmd_interface")%></span></div></td>
|
|
|
150 |
<td><div align="left"><span class="body_row"><%=rsQry("is_interface")%></span></div></td>
|
|
|
151 |
<td><div align="left"><span class="body_row"><%=rsQry("pkg_owner")%></span></div></td>
|
|
|
152 |
<td align="left" valign="top" bgcolor="#FAFAF6"><%Call objBtnControl.Render ( Array("btnEditProc", "btnRemoveProc") )%></td>
|
|
|
153 |
</tr>
|
|
|
154 |
<%rsQry.MoveNext%>
|
| 13 |
rsolanki |
155 |
|
|
|
156 |
<%If (NOT rsQry.BOF) AND (NOT rsQry.EOF) Then%>
|
|
|
157 |
<tr>
|
|
|
158 |
<td colspan="8" background="images/bg_table_border.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
|
|
159 |
</tr>
|
|
|
160 |
<%End If%>
|
|
|
161 |
|
|
|
162 |
<%
|
|
|
163 |
WEnd
|
|
|
164 |
|
|
|
165 |
OraDatabase.Parameters.Remove "OS_ID"
|
| 15 |
rsolanki |
166 |
%>
|
|
|
167 |
</table>
|
|
|
168 |
<p> </p></td>
|
| 13 |
rsolanki |
169 |
<td width="1%" valign="top" background="images/bg_favourits.gif">
|
|
|
170 |
<%If Request.Cookies( enumCOOKIE_NAME )( "user_bar" ) <> "hide" Then%>
|
|
|
171 |
<!-- PERSONAL PANE +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
|
|
172 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
|
173 |
<tr>
|
|
|
174 |
<td width="100%" valign="bottom" background="images/bg_node_icon.gif"><%=GetNodeImage ( dbPARnode_id )%></td>
|
|
|
175 |
<td width="1" background="images/bg_node_icon.gif"><img src="images/spacer.gif" width="1" height="97"></td>
|
|
|
176 |
</tr>
|
|
|
177 |
</table>
|
|
|
178 |
<a href="<%=SCRIPT_NAME%>?user_bar=hide&<%=objPMod.ComposeURL()%>"><img src="icons/b_right.gif" title="Minimize favourits" width="13" height="13" vspace="5" border="0"></a> <table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
|
179 |
<tr>
|
|
|
180 |
<td valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
|
181 |
<tr>
|
|
|
182 |
<td valign="top" background="images/bg_bage_0a.gif"><img src="images/dot_white.gif" width="1" height="1"></td>
|
|
|
183 |
<td background="images/bg_bage_0a.gif"><img src="images/spacer.gif" width="10" height="3"></td>
|
|
|
184 |
<td align="right" valign="top" background="images/bg_bage_0a.gif"><img src="images/dot_white.gif" width="1" height="1"></td>
|
|
|
185 |
</tr>
|
|
|
186 |
<tr>
|
|
|
187 |
<td colspan="3" background="images/bg_favourits2.gif"><table width="100%" border="0" cellspacing="5" cellpadding="0">
|
|
|
188 |
<tr>
|
|
|
189 |
<td valign="top" class="fav_txt"><span class="fav_head">Reason for release</span><br>
|
|
|
190 |
<br>
|
| 19 |
rsolanki |
191 |
<!-- This version needs to be rebuild on new sysbase_types 1.5.0.mas<br> -->
|
| 13 |
rsolanki |
192 |
</td>
|
|
|
193 |
</tr>
|
|
|
194 |
</table></td>
|
|
|
195 |
</tr>
|
|
|
196 |
<tr>
|
|
|
197 |
<td valign="bottom" background="images/bg_bage_0a.gif"><img src="images/dot_white.gif" width="1" height="1"></td>
|
|
|
198 |
<td background="images/bg_bage_0a.gif"><img src="images/spacer.gif" width="190" height="3"></td>
|
|
|
199 |
<td align="right" valign="bottom" background="images/bg_bage_0a.gif"><img src="images/dot_white.gif" width="1" height="1"></td>
|
|
|
200 |
</tr>
|
|
|
201 |
</table>
|
|
|
202 |
<br>
|
|
|
203 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
|
204 |
<tr>
|
|
|
205 |
<td valign="top" background="images/bg_bage_0a.gif"><img src="images/dot_white.gif" width="1" height="1"></td>
|
|
|
206 |
<td background="images/bg_bage_0a.gif"><img src="images/spacer.gif" width="10" height="3"></td>
|
|
|
207 |
<td align="right" valign="top" background="images/bg_bage_0a.gif"><img src="images/dot_white.gif" width="1" height="1"></td>
|
|
|
208 |
</tr>
|
|
|
209 |
<tr background="images/bg_gray.gif">
|
|
|
210 |
<td colspan="3" background="images/bg_favourits2.gif"><table width="100%" border="0" cellspacing="5" cellpadding="0">
|
|
|
211 |
<tr>
|
|
|
212 |
<td valign="top" class="fav_txt"><span class="fav_head">Fixed Issues</span><br>
|
|
|
213 |
<br>
|
|
|
214 |
<table width="100%" border="0" cellspacing="0" cellpadding="2">
|
| 19 |
rsolanki |
215 |
<!-- <tr>
|
| 13 |
rsolanki |
216 |
<td><img src="icons/i_bulet.gif" width="4" height="4" hspace="5"></td>
|
|
|
217 |
<td><a href="#" class="fav_link">DEVI-021532</a></td>
|
|
|
218 |
</tr>
|
|
|
219 |
<tr>
|
|
|
220 |
<td><img src="icons/i_bulet.gif" width="4" height="4" hspace="5"></td>
|
|
|
221 |
<td><a href="#" class="fav_link">DEVI-021534</a></td>
|
|
|
222 |
</tr>
|
|
|
223 |
<tr>
|
|
|
224 |
<td width="1%"><img src="icons/i_bulet.gif" width="4" height="4" hspace="5"></td>
|
|
|
225 |
<td width="100%"><a href="#" class="fav_link">DEVI-021536</a></td>
|
| 19 |
rsolanki |
226 |
</tr> -->
|
| 13 |
rsolanki |
227 |
</table></td>
|
|
|
228 |
</tr>
|
|
|
229 |
</table></td>
|
|
|
230 |
</tr>
|
|
|
231 |
<tr>
|
|
|
232 |
<td valign="bottom" background="images/bg_bage_0a.gif"><img src="images/dot_white.gif" width="1" height="1"></td>
|
|
|
233 |
<td background="images/bg_bage_0a.gif"><img src="images/spacer.gif" width="190" height="3"></td>
|
|
|
234 |
<td align="right" valign="bottom" background="images/bg_bage_0a.gif"><img src="images/dot_white.gif" width="1" height="1"></td>
|
|
|
235 |
</tr>
|
|
|
236 |
</table></td>
|
|
|
237 |
<td width="1%"><img src="images/spacer.gif" width="15" height="400"></td>
|
|
|
238 |
</tr>
|
|
|
239 |
</table>
|
|
|
240 |
<!-- END OF PERSONAL BAR ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
|
|
241 |
<%End If%>
|
|
|
242 |
</td>
|
|
|
243 |
</tr>
|
|
|
244 |
<tr>
|
|
|
245 |
<td background="images/bg_bage_0a.gif"><img src="images/spacer.gif" width="1" height="15"></td>
|
|
|
246 |
<td background="images/bg_bage_1.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
|
|
247 |
<td bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="1"></td>
|
|
|
248 |
<td bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="1"></td>
|
|
|
249 |
</tr>
|
|
|
250 |
<tr>
|
|
|
251 |
<td bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="20"></td>
|
|
|
252 |
<td bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="1"></td>
|
|
|
253 |
<td bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="1"></td>
|
|
|
254 |
<td bgcolor="#FFFFFF"> </td>
|
|
|
255 |
</tr>
|
|
|
256 |
</table>
|
|
|
257 |
<!-- FOOTER ++++++++++++++++ -->
|
|
|
258 |
<!--#include file="_footer.asp"-->
|
|
|
259 |
<!-- +++++++++++++++++++++++ -->
|
|
|
260 |
</body>
|
|
|
261 |
</html>
|
|
|
262 |
<%
|
|
|
263 |
'------------ RUN AFTER PAGE RENDER -----------
|
|
|
264 |
Set objPMod = Nothing
|
|
|
265 |
Set objCrumbs = Nothing
|
|
|
266 |
Set objTabControl = Nothing
|
|
|
267 |
'----------------------------------------------
|
|
|
268 |
%><!--#include file="common/globals_destructor.asp"-->
|