DBA Data[Home] [Help]

APPS.FND_MLS_REQUEST dependencies on FND_RUN_REQ_PP_ACTIONS

Line 82: from fnd_run_req_pp_actions

78: cursor mls_req_printers(parent_req_id number,
79: set_program_id number,
80: language varchar2) is
81: select arguments printer, number_of_copies
82: from fnd_run_req_pp_actions
83: where parent_request_id = parent_req_id
84: and request_set_program_id = set_program_id
85: and action_type = 1
86: and (nls_language = language

Line 94: from fnd_run_req_pp_actions

90: cursor mls_req_notifications(parent_req_id number,
91: set_program_id number,
92: language varchar2) is
93: select arguments notify
94: from fnd_run_req_pp_actions
95: where parent_request_id = parent_req_id
96: and request_set_program_id = set_program_id
97: and action_type = 2
98: and (nls_language = language

Line 106: from fnd_run_req_pp_actions

102: cursor mls_req_layouts(parent_req_id number,
103: set_program_id number,
104: language varchar2) is
105: select argument1, argument2, argument3, argument4, argument5
106: from fnd_run_req_pp_actions
107: where parent_request_id = parent_req_id
108: and request_set_program_id = set_program_id
109: and action_type = 6
110: and (nls_language = language

Line 117: from fnd_run_req_pp_actions

113:
114: cursor mls_function_req_layouts(parent_req_id number,
115: set_program_id number) is
116: select argument1, argument2, argument5
117: from fnd_run_req_pp_actions
118: where parent_request_id = parent_req_id
119: and request_set_program_id = set_program_id
120: and action_type = 6
121: order by sequence;