Can a form Function be called from Record group - Form 6i [message #594047] |
Thu, 22 August 2013 23:59  |
 |
anoopmanagoli
Messages: 20 Registered: August 2012 Location: india
|
Junior Member |
|
|
Hi All,
I want to create Query based LOV in Oracle Form 6i.
The Query i write in record group is as follows :
SELECT DISTINCT
nr.rec_locator AS rec_locator,
car.car_dte AS car_date,
Get_car_info(:CON.REF_NO) AS car_number
FROM car_list_entries car,
contact_details cdt,
name_records nr
WHERE car.car_id = cdt.car_id
AND cdt.nr_id = nr.id
AND cdt.con_ref_no = :CON.REF_NO
/* Get_car_info( x NUMBER) is a Form Function */
this throws an error :
It says
frm-12001 (Cannot Create the Record Group (Check your Query)
Kindly guide how can i use the Form function to get the desired output.
Many Thanks,
Anoop.
|
|
|
|
|