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 the tool did not find any updatable fields, defaulting all fields to read-only mode.

    To resolve this, ensure that your user account has the necessary create/edit permissions for the Account object or fields. Check your user profile permissions and any additional permissions granted by Permission Sets or Licenses.

Last updated on 20th Apr 2024