subjt
subjt

Reputation: 1

Simulate a button submit in oracle apex

Is there a way to simulate a button submit in oracle apex within a process?

Upvotes: 0

Views: 1173

Answers (2)

user989729
user989729

Reputation: 56

In the apex process you can have a check like if :request = 'SUBMIT' then

Write your pl/SQL processing statements and If you want to redirect to any page / URL then have the below example statement OWA_UTIL.redirect_url('f?p=103:4')

End if;

Upvotes: 1

cjs
cjs

Reputation: 339

What are you trying to accomplish? I don't think there is a way to send a button submit via the Apex API, but based on what your requirements are, the same effect might be obtained.

Upvotes: 0

Related Questions