Form个性化修改Lov
第一步: 创建Record Group:
Action Type: Builtin
Builtin Type: Create Record Group from Query
Argument: select user_name from fnd_user--查询语句
Group Nmae: CUX_FP_USER_NAME_QF--记录组名称
第二步: 修改Lov的Record Group:
Action Type: Property
Object Type: Lov
Target Object: CARRIER_NAME_QF--需要修改的LOV名称
Property Name:Group Name
Value : CUX_FP_USER_NAME_QF --新的记录组名称
Form个性化之调用存储过程有两种方式:
1. 在消息中调用Function:
Action Type: Message
Message Text: =cux_test_10_11_temp_pkg.test_ret(:CARRIER.CARRIER_NAME)
2. 直接调用存储过程:
Action Type: Builtin
Builtin Type: Execute a Procedure
Argument: 'begin cux_test_10_11_temp_pkg.test('''||${item.CARRIER.CARRIER_NAME.value}||'''); end'
或者:='begin cux_test_10_11_temp_pkg.test('''||:CARRIER.CARRIER_NAME||'''); end'
注: 在存储过程中使用事务处理需要commit请启用自治事务处理:PRAGMA AUTONOMOUS_TRANSACTION
Form个性化小记: 个性化调用存储过程,动态LOV
最新推荐文章于 2020-12-19 02:38:29 发布