Hi @Holger von Thomsen,
Thanks for your response and insights on this.
Currently the SelectSQL Adapter is Selecting data from a VIEW but the performance for the View is not satisfactory.
So, the DB Team have come up with the FUNCTION which we are asked to invoke instead.
So, once the FUNCTION was created we thought we could choose the same from the list in the SelectSQL as we could with all other Tables and Views in the Schema.
P1 and P2 are Inputs passed by webMethods in the SelectSQL Adapter call
Currently
SELECT COLUMN1, COLUMN2
FROM [Schema].[VIEW] (@P1, @P2);
New
SELECT COLUMN1, COLUMN2
FROM [Schema].[FUNCTION] (@P1, @P2);
Also, do we have List which mentions the Possible Types supported? So far I have seen Type=TABLE, Type=VIEW only... so is TYPE=FUNCTION is it possible/permissible?

