New text on all buttons in application
bjarkekrFeb 26 2009 — edited Feb 26 2009I was wondering how to do an update on the database to set a new label text for all buttons with a specified label text.
f.x. I have 44 buttons with the label "annuller" and I would like it to be "tilbage" instead.
I found the buttons using this query:
select *
from apex_application_page_buttons
where upper(label) = 'ANNULLER';
Thanks.