Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

For implementers with an existing installation of 2.0.X or , 2.1.X , or 2.2 the changes described below should be executed after the release is built during the upgrade process. 

  • To upgrade from 2.0.X follow the upgrade instructions for BOTH the 2.1 and 2.2 Release Notes after deploying the 2.3 code
  • To upgrade from 2.1.X follow the upgrade instructions for the 2.2 Release Notes after deploying the 2.3 code
  • Add instructions for SSP-2218 (map full plan printout template change)A change to the MAP Plan Full Printout was made to fix the Financial Aid Information option when printing or emailing the plan.  SSP-2218 contains all of the details with the following steps to correct the template
    • SQL to delete a change request that will be made manually below
      • delete from databasechangelog where id = 'Update Full Map Printout for SSP-1894';
    • Message template change: In SSP administration, System Configuration, Message Templates edit the MAP Plan Full Printout.
    • Find this section and replace the first line with 
      • #if($includeFinancialAidInformation)

     

    Code Block
        #if($includeHeaderFooter)
        <div style="width: 980px">
            <div style="left:10px;margin-top:30px">
            <p style="text-align:left; color:#000000;">
            <strong>Attempted Hours - </strong> $!attemptedHours
            </p>
            <p style="text-align:left; color:#000000;">
            <strong>Completed Hours - </strong> $!completedHours
            </p>
            <p style="text-align:left; color:#000000;">
            <strong>Current Completion Rate - </strong> $!completionRage
            </p>
            <p style="text-align:left; color:#000000;text-indent:15px;">
            <strong>Number of hours needed to earn 67% completion rate - </strong> $!neededFor67PercentCompletion
            </p>
            <p style="text-align:left; color:#000000;">
            <strong>Financial Aid Cum GPA - </strong> $!financialAidGpa
            </p>
            <p style="text-align:left; color:#000000;text-indent:15px;">
            <strong>Number of needed to earn a 2.0 Cum GPA with all B - </strong> $!hoursNeededB
            </p>
        </div>
  • New installations of 2.3.0 are not required to make any additional change

...