Henka,
Could you please be specific on how to pass output from a TYPE to Forms as a REF CURSOR. Example code would be great!
Thanks!
Main Topics
Browse All TopicsI'm receiving the following error message when I try to access a TYPE using a program unit in Forms Builder 9i.
Error 999 at line 3, column 9 - implemenation restriction (maybe temporary) ADT or schema level collection not supported at client side with non-OCI mode.
How can I use the following code in forms builder?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
You can also check the link http://www.experts-exchang
Oracle forms has a data type "Object REF" which could be used in case you have object types defined in your database.
By looking at your select statement, I think you can use a simple database block, which can work for you. Create a database block with the data source name as the table name "kat_test" and create display items/text items based on the required columns. Whenever required, you could use the built-in EXECUTE_QUERY to fetch the data into the defined items.
Business Accounts
Answer for Membership
by: HenkaPosted on 2009-09-02 at 22:50:10ID: 25248133
I think that it cannot be implemented directly because Forms PL/SQL engine is not the same as database PL/SQL engine. The version of Forms PL/SQL engine is lower.
You can create your procedure as stored package procedure on server and pass output to Forms as REF CURSOR. Also you can create a table and put results there and in Forms create block based on this table. Another way is create the block based on stored procedure.