Apex 4.2
Oracle 11g R2
Hi, I am using tabular form but not sure about the custom process if using wizard to create a tabular form.
I have a tabular form based on the following.
select
"ROWID",
"F_ID
"M_DATE",
"RM_TYPE",
"TEXT1",
"TEXT2",
from "TEST_TAB"
WHERE F_ID= :P30_F_ID
I made a custom process as I need it.
BEGIN
FOR i IN 1 .. apex_application.g_f01.COUNT -- what value should i use here??? please!
LOOP
INSERT INTO TEST_TAB
(F_ID , M_DATE,RM_TYPE,TEXT1,TEXT2
)
VALUES (apex_application.g_f01
);
END LOOP;
END;
I does not work.
Thank you.
T