DBA Data[Home] [Help]

APPS.BIS_GRAPH_REGION_HTML_FORMS dependencies on FND_FORM_FUNCTIONS

Line 93: fnd_form_functions.web_html_call%TYPE

89:
90: TYPE t_func_rec IS RECORD(menu_name
91: fnd_menu_entries_vl.prompt%TYPE
92: ,web_html_call
93: fnd_form_functions.web_html_call%TYPE
94: ,web_args
95: fnd_form_functions.web_html_call%TYPE
96: ,parameters
97: fnd_form_functions.parameters%TYPE

Line 95: fnd_form_functions.web_html_call%TYPE

91: fnd_menu_entries_vl.prompt%TYPE
92: ,web_html_call
93: fnd_form_functions.web_html_call%TYPE
94: ,web_args
95: fnd_form_functions.web_html_call%TYPE
96: ,parameters
97: fnd_form_functions.parameters%TYPE
98: ,function_id
99: fnd_form_functions.function_id%TYPE

Line 97: fnd_form_functions.parameters%TYPE

93: fnd_form_functions.web_html_call%TYPE
94: ,web_args
95: fnd_form_functions.web_html_call%TYPE
96: ,parameters
97: fnd_form_functions.parameters%TYPE
98: ,function_id
99: fnd_form_functions.function_id%TYPE
100: -- mdamle 03/21/2001
101: ,menu_id

Line 99: fnd_form_functions.function_id%TYPE

95: fnd_form_functions.web_html_call%TYPE
96: ,parameters
97: fnd_form_functions.parameters%TYPE
98: ,function_id
99: fnd_form_functions.function_id%TYPE
100: -- mdamle 03/21/2001
101: ,menu_id
102: fnd_menu_entries.menu_id%TYPE
103: );

Line 115: --- IN: a record out of the fnd_form_functions table

111: ---==========================================================================
112: --- FUNCTION has_good_report
113: ---
114: --- arguments:
115: --- IN: a record out of the fnd_form_functions table
116: --- OUT: a boolean
117: ---
118: --- action: Returns TRUE if the funciton described int he record
119: --- meets certain criteria. The criteria are meant to be

Line 236: FROM fnd_form_functions

232: , parameters
233: INTO
234: l_function_web_call
235: , l_function_parameters
236: FROM fnd_form_functions
237: WHERE function_id = l_function_id;
238:
239: fnd_profile.get_specific
240: (

Line 530: l_web_html_call fnd_form_functions.web_html_call%TYPE;

526: l_default_resp_Id number;
527: l_foundResp boolean;
528: p_Resps_rec p_Resps%ROWTYPE;
529: l_function_id number;
530: l_web_html_call fnd_form_functions.web_html_call%TYPE;
531:
532: begin
533: begin
534: select function_id, web_html_call

Line 536: from fnd_form_functions

532: begin
533: begin
534: select function_id, web_html_call
535: into l_function_id, l_web_html_call
536: from fnd_form_functions
537: where function_name = pFunctionName;
538: exception
539: when others then l_function_id := null;
540: end;