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.
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:
Create trigger to insert column depending on value of other column from the same table
Vinish
The trigger would be fine. You are missing the semicolon. Below is the corrected code: create or replace TRIGGER INSERT_COLUMN2_TABLE1 BEFORE INSERT OR UPDATE ON TABLE1 FOR EACH ROW begin -- IF :NEW.COLUMN ='REQUESTED' THEN :NEW.COLUMN2 := 'REQUEST_PENDING'; ELSIF :NEW.COLUMN ='NOT_REQUESTED' THEN :Read more
The trigger would be fine. You are missing the semicolon. Below is the corrected code:
See lessInsert different entries in table depending on action of user
Vinish
Correct, I missed it 😀
Correct, I missed it 😀
See lessInsert different entries in table depending on action of user
Vinish
Your approach is fine. But you can use the single function for both the buttons. You can pass the parameter to the function. Below is an example: Create or Replace Function insert_acc_den (p_value in varchar2) return boolean is begin insert into your_table (your_column) values (p_value); return trueRead more
Your approach is fine. But you can use the single function for both the buttons. You can pass the parameter to the function. Below is an example:
You can now create two processes in Apex, each one will be executed on a particular button (accepted/denied). Below is the process code example:
See lessHow to set application item for session user?
Vinish
The issue seems in your if condition. You are comparing as: if v_state = v_state which is wrong. I think, it should be: if v_state = v_stored_state Also, after end if; return the v_page. Following is the complete code: declare v_state varchar2(50); v_stored_state varchar2(50); v_page number; begin vRead more
The issue seems in your if condition. You are comparing as:
if v_state = v_state
which is wrong.
I think, it should be:
if v_state = v_stored_state
Also, after end if; return the v_page. Following is the complete code:
See lessInteractive Report dynamic multiple page link in Oracle Apex
Vinish
Follow the same steps but instead of #LINK_COLUMN# use &LINK_COLUMN. .
Follow the same steps but instead of #LINK_COLUMN# use &LINK_COLUMN. .
See lessHow to set application item for session user?
Vinish
The code seems to be correct. At what point you are calling this process?
The code seems to be correct.
At what point you are calling this process?