DBA Data[Home] [Help]

APPS.JTF_DPF_RULES_PKG dependencies on JTF_DPF_RULE_PARAMS

Line 338: delete from jtf_dpf_rule_params where

334: X_LAST_UPDATE_LOGIN => 0) ; -- fnd_global.conc_login_id);
335:
336: -- the seed data specifies that the rule (appid, rule_name)
337: -- has no param with sequence higher than x_num_params
338: delete from jtf_dpf_rule_params where
339: rule_id = t_old_rule_id and
340: rule_param_sequence > x_num_params;
341: end if;
342: end;

Line 357: insert into jtf_dpf_rule_params(

353: begin
354: l_user_id := 0;
355: if x_owner = 'SEED' then l_user_id := 1; end if;
356:
357: insert into jtf_dpf_rule_params(
358: rule_param_sequence,
359: rule_id,
360: rule_param_condition,
361: rule_param_name,

Line 396: update jtf_dpf_rule_params set

392: begin
393: l_user_id := 0;
394: if x_owner = 'SEED' then l_user_id := 1; end if;
395:
396: update jtf_dpf_rule_params set
397: rule_param_name = x_rule_param_name,
398: rule_param_value = x_rule_param_value,
399: rule_param_condition = x_rule_param_condition,
400: object_version_number = object_version_number +1,