Ik maak gebruik van de NMBRS V2 koppeling, echter wanneer ik de tabellen via UniversalSQL probeer op te halen krijg ik een foutmelding.
itgensop048
Unable to handle request without a valid action parameter.
Please supply a valid soap action.
Check with the custom error message instructions of the Nmbrs platform used.
Het gaat onder andere om de volgende tabellen:
CompanyRunPayslipsByCompanyRunYear
CompanyRunWageCodesV2ByCompanyRunYear
waarbij ik wel de juist informatie CompanyId
, intYear
(wanneer nodig) en RunId
meegeef.
De tabel CompanyRunEmployeesV2ByCompanyRunYear
werkt wél naar behoren.
Zo geeft de volgende query wél resultaat:
select *
from CompanyRunEmployeesV2ByCompanyRunYear
( CompanyId => 141108
, intYear => 2025
, RunId => 71294
)
Maar dit niet:
select *
from CompanyRunWageCodesV2ByCompanyRunYear
( CompanyId => 141108
, intYear => 2025
, RunId => 71294
)
of:
select *
from CompanyRunPayslipsByCompanyRunYear
( CompanyId => 141108
, RunId => 71294
)
Gaat hier iets mis aan de kant van Invantive, of ligt het aan mijn query? Ik kan namelijk niet meer meegeven om de tabel op te halen.