DBA Data[Home] [Help]

APPS.EGO_ODI_PUB dependencies on FND_APPLICATION

Line 663: from FND_APPLICATION

659:
660: --retrieving application id from application name
661: select application_id
662: into x_resp_appl_id
663: from FND_APPLICATION
664: where application_short_name = p_resp_appl_name;
665:
666: RETURN TRUE;
667:

Line 2615: from FND_APPLICATION

2611:
2612: --retrieving responsibility_appl_name
2613: select APPLICATION_SHORT_NAME
2614: into l_responsibility_appl_name
2615: from FND_APPLICATION
2616: where application_id = l_application_id;
2617:
2618: --inserting responsibility_appl_name
2619: INSERT INTO EGO_PUB_WS_CONFIG (session_id,

Line 7026: FROM fnd_application

7022:
7023: /*Get appId for passed in application short name*/
7024: BEGIN
7025: SELECT application_id INTO l_application_id
7026: FROM fnd_application
7027: WHERE application_short_name =l_appl_name;
7028: EXCEPTION
7029: WHEN No_Data_Found THEN
7030: --Dbms_Output.put_line( ' The application name is not a valid application name.');