I have a user-defined function on the AS400 in a library called ddiamond.
If I login as pddiamond, and then run the following:
I get the error message: Qualified object name UDFFIXSTRING not valid.
If I instead add ddiamond to my library list and then run
It works fine. Does anyone know why I cannot qualify the udf?
If I login as pddiamond, and then run the following:
Code:
select
dxnacd,
ddiamond.udfFixString(dxnae3)
from zndxdf00
If I instead add ddiamond to my library list and then run
Code:
select
dxnacd,
udfFixString(dxnae3)
from zndxdf00