<%@LANGUAGE="VBSCRIPT"%> <% '===================================================== '| | '| Processes Dependant | '| | '===================================================== %> <% Option explicit ' Good idea to set when using redirect Response.Expires = 0 ' always load the page, dont store %> <% '------------ ACCESS CONTROL ------------------ %> <% '------------ Variable Definition ------------- Dim rsTemp Dim rsQry '------------ Constants Declaration ----------- '------------ Variable Init ------------------- '---------------------------------------------- %> <% Function Get_Processes ( NNpv_id ) Get_Processes = _ " SELECT * FROM PACKAGE_PROCESSES pp, PROCESSES p WHERE pp.PROC_ID = p.PROC_ID AND PV_ID ="&NNpv_id&"ORDER BY p.PROC_NAME" End Function %> <%=Title(Request("rtag_id"))%>
<%Call RenderActionBar(parRtag_id,parPv_id)%>
<%Call RenderStatus(parRtag_id,parPv_id)%>  
 
<%Call Generate_Tab_Menu ( TABarray1, "Processes", "orange" )%>
 
<%Call Action_Buttons ( "Add Process" )%>  

Processes
<%Set rsTemp = OraDatabase.DbCreateDynaset( Get_Processes ( parPv_id ), cint(0))%> <%If rsTemp.RecordCount < 1 Then%> <%End If%> <%While ((NOT rsTemp.BOF) AND (NOT rsTemp.EOF))%> <%If pkgInfoHash.Item("dlocked") = "N" OR (pkgInfoHash.Item("dlocked") = "R") Then%> <%Else%> <%End If%> <%rsTemp.MoveNext WEnd rsTemp.Close Set rsTemp = nothing%>
Health Tag   Process Description   Command Interface Interface Owner
             
<%=rsTemp("proc_name")%> <%=rsTemp("proc_description")%> <%=rsTemp("run_as")%> <%=rsTemp("is_interface")%> <%=rsTemp("pkg_owner")%>" onClick="return confirmDelete('this process');">Remove from list.Remove disabled.


 
<% Call Destroy_All_Objects %>