APEX Tips : Call PL/SQL Code Using a Dynamic Action
Dynamic actions allow you to break out of the normal page submit flow to perform actions, but you need to understand session state.
oracle miscconfigurationintermediate
by OracleDba
12 views
Dynamic actions allow you to break out of the normal page submit flow to perform actions, but you need to understand session state.
12345678910111213141516171819202122232425
CREATE TABLE t1 (
code VARCHAR2(10)
);
Name: P1_LIST
Type: Select List
LOV Type: Static Values
Static Values: One, ONE, Two, TWO
Display Extra Values: No
Display Null Value: No
Name: P1_LIST_CHANGE
Event: Change
Selection Type: Item(s)
Item(s): P1_LIST
Action: Execute PL/SQL Code
PL/SQL Code:
BEGIN
INSERT INTO t1 VALUES (:P1_LIST);
COMMIT;
END;
Items to Submit: {null}1
Items to Submit: P1_LISTPlease to add comments
No comments yet. Be the first to comment!