[Home] [Help]
267:
268: -- Get the details of school meaning from lookups to print in the log file
269: CURSOR c_get_sch_code IS
270: SELECT meaning
271: FROM igs_lookups_view
272: WHERE lookup_type = 'OR_SYSTEM_ID_TYPE'
273: AND lookup_code = 'DL_SCH_CD'
274: AND enabled_flag = 'Y';
275: c_get_sch_code_rec c_get_sch_code%ROWTYPE;