Darwin,
If you want to save the current year only when you create a new SR, this jython script on SR OBJECT solves it:
# Script: set_current_year_on_create.py
# Descripción: Save current year on field "CURR_YEAR" when you create a new SR
from psdi.server import MXServer
from java.util import Calendar
# Get current year
current_year = Calendar.getInstance().get(Calendar.YEAR)
# Set the value of the persistent field
mbo.setValue("CURR_YEAR", current_year)

Then I will try to pass you the other one, when the SR object is modified.
Regards!
------------------------------
Martin Fabra
ARSAT S.A. - Actively seeking employment
------------------------------