DBA Data[Home] [Help]

APPS.FA_RX_UTIL_PKG dependencies on APP_EXCEPTION

Line 652: app_exception.raise_exception;

648: END IF;
649:
650: if p_placeholder_name is null then
651: log('Placeholder name must not be NULL.');
652: app_exception.raise_exception;
653: end if;
654: if p_column_type not in ('VARCHAR2', 'DATE', 'NUMBER') then
655: log('Unknown column type = '||p_column_type);
656: app_exception.raise_exception;

Line 656: app_exception.raise_exception;

652: app_exception.raise_exception;
653: end if;
654: if p_column_type not in ('VARCHAR2', 'DATE', 'NUMBER') then
655: log('Unknown column type = '||p_column_type);
656: app_exception.raise_exception;
657: end if;
658: if p_column_type = 'VARCHAR2' and p_column_length is null then
659: log('Length must be specified for columns of type VARCHAR2');
660: app_exception.raise_exception;

Line 660: app_exception.raise_exception;

656: app_exception.raise_exception;
657: end if;
658: if p_column_type = 'VARCHAR2' and p_column_length is null then
659: log('Length must be specified for columns of type VARCHAR2');
660: app_exception.raise_exception;
661: end if;
662:
663: l_index := Find_Column_Index(p_key);
664: