Salesforce - 更新/ Upsert自定义对象条目

时间:2010-03-10 15:59:05

标签: php salesforce

更新:正如预期的那样,只需要传递正确的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()

任何帮助都会很棒

1 个答案:

答案 0 :(得分:1)

Duh,我想通了,传递了错误的Id。需要传递commentId但是传递了recordId