I'm hoping to get some help with the syntax for calling a function (provided by 3rd party software) that returns a boolean value.
This is the full extent of the documentation provided on the function by the third party.
It should be fairly simple for me to enter a call to this function in Oracle SQL Developer in a way that works returns a value, but I can't find any useful help on doing this. All the help I can find is on writing functions and procedures. I just want to call one!
Any suggestions?
This is the full extent of the documentation provided on the function by the third party.
Code:
f_validate_answer
FUNCTION f_validate_answer(p_pidm gobansr.gobansr_pidm%TYPE,
p_num gobansr.gobansr_num%TYPE,
p_answer gobansr.gobansr_ansr_desc%TYPE)
RETURN BOOLEAN
Parameters
p_pidm NUMBER(,) Required Key
p_num NUMBER(,) Required Key
It should be fairly simple for me to enter a call to this function in Oracle SQL Developer in a way that works returns a value, but I can't find any useful help on doing this. All the help I can find is on writing functions and procedures. I just want to call one!
Any suggestions?