我正在使用php工具包向salesforce发送记录。 Salesforce每天限制28000个插入。所以为了避免这种情况,我想要做的是将150个recors插入一个数组,然后插入salesforce。我这样150条记录只会打一次,我可以将更多数据上传到salesforce。请帮助我可以使用php进行操作。
$this->SFLinks[$i] = new SObject();
$this->SFLinks[$i]->fields = array(
'Name' => $fileName,
'CanaryAMS' => $sfPolicyId,
'Canary123AMS' => $url,
'Description__c' => $description,
'DocExternalId__c' => $documentKey
);
$this->SFLinks[$i]->type = 'CanaryAMS__Documents__c';
$checkreturn = $SforceConnection->upsert('CanaryAMS__DocExternalId__c',$this->SFLinks);