我有一个应用程序,我已经创建了经典报告。它有4列。
SELECT KEY,
APEX_ITEM.TEXT(6,attribute3,10) attribute3,
APEX_ITEM.HIDDEN(3,KEY) ||
APEX_ITEM.TEXT(4,attribute1, 10) attribute1,
APEX_ITEM.TEXT(5,attribute2, 10) attribute2
FROM table1 ;
我想根据attribute1动态更改attribute2的值。
attribute2 = attribute3*attribute1
,其中attribute3将被预取,attribute1将为entered by user
。
我想根据attribute1中的更改动态计算attribute3。
Version: 4.2.1