[Home] [Help]
1178:
1179: --Cursor used to select the start_date for GL periods
1180: CURSOR gl_start_date_csr(c_period PA_PERIODS_ALL.PERIOD_NAME%TYPE) IS
1181: SELECT start_date
1182: FROM gl_period_statuses
1183: WHERE period_name = c_period
1184: AND application_id = PA_PERIOD_PROCESS_PKG.Application_id
1185: AND set_of_books_id = p_fp_cols_rec.x_set_of_books_id
1186: AND adjustment_period_flag = 'N';