DBA Data[Home] [Help]

APPS.PON_FORMS_JRAD_PVT dependencies on FND_API

Line 1156: x_result := fnd_api.g_ret_sts_error;

1152: BEGIN
1153: PON_FORMS_UTIL_PVT.print_debug_log(l_api_name, 'BEGIN-');
1154:
1155: -- initialize to error
1156: x_result := fnd_api.g_ret_sts_error;
1157:
1158: -- always use VO1 for independent repeating section
1159: v_view_name := g_values_viewName || '1';
1160:

Line 1298: x_result := fnd_api.g_ret_sts_success;

1294: --------------------------------------
1295:
1296: rval := JDR_DOCBUILDER.save;
1297:
1298: x_result := fnd_api.g_ret_sts_success;
1299:
1300: PON_FORMS_UTIL_PVT.print_debug_log(l_api_name, 'END');
1301:
1302: EXCEPTION

Line 1304: x_result := fnd_api.g_ret_sts_error;

1300: PON_FORMS_UTIL_PVT.print_debug_log(l_api_name, 'END');
1301:
1302: EXCEPTION
1303: WHEN OTHERS THEN
1304: x_result := fnd_api.g_ret_sts_error;
1305: x_error_code := SQLCODE;
1306: x_error_message := SUBSTR(SQLERRM, 1, 100);
1307: PON_FORMS_UTIL_PVT.print_error_log(l_api_name, 'EXCEPTION - x_result=' || x_result || ' x_error_code=' || x_error_code || ' x_error_message=' || x_error_message || ' SQLERRM=' || SQLERRM);
1308:

Line 1510: x_result := fnd_api.g_ret_sts_success;

1506: JDR_DOCBUILDER.setTopLevelElement(mainDoc, v_section_element);
1507:
1508: rval := JDR_DOCBUILDER.save;
1509:
1510: x_result := fnd_api.g_ret_sts_success;
1511:
1512: PON_FORMS_UTIL_PVT.print_debug_log(l_api_name, 'END');
1513:
1514: EXCEPTION

Line 1516: x_result := fnd_api.g_ret_sts_error;

1512: PON_FORMS_UTIL_PVT.print_debug_log(l_api_name, 'END');
1513:
1514: EXCEPTION
1515: WHEN OTHERS THEN
1516: x_result := fnd_api.g_ret_sts_error;
1517: x_error_code := SQLCODE;
1518: x_error_message := SUBSTR(SQLERRM, 1, 100);
1519: PON_FORMS_UTIL_PVT.print_error_log(l_api_name, 'EXCEPTION - x_result=' || x_result || ' x_error_code=' || x_error_code || ' x_error_message=' || x_error_message || ' SQLERRM=' || SQLERRM);
1520:

Line 2931: x_result :=fnd_api.g_ret_sts_success;

2927: rval := JDR_DOCBUILDER.save;
2928:
2929: PON_FORMS_UTIL_PVT.print_debug_log(l_api_name, 'Finished saving to JDR repository');
2930:
2931: x_result :=fnd_api.g_ret_sts_success;
2932:
2933: PON_FORMS_UTIL_PVT.print_debug_log(l_api_name, 'END');
2934:
2935: EXCEPTION

Line 2937: x_result := fnd_api.g_ret_sts_error;

2933: PON_FORMS_UTIL_PVT.print_debug_log(l_api_name, 'END');
2934:
2935: EXCEPTION
2936: WHEN OTHERS THEN
2937: x_result := fnd_api.g_ret_sts_error;
2938: x_error_code := SQLCODE;
2939: x_error_message := SUBSTR(SQLERRM, 1, 100);
2940: PON_FORMS_UTIL_PVT.print_error_log(l_api_name, 'EXCEPTION - x_result=' || x_result || ' x_error_code=' || x_error_code || ' x_error_message=' || x_error_message || ' SQLERRM=' || SQLERRM);
2941:

Line 2969: x_result :=fnd_api.g_ret_sts_success;

2965: create_form(p_form_id, x_result, x_error_code, x_error_message);
2966:
2967: create_abstract_table(p_form_id, x_result, x_error_code, x_error_message);
2968:
2969: x_result :=fnd_api.g_ret_sts_success;
2970:
2971: EXCEPTION
2972: WHEN OTHERS THEN
2973: x_result := fnd_api.g_ret_sts_error;

Line 2973: x_result := fnd_api.g_ret_sts_error;

2969: x_result :=fnd_api.g_ret_sts_success;
2970:
2971: EXCEPTION
2972: WHEN OTHERS THEN
2973: x_result := fnd_api.g_ret_sts_error;
2974: x_error_code := SQLCODE;
2975: x_error_message := SUBSTR(SQLERRM, 1, 100);
2976: PON_FORMS_UTIL_PVT.print_error_log(l_api_name, 'EXCEPTION - x_result=' || x_result || ' x_error_code=' || x_error_code || ' x_error_message=' || x_error_message || ' SQLERRM=' || SQLERRM);
2977:

Line 2999: x_result := fnd_api.g_ret_sts_error;

2995: l_api_name CONSTANT VARCHAR2(30) := 'CREATE_JRAD';
2996:
2997: BEGIN
2998: -- initialize to error
2999: x_result := fnd_api.g_ret_sts_error;
3000:
3001: PON_FORMS_UTIL_PVT.print_debug_log(l_api_name, 'BEGIN-');
3002:
3003: -- the overall logic to generate jrad is as follows -

Line 3038: x_result := fnd_api.g_ret_sts_success;

3034: elsif (v_form_type = 'ABSTRACT') then
3035: create_abstract(p_form_id, x_result, x_error_code, x_error_message);
3036: end if;
3037:
3038: x_result := fnd_api.g_ret_sts_success;
3039:
3040: PON_FORMS_UTIL_PVT.print_debug_log(l_api_name, 'END');
3041:
3042: EXCEPTION

Line 3044: x_result := fnd_api.g_ret_sts_error;

3040: PON_FORMS_UTIL_PVT.print_debug_log(l_api_name, 'END');
3041:
3042: EXCEPTION
3043: WHEN OTHERS THEN
3044: x_result := fnd_api.g_ret_sts_error;
3045: x_error_code := SQLCODE;
3046: x_error_message := SUBSTR(SQLERRM, 1, 100);
3047: PON_FORMS_UTIL_PVT.print_error_log(l_api_name, 'EXCEPTION - x_result=' || x_result || ' x_error_code=' || x_error_code || ' x_error_message=' || x_error_message || ' SQLERRM=' || SQLERRM);
3048: