DBA Data[Home] [Help]

APPS.FND_FORM_FUNCTIONS_PKG dependencies on FND_APPLICATION

Line 244: from fnd_application

240: (upper(web_html_call) not like '%.JSP%') ) then
241:
242: select lower(application_short_name)
243: into applname
244: from fnd_application
245: where application_id = FUNCTION_VALIDATION.application_id;
246:
247: web_html_call := 'oracle.apps.'||applname||'.'||web_html_call;
248: columns_name := columns_name||'WEB_HTML_CALL = '||web_html_call;

Line 772: from fnd_application

768:
769:
770: begin
771: select application_id into app_id
772: from fnd_application
773: where application_short_name = X_APPLICATION_SHORT_NAME;
774: exception when no_data_found then
775: app_id := null;
776: end;

Line 845: from fnd_application

841:
842: if (l_region_application_name is not null) then
843: begin
844: select application_id into rapp_id
845: from fnd_application
846: where application_short_name = X_REGION_APPLICATION_NAME;
847: exception when no_data_found then
848: rapp_id := null;
849: end;