Functions hook
Use this hook to code (common) functions to use in the other hooks of the table extension. This helps you in reusing code and to keep the other hooks small and clear.
Functions that are called through with.old.object.values.do()
and with.object.set.do()
in the other hooks of the extension must be coded in this hook.
Example:
function get.old.nama()
{
old.nama = tccom100.nama
}
function string format.date(long i.date)
{
return(utc.to.iso(i.date, UTC_ISO_DIFF))
}