DBA Data[Home] [Help]

APPS.HR_APPRAISAL_WORKFLOW_SS dependencies on FND_FORM_FUNCTIONS_VL

Line 294: lv_web_html_call fnd_form_functions_vl.web_html_call%type;

290: lv_profileValue VARCHAR2(1);
291: lv_status hr_api_transactions.status%type;
292: lv_link_label wf_message_attributes_vl.display_name%type;
293: lv_pageFunc wf_item_attribute_values.text_value%type;
294: lv_web_html_call fnd_form_functions_vl.web_html_call%type;
295: lv_params fnd_form_functions_vl.parameters%type;
296: lv_addtnlParams VARCHAR2(30) ;
297:
298:

Line 295: lv_params fnd_form_functions_vl.parameters%type;

291: lv_status hr_api_transactions.status%type;
292: lv_link_label wf_message_attributes_vl.display_name%type;
293: lv_pageFunc wf_item_attribute_values.text_value%type;
294: lv_web_html_call fnd_form_functions_vl.web_html_call%type;
295: lv_params fnd_form_functions_vl.parameters%type;
296: lv_addtnlParams VARCHAR2(30) ;
297:
298:
299: begin

Line 331: from fnd_form_functions_vl

327: -- get the web_html_call value and params for this function
328: begin
329: select web_html_call,parameters
330: into lv_web_html_call,lv_params
331: from fnd_form_functions_vl
332: where function_name=lv_pageFunc;
333: exception
334: when no_data_found then
335: hr_utility.set_location('Unable to retrieve function details,web_html_call and parameters for:'||lv_pageFunc||' '|| gv_package||'.'||c_proc, 10);