DBA Data[Home] [Help]

APPS.PA_PWP_SUMM_PKG dependencies on GL_PERIOD_STATUSES

Line 168: FROM gl_period_statuses GL1

164: SELECT start_date
165: , end_date
166: INTO l_start_date
167: ,l_end_date
168: FROM gl_period_statuses GL1
169: , pa_implementations pa
170: WHERE GL1.set_of_books_id = pa.set_of_books_id
171: AND GL1.APPLICATION_ID = 101 --bug 8208525
172: AND GL1.CLOSING_STATUS = 'O'

Line 175: FROM gl_period_statuses GL2

171: AND GL1.APPLICATION_ID = 101 --bug 8208525
172: AND GL1.CLOSING_STATUS = 'O'
173: AND start_date =
174: (SELECT MAX(GL2.start_date)
175: FROM gl_period_statuses GL2
176: WHERE GL2.set_of_books_id = GL1.set_of_books_id
177: AND GL2.APPLICATION_ID = 101
178: AND GL2.CLOSING_STATUS = 'O'
179: );