Hi 🙂
as mentioned in this thread -> viewtopic.php?f=8&t=2217
i try to create a module (public if you like)
I created a calculated field :
public function install() {
// Here you can place installation process for the module
$field = array('name' => _M('LastEdit'), 'type'=>'calculated', 'required'=>false, 'visible'=>true, 'display_callback'=>array('CRM_Company','LastEdit'));
Utils_RecordBrowserCommon::new_record_field ('company', $field);
return true; // Return true on success and false on failure
}
but the record browser shows that
('CRM_Company','LastEdit'));
is invalid.
i would like to access the date of the last related note ... this can not be so hard... or am i wrong?
kind regard 🙂
Patrick