DBA Data[Home] [Help]

APPS.PAYPLNK dependencies on PAY_ACTION_PARAMETERS

Line 2923: from pay_action_parameters

2919: and pct.batch_id = p_batch_id;
2920: --
2921: cursor cur_max is
2922: select fnd_number.canonical_to_number(parameter_value)
2923: from pay_action_parameters
2924: where parameter_name = 'BEE_LOCK_MAX_WAIT_SEC';
2925: --
2926: cursor cur_intw is
2927: select fnd_number.canonical_to_number(parameter_value)

Line 2928: from pay_action_parameters

2924: where parameter_name = 'BEE_LOCK_MAX_WAIT_SEC';
2925: --
2926: cursor cur_intw is
2927: select fnd_number.canonical_to_number(parameter_value)
2928: from pay_action_parameters
2929: where parameter_name = 'BEE_LOCK_INTERVAL_WAIT_SEC';
2930: --
2931: cursor csr_table_inp_ids(
2932: -- Business group id was taken out because input value inherits the bg from the element type.

Line 3073: -- and polling interval time from pay_action_parameters. If values

3069: -- Set the retry duration and maximum wait values if one hasn't assigned.
3070: if g_lock_max_wait is null then
3071: --
3072: -- Attempt to find out the BEE interlock max wait time
3073: -- and polling interval time from pay_action_parameters. If values
3074: -- cannot be found in this table then default to a max wait of 0
3075: -- seconds and polling interval of 0 seconds.
3076: --
3077: open cur_max;