[Home] [Help]
592:
593: CURSOR c_get_rgn_langs
594: IS
595: SELECT COUNT(*)
596: FROM gr_region_languages
597: WHERE region_code = p_region_code;
598:
599: /* Recipient Information */
600:
621: OPEN c_get_rgn_langs;
622: FETCH c_get_rgn_langs INTO l_record_count;
623: IF l_record_count <> 0 THEN
624: l_return_status := 'E';
625: l_msg_data := l_msg_data || 'gr_region_languages, ';
626: END IF;
627: CLOSE c_get_rgn_langs;
628:
629: /* Now do the recipient information */