DBA Data[Home] [Help]

APPS.FND_REQUEST dependencies on FND_CONC_PP_ACTIONS

Line 1072: insert into fnd_conc_pp_actions

1068: print_warning := 'Y';
1069: end if;
1070:
1071:
1072: insert into fnd_conc_pp_actions
1073: (concurrent_request_id, action_type, status_s_flag,
1074: status_w_flag, status_f_flag, last_update_date,
1075: last_updated_by, creation_date, last_update_login,
1076: created_by, arguments, completed, number_of_copies,

Line 1135: insert into fnd_conc_pp_actions

1131:
1132: -- Insert Notifications
1133:
1134: for i in 1..P_NOTIFICATION_COUNT loop
1135: insert into fnd_conc_pp_actions
1136: (concurrent_request_id, action_type, status_s_flag,
1137: status_w_flag, status_f_flag, last_update_date,
1138: last_updated_by, creation_date, last_update_login,
1139: created_by, arguments, completed, number_of_copies,

Line 1156: insert into fnd_conc_pp_actions

1152:
1153: -- Insert layout options
1154: if (P_TEMPLATE_CODE is not null) then
1155:
1156: insert into fnd_conc_pp_actions
1157: (concurrent_request_id, action_type, status_s_flag,
1158: status_w_flag, status_f_flag, last_update_date,
1159: last_updated_by, creation_date, last_update_login,
1160: created_by, completed, sequence, argument1, argument2,

Line 2676: from fnd_conc_pp_actions

2672: empty_notify_array notification_tab_type;
2673:
2674: cursor c_users is
2675: select arguments
2676: from fnd_conc_pp_actions
2677: where concurrent_request_id = reqid
2678: and action_type = 2
2679: order by sequence;
2680: begin