The error message indicates that the import failed due to the Column number limitations. You can try the below workarounds to solve the above issue.
Approach 1:
As you only need 30 columns out of 300 columns, set those column names manually in the ServiceNow API URL. This will import the schema for only the given columns and will overcome the pagination.
Approach 2:
As the error message suggests you can set the sysparm_suppress_pagination_header
to true
which bypasses the pagination, and you can query it without pagination.
Approach 3:
If its allowed, you can also create a view of required columns in your ServiceNow and access that view in the dataset to avoid the pagination. If the creation view is not allowed, try to make a staging table and copy the data of required columns to it.
Hope this helps.
If the answer is helpful, please click Accept Answer and kindly upvote it. If you have any further questions about this answer, please click Comment.