'Insert' Database activity with SAS table - executed as 'insert default values'

Hello,
When I am trying to insert new rows into SAS table (empty SAS table, created using sql script in the ‘Execute Non Query’ activity in the same UiPath process, I am getting a following error on SAS side:
"When LAPUSR in “ODBCAPPL”(0) tried to EXECUTE INSERT INTO
rpa.invoices DEFAULT VALUES BY SQLVIEW:
ERROR: SQL passthru expression contained these errors: ERROR 22-322:
Syntax error, expecting one of the following: (, SELECT, SET, VALUES…
ERROR 76-322: Syntax error, statement will be ignored…
"

and following in UiPath:
"
{
“message”: “Insert: ERROR [S1000] [SAS][SAS ODBC Driver][SAS Server]ERROR 22-322: Syntax error, expecting one of the following: (, SELECT, SET, VALUES.\r\nERROR [S1000] [SAS][SAS ODBC Driver][SAS Server] 76-322: Syntax error, statement will be ignored.”,
“level”: “Error”,
“logType”: “Default”,
“timeStamp”: “16:11:25”,
“processVersion”: “1.0.0”,
“jobId”: “929649dd-b7ac-402b-9dfe-4f2086ee1d45”,
“robotName”: “T-1000”,
“machineId”: 83431,
“organizationUnitId”: 144314,
“fileName”: “Main”
}
"
So it looks like datatable values are not correctly ‘parsed’ into SQL command and just DEFAULT VALUES is used.

When I output rows from UiPath to SAS using For Each Row and Execute Non-Query then it all works fine:

Is there anything I am missing when using Insert activity from Database package?