Is it possible to have an SQL parameter in which is just asks for a numerical value to input into a formula? It would be a non-existing field that would just import whichever value I wanted.
Everything I've seen for SQL parameters is that you input a field and it asks you which value to use for the field. I simply want a random numeric value.
For example:
SELECT
vtr."Billing Date"
vtr."Amount"
vtr."AP"/(1+{PARAMETER})
FROM vtr
WHERE
vtr.Customer='AAA'
I would then input .12 when it asked and the formula would generate.
Is this doable?
Everything I've seen for SQL parameters is that you input a field and it asks you which value to use for the field. I simply want a random numeric value.
For example:
SELECT
vtr."Billing Date"
vtr."Amount"
vtr."AP"/(1+{PARAMETER})
FROM vtr
WHERE
vtr.Customer='AAA'
I would then input .12 when it asked and the formula would generate.
Is this doable?