DBA Data[Home] [Help]

APPS.FND_REQUEST_SET dependencies on FND_RUN_REQ_PP_ACTIONS

Line 506: from fnd_run_req_pp_actions

502: and critical = 'Y';
503:
504: cursor stage_req_printers(parent_req_id number, set_program_id number) is
505: select arguments printer, number_of_copies
506: from fnd_run_req_pp_actions
507: where parent_request_id = parent_req_id
508: and request_set_program_id = set_program_id
509: and action_type = 1
510: order by sequence;

Line 515: from fnd_run_req_pp_actions

511:
512: cursor stage_req_notifications(parent_req_id number,
513: set_program_id number) is
514: select arguments notify
515: from fnd_run_req_pp_actions
516: where parent_request_id = parent_req_id
517: and request_set_program_id = set_program_id
518: and action_type = 2
519: order by sequence;

Line 524: from fnd_run_req_pp_actions

520:
521: cursor stage_req_layouts(parent_req_id number,
522: set_program_id number) is
523: select argument1, argument2, argument3, argument4, argument5
524: from fnd_run_req_pp_actions
525: where parent_request_id = parent_req_id
526: and request_set_program_id = set_program_id
527: and action_type = 6
528: order by sequence;