DBA Data[Home] [Help]

APPS.FA_RX_PUBLISH dependencies on APP_EXCEPTION

Line 1213: app_exception.raise_exception;

1209: END IF;
1210: IF (m_column_count = 0) THEN
1211: fnd_message.set_name('OFA', 'FA_RX_NO_DISPLAYED_COLUMNS');
1212: -- fa_rx_util_pkg.Log(fnd_message.get);
1213: app_exception.raise_exception;
1214: END IF;
1215:
1216: --
1217: -- Get currency columns

Line 2418: app_exception.raise_exception;

2414: end loop;
2415:
2416: if numcols = 0 then
2417: -- There were no break columns!
2418: app_exception.raise_exception;
2419: end if;
2420:
2421: sqlstmt := sqlstmt || ' FROM '||p_formats(idx).interface_table
2422: || ' WHERE REQUEST_ID = '||to_char(p_formats(idx).request_id);

Line 2441: app_exception.raise_exception;

2437: IF (g_print_debug) THEN
2438: fa_rx_util_pkg.debug('Expand_Complex_Multiformat: ' || 'Cannot use complex mode for these sets of reports');
2439: END IF;
2440: fnd_message.set_name('OFA', 'FA_RX_INVALID_USE_OF_COMPLEX');
2441: app_exception.raise_exception;
2442: end;
2443: for idx in 1..numcols loop
2444: dbms_sql.define_column(c, idx, buf, 400);
2445: end loop;

Line 2564: app_exception.raise_exception;

2560: pos := 0;
2561: line := 0;
2562: if not calculate_pos(i, 'Y', m_report.page_width, last_pos, last_line) then
2563: -- fa_rx_util_pkg.Log(fnd_message.get);
2564: app_exception.raise_exception;
2565: end if;
2566: pos := last_pos;
2567: line := last_line;
2568:

Line 2584: app_exception.raise_exception;

2580:
2581: if m_formats(i).group_display_type = 'GROUP ABOVE' then
2582: if not calculate_pos(i, 'N', m_report.page_width, last_pos, last_line) then
2583: -- fa_rx_util_pkg.Log(fnd_message.get);
2584: app_exception.raise_exception;
2585: else
2586: line := line + last_line;
2587: end if;
2588: end if;

Line 2601: app_exception.raise_exception;

2597: -- Check page height
2598: if max_lines*2 + 20 > m_report.page_height then
2599: fnd_message.set_name('OFA', 'FA_RX_PAGE_HEIGHT_TOO_SMALL');
2600: -- fa_rx_util_pkg.Log(fnd_message.get);
2601: app_exception.raise_exception;
2602: end if;
2603: end if;
2604:
2605: end Validate_Report;