我目前正在将APEX数据加载向导中带有值的CSV文件上传到下表中。触发器在Table1上的每次更新之前运行,但很难向用户显示htp输出。任何人都知道如何在APEX中做到这一点?
移动,地址,产品下,的评论
12312131,50 long street,Product1,null
1231231,14 blah place,Product2,comment4
create or replace trigger "TABLE1_T1"
BEFORE
update on "TABLE1"
for each row
begin
if :old.comments is not null then
htp.prn ('Warning: ' || :new.comments || ' will replace ' ||
:old.comments);
end if;
end;
答案 0 :(得分:0)
您无法从触发器打印消息。您可以进行验证,但这更像是错误而不是警告,因此您无法继续此过程。
或者您可以在before page submit
上添加一个动态操作,弹出确认消息,如果用户按下OK
,该过程将继续。
答案 1 :(得分:0)
您可以尝试使用APEX_ERROR
<Condition Message='Install Folder not found'>SQLSERVERINSTALLFOLDER</Condition>