Basically what I want to achieve is looping through G_F0X array to make my code more compact without using for example:
APEX_APPLICATION.G_F01(1);
APEX_APPLICATION.G_F02(1);
APEX_APPLICATION.G_F03(1);
For sure, it's not working but I can't find any information anywhere and I don't know how to do it .
ex:
for counter in 1..3 loop
APEX_APPLICATION.G_F0**{here comes the counter value}**(1);
end loop;