Hi Michael,
I apologize you are having trouble with the Solutions Deployment Tool, I took a look at your support incident and it looks like you identified the issue with the firewall and will be working to setup a dedicated machine to deploy the solutions.
In regards to your question about the pop-up configuration. The solution is using a custom pop-up attribute display. You will want to add the following html:
<font face="Avenir Light">The <b>{PROJNAME}</b> project will accomplish the following: <br /><br />{PROJDESC}<br /><br /></font><font face="Avenir Light"><b>Schedule</b><br /><br />Planned Start Date: <b>{PLANSTART}</b><br />Actual Start Date: <b>{ACTSTART}</b><br /><br />Planned Completion Date: <b>{PLANEND}</b> <br />Actual Completion Date: <b>{ACTEND}</b><br /></font><font face="Avenir Light"><br />
<span><b>Phase</b></span>
<table style=" border-collapse: separate; border-spacing: 6px 4px; width: 100%; table-layout: fixed;">
<tbody><tr height="16">
<td style="{expression/expr2}"></td>
<td style="{expression/expr3}"></td>
<td style="{expression/expr4}"></td>
<td style="{expression/expr5}"></td>
</tr>
<tr height="24" style="text-align: center;">
<td>PreDesign</td>
<td>Design</td>
<td>Construction</td>
<td>Closeout</td>
</tr>
</tbody></table>
</font><font face="Avenir Light"><b>Budget</b><br /> <br />The project is </font><b><font face="Avenir Light"><font color="#228b22">{expression/expr0}</font><font color="#ff0000">{expression/expr1}</font><font color="#000000">.<br /> </font></font></b><font face="Avenir Light"><br />If you have any questions, please contact:<br /><br /><b>{POCNAME}<br /></b>T: {POCPHONE}<br /><a href="mailto: {POCEMAIL}" target="_blank">{POCEMAIL}</a> </font>
Next you will need to add some attribute expressions:
First add an attribute expression called Under Budget
if ($feature.actcost <= $feature.estcost) {
return Text(Abs($feature.actcost - $feature.estcost), '$#,###') + ' under budget'
}
return
Add an attribute expression called Over Budget
if ($feature.actcost > $feature.estcost) {
return Text(Abs($feature.actcost - $feature.estcost), '$#,###') + ' over budget'
}
return
Add an attribute expression called PreDesign
if ($feature.projphase == 'PreDesign') {
return 'background-color:#1987bb'
}
return 'background-color:#DDDDDD'
Repeat the previous step for the phases Design, Construction, and Closeout replacing the text in the code with the appropriate phase.
This should be everything you need to define the custom pop-up display. I see in the technical support incident you also had a question about how to change the project to funded and then after that how you edit the actual start date, actual cost, project phase or other active project information.
To edit the project phase you are going to use the Capital Project Review application and to edit information about the active projects you will want to use the Capital Project Reports application.