var P_ENV = 'int'
var p_sqlText: CALL LS_**${P_ENV}**.HIID_SECURED.sp_getStatCertSaltValue(:1,:2);
var stmt = snowflake.createStatement({sqlText:p_sqlText,binds: [P_ENV,P_STARTCERTID] });
var rs = stmt.execute();
rs.next();
var p_saltvalue= rs.getColumnValue(1);
Unable to execute these lines in an stored procedure - calling the stored procedure with in the stored procedure - Thoughts please