Plugin error.
Question:
I created a simple configuration using the "all" macro to include all fields from the Account object:
{ "objects": [ { "query": "SELECT all FROM Account", "operation": "Insert" } ] }However, I received an error:
The SOQL query for sObject Account does not include any field that can be updated or inserted.Why does it not recognize any fields, even though I can normally access the Account object?
Answer:
The issue arises because SFDMU did not find fields writable for the selected operation (creatable/updatable based on metadata/FLS), so DML cannot proceed.
To resolve this, ensure your user has required create/edit permissions for the object and fields (profile/permission sets), and include at least one field that is actually writable.