更新:它按预期工作只需要传递正确的ID,DUH!〜
我在salesforce中有一个自定义对象,有点像案例的评论部分.当您添加新注释时,它具有该条目的日期/时间戳,我想在创建新案例注释时更新先前案例注释日期/时间戳.
我想像这样做一个更新:
$updateFields = array(
'Id'=>$comment_id, // This is the Id for each comment
'End_Date__c'=>$record_last_modified_date
);
function sfUpdateLastCommentDate($sfConnection, $updateFields) {
try {
$sObjectCustom = new SObject();
$sObjectCustom->type = 'Case_Custom__c';
$sObjectCustom->fields = $updateFields;
$createResponse = $sfConnection->update(array($sObjectCustom));
} catch(Exception $e) {
$error_msg = SALESFORCE_ERROR." \n";
$error_msg .= $e->faultstring;
$error_msg .= $sfConnection->getLastRequest();
$error_msg .= SALESFORCE_MESSAGE_BUFFER_NEWLINE;
// Send error message
mail(ERROR_TO_EMAIL, ERROR_EMAIL_SUBJECT, $error_msg, ERROR_EMAIL_HEADER_WITH_CC);
exit;
}
}
我也尝试过UPSERT,但是我得到了错误:
Missing argument 2 for SforcePartnerClient::upsert()
任何帮助都会很棒
解决方法:
Duh,我想通了,传递了错误的Id.需要传递commentId但是传递了recordId