进程中的Plsql代码:
我想根据我在顶点页面过程中的项目选择加入两个程序:
P1_text_field
- 如果我输入一些电子邮件ID,则过程1应该正常工作P2_select_list
- 如果我在此字段中输入某些内容,则过程2应该有效。答案 0 :(得分:0)
听起来你想在提交过程中编写一些条件PL / SQL:
if :P1_TEXT_FIELD is not null then
procedure_1;
elsif :P2_SELECT_LIST is not null then
procedure_2;
end if;
这仅在提交页面时运行,可以是用户单击按钮或由项目本身触发时(参见项目属性)。