cfstoredproc not working in CF2018
We are going thru upgrade from CF10 to CF18. The same code used to call oracle stored procedure in CF10 fails in CF2018. I am not sure what may have changed with this tag but the error message doesn't make sense to me based on values I am passing. I can confirm the store procedure is working fine.
Code:
<cftry>
<cfstoredproc procedure="pps_owner.prodplan.sp_CalcProduction" datasource="#session.datasource#">
<cfprocparam type="In" cfsqltype="cf_sql_numeric" dbvarname="STR_NUM" value="6005" null="No">
<cfprocparam type="In" cfsqltype="cf_sql_numeric" dbvarname="CAT_ID" value="20" null="No">
<cfprocparam type="In" cfsqltype="cf_sql_varchar" dbvarname="PLN_RUN_TS" value="31-Jul-2019 17:20:37" null="No">
</cfstoredproc>
<cfcatch type="database"><cfdump var="#cfcatch#"><cfabort></cfcatch>
</cftry>

