Set date and time field in a CPM
Content
Hi,
I have a custom process that makes a logs information. I use the field DATA_FINAL (type: data and time) of object CO \ LOG_LUGGO. I just want to set a date in this field. I did a lot of tests, including setting a fixed date and still can't set it.
My OSvC version is 19B.
Is there any configuration I should enable to use this?
Below is a script of how I am trying to set this field in PHP.
Thanks for the help!
Version
19BCode Snippet
$log_cpm_luggo = new RNCPHP\CO\LOG_LUGGO(); $log_cpm_luggo->DATA_FINAL=time(); $log_cpm_luggo->save(RNCPHP\RNObject::SuppressAll);
0