PL / SQL动态动作

时间:2013-11-26 23:00:44

标签: oracle oracle-apex

有一些PL / SQL代码的另一个问题。

我的booking form目前已将动态操作应用于discount字段。单选按钮设置为YesNo。单击是后,将启用字段VouchercodeDiscountamount

我想要做的是在NOT NULL时将这些字段设置为discount = yes。如果null

,则为discount = no

由于

1 个答案:

答案 0 :(得分:1)

听起来您想要更改VouchercodeDiscountamount字段中的必需验证,具体取决于discount'Yes'

为此,您需要更改验证码 - 您不需要动态操作。

e.g。而不是检查是否Vouchercode IS NOT NULL,更改验证以检查Vouchercode IS NOT NULL OR discount = 'Yes'