Hi @SASJedi , your answer corresponds to the one, I got from Tech Support! /*** "Function implementation type" should have a value of 'MVA+TK' ***/
proc format;
/* column functype identifies the return type (or not) of */
/* the function being described */
value $FUNCTYPE
'N' = 'DOUBLE'
'C' = 'CHAR'
'B' = 'CALL'
;
/* column funcprod identifies the environment(s) in which the */
/* function is supported. */ /* SAS MultiVendor Architecture (MVA) is the underlying design */ /* of the Foundation SAS system, beginning with SAS Version 6, */ /* which enables SAS to run on multiple vendor platforms. */ /* The lates evolution of Foundation SAS system architecture is */ /* Threded Kernel (see https://support.sas.com/kb/24/349.html) */ /* , or TK.*/
value $FUNCPROD
'X' = 'MVA+TK'
'B' = 'MVA'
'T' = 'TK'
'I' = 'IML'
;
options ls=78;
proc sql;
select fncname format=$16.,
fncprod format=$funcprod.,
fnctype format=$functype.,
fncargs format=octal10.,
minarg, maxarg
from dictionary.functions
order by fncprod, fncname;
quit;
... View more