Hi Is it possible to select a local variable in a sql query when using Function Body PLSQL returning SQL query type. Example: declare l_query varchar2(4000); l_practice varchar2(100); cursor c1 is select * from TABLE; begin for r1 in c1 loop //some code here l_practice := l_practice + r1.c001; end loop; l_query :='select '|| l_practice||' from TABLE'; return l_query; end;
Discy Latest Questions
where wrapper script is used with plsql.and reference material/link to go through?
Hello,I have one excel file with headings in it. I have one form which contains all fields related to excel file So what I want to do is when users fills the form and submits it should automatically open excel file filled with the data entered in form. Thanks in advance
Hello Everyone I Have Created a Form in my oracle apex application in which i'm Uploaing multiple images into database. I Want To Upload Images In compress Format (.zip) into database. Means user Selects Images like .jpg, .png etc. and when he uploads Images it Should be Converted Into zip and then store into database Thanks in Advance.
Hyy Vinish sir and dear all i have intercatve grid on my page i have many data as you can see what i want to do is update selected data . for example if user selects 3 data and press save button, the 3 data should get updated. the update action i want to perfom is something like this if :old_rate > 0 and :new_rate > :old_rate then UPDATE TABLE A SET audit_yn='Y', audit_date=to_date(sysdate,'dd/mm/rrrr'), auditor=:APP_USER, authority=XYZ', auth_date=to_date(sysdate,'dd/mm/rrrr'), auth_yn='Y' WHERE ref_no = :ref_no and to_date(to_char(ref_date,'dd/mm/yyyy'),'dd/mm/yyyy') = to_date(:ref_date,'dd/mm/rrrr'); else UPDATE A SET audit_yn='Y', audit_date=to_date(sysdate,'dd/mm/rrrr'), auditor=:APP_USER end if; Thanks in advance..
Dear Vinish Sir i'm trying to send email from my apex 19.1,i'm getting following error ORA-04063: package body "APEX_190100.WWV_FLOW_MAIL" has errors ORA-06508: PL/SQL: could not find program unit being called: "APEX_190100.WWV_FLOW_MAIL" Can You help me out.? and in my toad if i try to compile this APEX_190100.WWV_FLOW_MAIL package i'm getting error as package body is wrapped cannot do anything any solution please?
Dear Vinish i want to create a login page with new user and old user authentication.. for eg if a user has user id and password he can login from login page. but if a user is new to he has to create login credentials.. currenty i have already created custom authentication as shown in your link 'https://www.foxinfotech.in/2019/09/create-custom-authentication-in-5-easy-steps-in-oracle-apex.html' i have also placed a link on login page 'to create new user press here' and redirected the link to another page in application but as i have created autentication i'm not able to redirect to other page from login screen thanks in advance can anyone help me out?
Hi! I am trying to redirect page using DA and PL/SQL and set items value. Friendly URLs is switch to on. Thanks in advance!
I have created application item and application Computation in shared component and refrenced it in desktop navigation menu but the thing is i want to change the colour of application item which i have refrenced ..
Hyy Good morning i want to create online booking system,i want to create date and time picker some thing likethis as shown in image Thanks in advance..