SQL - Understanding Oracle Apex - Application.g - FNN and How To Use It - Stack Overflow
SQL - Understanding Oracle Apex - Application.g - FNN and How To Use It - Stack Overflow
select id,
name,
telephone,
apex_item.checkbox2(10,id) as "Tick when Contacted",
apex_item.text(20,my_date) as "Date Contacted",
apex_item.textarea(30,my_comment,5,80) as "Comment"
from my_table
ID MY_DATE MY_COMMENT
1 26/08/2012 Comment A
3 27/08/2012 Comment B
5 28/08/2012 Comment C
7 29/08/2012 Comment D
9 30/08/2012 Comment E
By using our site, you acknowledge that you have read and understand our Cookie Policy, Privacy Policy, and our
Unfortunately I am unsure how to
Terms of Service.
achieve this using
https://stackoverflow.com/questions/12142143/understanding-oracle-apex-application-g-fnn-and-how-to-use-it 1/4
12/6/2018 sql - Understanding Oracle Apex_Application.G_Fnn and how to use it - Stack Overflow
apex_application.G_F10.COUNT .
1 Answer
https://stackoverflow.com/questions/12142143/understanding-oracle-apex-application-g-fnn-and-how-to-use-it 2/4
12/6/2018 sql - Understanding Oracle Apex_Application.G_Fnn and how to use it - Stack Overflow
On submit process:
DECLARE
v_empno emp.empno%TYPE;
v_ename emp.ename%TYPE;
BEGIN
--f10: checkbox
--f20: empno
--f30: ename
--f50: empno again
for i in 1..apex_application.g_f10.
loop
for j in 1..apex_application.g_f
if apex_application.g_f10(i)
then
-- access values for the s
v_empno := apex_applicatio
v_ename := apex_applicatio
apex_debug_message.log_mes
end if;
end loop;
end loop;
END;
Debug output:
https://stackoverflow.com/questions/12142143/understanding-oracle-apex-application-g-fnn-and-how-to-use-it 3/4
12/6/2018 sql - Understanding Oracle Apex_Application.G_Fnn and how to use it - Stack Overflow
By using our site, you acknowledge that you have read and understand our , , and our
.
https://stackoverflow.com/questions/12142143/understanding-oracle-apex-application-g-fnn-and-how-to-use-it 4/4