Topic by Steven Naek
I am saving data to my report from my custom script. My code below is not working. Don't know why.I have a custom object named Domain.The object has 3 fields ID, FR and EN. ID is auto-populated i believe. Thank you for your response.
$domainSave = new RNCPHP\CO\Domain();
$domainSave->FR = "Plomberie";
$domainSave->EN = "Plumbing";
$domainSave->save(RNCPHP\RNObject::SuppressAll);
RNCPHP\ConnectAPI::commit();