DBA Data[Home] [Help]

APPS.FA_RX_PUBLISH dependencies on APP_EXCEPTION

Line 1229: app_exception.raise_exception;

1225: END IF;
1226: IF (m_column_count = 0) THEN
1227: fnd_message.set_name('OFA', 'FA_RX_NO_DISPLAYED_COLUMNS');
1228: -- fa_rx_util_pkg.Log(fnd_message.get);
1229: app_exception.raise_exception;
1230: END IF;
1231:
1232: --
1233: -- Get currency columns

Line 2486: app_exception.raise_exception;

2482: end loop;
2483:
2484: if numcols = 0 then
2485: -- There were no break columns!
2486: app_exception.raise_exception;
2487: end if;
2488:
2489: sqlstmt := sqlstmt || ' FROM '||p_formats(idx).interface_table
2490: || ' WHERE REQUEST_ID = '||to_char(p_formats(idx).request_id);

Line 2509: app_exception.raise_exception;

2505: IF (g_print_debug) THEN
2506: fa_rx_util_pkg.debug('Expand_Complex_Multiformat: ' || 'Cannot use complex mode for these sets of reports');
2507: END IF;
2508: fnd_message.set_name('OFA', 'FA_RX_INVALID_USE_OF_COMPLEX');
2509: app_exception.raise_exception;
2510: end;
2511: for idx in 1..numcols loop
2512: dbms_sql.define_column(c, idx, buf, 400);
2513: end loop;

Line 2632: app_exception.raise_exception;

2628: pos := 0;
2629: line := 0;
2630: if not calculate_pos(i, 'Y', m_report.page_width, last_pos, last_line) then
2631: -- fa_rx_util_pkg.Log(fnd_message.get);
2632: app_exception.raise_exception;
2633: end if;
2634: pos := last_pos;
2635: line := last_line;
2636:

Line 2652: app_exception.raise_exception;

2648:
2649: if m_formats(i).group_display_type = 'GROUP ABOVE' then
2650: if not calculate_pos(i, 'N', m_report.page_width, last_pos, last_line) then
2651: -- fa_rx_util_pkg.Log(fnd_message.get);
2652: app_exception.raise_exception;
2653: else
2654: line := line + last_line;
2655: end if;
2656: end if;

Line 2669: app_exception.raise_exception;

2665: -- Check page height
2666: if max_lines*2 + 20 > m_report.page_height then
2667: fnd_message.set_name('OFA', 'FA_RX_PAGE_HEIGHT_TOO_SMALL');
2668: -- fa_rx_util_pkg.Log(fnd_message.get);
2669: app_exception.raise_exception;
2670: end if;
2671: end if;
2672:
2673: end Validate_Report;