
FND_STANDARD.FORM_INFO('$Revision: 115.12 $', 'Template Form', 'FND',
'$Date: 2003/12/19 11:02 $', '$Author: appldev $');
app_standard.event('PRE-FORM');
app_window.set_window_position('XX425457_EMPLOYEES', 'FIRST_WINDOW');


--APP_STANDARD.EVENT('QUERY_FIND');
--APP_FIND.QUERY_FIND(<results block window>,
--<Find window>,
--<Find window block>);
--And write the following code in that trigger:
APP_FIND.QUERY_FIND('XX425457_EMPLOYEES', 'QUERY_FIND','QUERY_FIND');

--IF :parameter.G_query_find = TRUE THEN
-- COPY (<find Window field>,<results field>);
-- :parameter.G_query_find := FALSE;
--END IF;
--Write the following code
IF :parameter.G_query_find = 'TRUE' THEN
COPY(:QUERY_FIND.EMPNO_FIND, 'XX425457_EMPLOYEES.EMPNO');
:parameter.G_query_find := 'FALSE';
END IF;

app_find.clear;

app_find.new('XX425457_EMPLOYEES');

:parameter.G_query_find := 'TRUE';
app_find.find('XX425457_EMPLOYEES');
:parameter.G_query_find := 'FALSE';


2573

被折叠的 条评论
为什么被折叠?



