metricsign
Start free
Medium severityconfigurationMicrosoft Fabric

Power BI Refresh Error:
Fabric Copy Activity Error 20743

What does this error mean?

The 'fileForbidden' skip error file setting is not supported in the current copy activity configuration. This option is only available when using direct binary copy with a folder as the source.

Common causes

  • 1The 'fileForbidden' property is set in skipErrorFile but the copy activity source is a single file rather than a folder
  • 2Copy activity is not using direct binary copy mode, making fileForbidden incompatible
  • 3skipErrorFile settings were bulk-applied from a template without verifying source configuration compatibility

How to fix it

  1. 1Step 1: Open the copy activity settings in your Fabric Data Factory pipeline.
  2. 2Step 2: Navigate to the 'skipErrorFile' section of the copy activity JSON payload.
  3. 3Step 3: Remove the 'fileForbidden' property from the skipErrorFile configuration.
  4. 4Step 4: If you need to skip files that return permission/forbidden errors, reconfigure the copy activity to use direct binary copy with a folder as the source.
  5. 5Step 5: Save and re-run the pipeline to verify successful execution.

Frequently asked questions

What does 'fileForbidden' in skipErrorFile actually do?

When properly configured, fileForbidden allows the copy activity to skip files that return access-denied or forbidden errors (e.g., files the service principal lacks permission to read), continuing the copy for other files in the folder.

Is error 20743 the same issue as error 20744?

They are related but distinct. Error 20743 occurs because the copy activity is not using direct binary copy with a folder source. Error 20744 occurs because the specific connector being used does not support the fileForbidden skip option at all.

Other configuration errors