我正在尝试通过批量api更新联系人记录的一个字段-Ext_Id__c。我们创建了具有两列的csv文件,并且标题名称中没有空格。
我正在创建作业,并通过一个简单的Java客户端将批处理推送到该作业。刺戳和批次已成功创建,但是并没有更新联系人,而是在错误下方显示了
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath)
{
print("hello welcome on this news page")
// dismiss(animated: true, completion: nil)
if data[indexPath.row].name == "Entertainment"
{
let storyboard = UIStoryboard(name: "Main", bundle: Bundle.main)
let destination = storyboard.instantiateViewController(withIdentifier: "WhiteViewController") as! FourthViewController
navigationController?.pushViewController(destination, animated: true)
dismiss(animated: true, completion: nil)
print("Welcome on Business..!")
}
}
我在两个字段上都具有字段级别的所有必要访问权限。谁能帮忙吗?