DBA Data[Home] [Help]

APPS.IGC_CBC_INQUIRY_PKG dependencies on FND_APPLICATION

Line 27: l_gl_application_id fnd_application.application_id%TYPE;

23: p_set_of_books_id IN gl_period_statuses.set_of_books_id%TYPE,
24: p_gl_budget_version_id IN gl_budget_versions.budget_version_id%TYPE
25: ) IS
26:
27: l_gl_application_id fnd_application.application_id%TYPE;
28:
29: CURSOR c_gl_periods IS
30: SELECT period_name,
31: period_num,

Line 46: FROM fnd_application

42: -- Obtain the application ID that will be used throughout this process.
43: -- --------------------------------------------------------------------
44: SELECT application_id
45: INTO l_gl_application_id
46: FROM fnd_application
47: WHERE application_short_name = 'SQLGL';
48:
49: OPEN c_gl_periods;
50: FETCH c_gl_periods INTO g_period_name,g_period_num,g_quarter_num,g_period_year;