DBA Data[Home] [Help]

APPS.FND_CP_OPP_CMD dependencies on FND_CONC_PP_ACTIONS

Line 48: from fnd_conc_pp_actions

44: begin
45:
46: select processor_id, completed
47: into cpid, complete
48: from fnd_conc_pp_actions
49: where concurrent_request_id = reqid
50: and action_type = 6
51: and sequence = 1;
52:

Line 58: update fnd_conc_pp_actions

54:
55: -- post-processor has not started yet, update the table with our id
56: -- so the post-processor will not pick it up.
57:
58: update fnd_conc_pp_actions
59: set processor_id = senderid
60: where concurrent_request_id = reqid;
61:
62: commit;