Hey, Dev!
Are you looking for a forum full of active developers to help you?
So if you want to:
โก๏ธ Get answers for your development issues
โก๏ธ Help others
โก๏ธ Write an article
โก๏ธ Get rewarded for your active participation
Then this place is just for you and it is 100% FREE.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
how to clear username password cache
Vinish
You need to control it from your browser.
You need to control it from your browser.
See lessSet Foreign Key depending on PopUp-LoV Selection
Vinish
I think your function should be as below: create or replace function search_id (p_key_value in number) return number is found_person number; begin select m.ID into found_person from MANAGER m where p_key_value=m.ID ; if sql%rowcount = 1 then return found_person; end if ; exception when no_data_foundRead more
I think your function should be as below:
Apex code:
Add P75_RESPONSIBLE to submit items.
See lessSet Foreign Key depending on PopUp-LoV Selection
Vinish
The last one sounds good. Start implementing; it should be fine.
The last one sounds good. Start implementing; it should be fine.
See lessTemporarily store and retrieve data
Vinish
I think you can store the data temporarily in the tables, and if there is no consent or the user presses the cancel button, you can silently delete using the dynamic action to execute server-side code.
I think you can store the data temporarily in the tables, and if there is no consent or the user presses the cancel button, you can silently delete using the dynamic action to execute server-side code.
See lessError during Remote deployment
Vinish
For the first deployment, you will have to accept any auto-generated application number. Then you can maintain it further by overwriting the app with the same number.
For the first deployment, you will have to accept any auto-generated application number. Then you can maintain it further by overwriting the app with the same number.
See lessCreate trigger that updates table depending on column value of other table
Vinish
The trigger is the absolutely right approach for this. And your code also seems correct but need a little change in update statement as below: update TABLE2 set PAGE=16 AND STEP1='TEXT123' where TBLID1 = :new.TBL1ID;
The trigger is the absolutely right approach for this. And your code also seems correct but need a little change in update statement as below:
Issue in interactive grid while creating dynamic action in Oracle APEX
Vinish
If your interactive grid source is SQL query then fine else change it to SQL query and modify the query as below: Select a, b, case when a != b then 'red' else 'black' end acolor from yourTable The above SQL query will add one more column acolor, set this column as a hidden column. Then set the follRead more
If your interactive grid source is SQL query then fine else change it to SQL query and modify the query as below:
The above SQL query will add one more column acolor, set this column as a hidden column.
Then set the following HTML expression property for column A:
Now on the IG load, it will take the effect.
You can keep your dynamic action as is.
See lessInsert different entries in table depending on action of user
Vinish
Are you doing double click on the Submit button? You should click once. Try creating submit button as shown in the following tutorial: https://www.foxinfotech.in/2020/08/oracle-apex-dynamic-action-submit-page-example.html
Are you doing double click on the Submit button? You should click once.
Try creating submit button as shown in the following tutorial:
https://www.foxinfotech.in/2020/08/oracle-apex-dynamic-action-submit-page-example.html
See lessCreate trigger to insert column depending on value of other column from the same table
Vinish
Replace the keyword ELSEIF with ELSIF. In PL/SQL it is written as ELSIF.
Replace the keyword ELSEIF with ELSIF. In PL/SQL it is written as ELSIF.
See lessInsert different entries in table depending on action of user
Vinish
You can make the process to run on click of the specific button. You will find the setting in process properties > server-side condition > when button pressed. Also, you can modify the function to run first update and if update fails then insert. Below is an example: Create or Replace FunctionRead more
You can make the process to run on click of the specific button. You will find the setting in process properties > server-side condition > when button pressed.
Also, you can modify the function to run first update and if update fails then insert. Below is an example: