DBA Data[Home] [Help]

APPS.PON_FORMS_JRAD_PVT dependencies on FND_API

Line 1286: x_result := fnd_api.g_ret_sts_error;

1282: BEGIN
1283: PON_FORMS_UTIL_PVT.print_debug_log(l_api_name, 'BEGIN-');
1284:
1285: -- initialize to error
1286: x_result := fnd_api.g_ret_sts_error;
1287:
1288: -- always use VO1 for independent repeating section
1289: v_view_name := g_values_viewName || '1';
1290:

Line 1428: x_result := fnd_api.g_ret_sts_success;

1424: --------------------------------------
1425:
1426: rval := JDR_DOCBUILDER.save;
1427:
1428: x_result := fnd_api.g_ret_sts_success;
1429:
1430: PON_FORMS_UTIL_PVT.print_debug_log(l_api_name, 'END');
1431:
1432: EXCEPTION

Line 1434: x_result := fnd_api.g_ret_sts_error;

1430: PON_FORMS_UTIL_PVT.print_debug_log(l_api_name, 'END');
1431:
1432: EXCEPTION
1433: WHEN OTHERS THEN
1434: x_result := fnd_api.g_ret_sts_error;
1435: x_error_code := SQLCODE;
1436: x_error_message := SUBSTR(SQLERRM, 1, 100);
1437: 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);
1438:

Line 1640: x_result := fnd_api.g_ret_sts_success;

1636: JDR_DOCBUILDER.setTopLevelElement(mainDoc, v_section_element);
1637:
1638: rval := JDR_DOCBUILDER.save;
1639:
1640: x_result := fnd_api.g_ret_sts_success;
1641:
1642: PON_FORMS_UTIL_PVT.print_debug_log(l_api_name, 'END');
1643:
1644: EXCEPTION

Line 1646: x_result := fnd_api.g_ret_sts_error;

1642: PON_FORMS_UTIL_PVT.print_debug_log(l_api_name, 'END');
1643:
1644: EXCEPTION
1645: WHEN OTHERS THEN
1646: x_result := fnd_api.g_ret_sts_error;
1647: x_error_code := SQLCODE;
1648: x_error_message := SUBSTR(SQLERRM, 1, 100);
1649: 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);
1650:

Line 3092: x_result :=fnd_api.g_ret_sts_success;

3088: rval := JDR_DOCBUILDER.save;
3089:
3090: PON_FORMS_UTIL_PVT.print_debug_log(l_api_name, 'Finished saving to JDR repository');
3091:
3092: x_result :=fnd_api.g_ret_sts_success;
3093:
3094: PON_FORMS_UTIL_PVT.print_debug_log(l_api_name, 'END');
3095:
3096: EXCEPTION

Line 3098: x_result := fnd_api.g_ret_sts_error;

3094: PON_FORMS_UTIL_PVT.print_debug_log(l_api_name, 'END');
3095:
3096: EXCEPTION
3097: WHEN OTHERS THEN
3098: x_result := fnd_api.g_ret_sts_error;
3099: x_error_code := SQLCODE;
3100: x_error_message := SUBSTR(SQLERRM, 1, 100);
3101: 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);
3102:

Line 3130: x_result :=fnd_api.g_ret_sts_success;

3126: create_form(p_form_id, x_result, x_error_code, x_error_message);
3127:
3128: create_abstract_table(p_form_id, x_result, x_error_code, x_error_message);
3129:
3130: x_result :=fnd_api.g_ret_sts_success;
3131:
3132: EXCEPTION
3133: WHEN OTHERS THEN
3134: x_result := fnd_api.g_ret_sts_error;

Line 3134: x_result := fnd_api.g_ret_sts_error;

3130: x_result :=fnd_api.g_ret_sts_success;
3131:
3132: EXCEPTION
3133: WHEN OTHERS THEN
3134: x_result := fnd_api.g_ret_sts_error;
3135: x_error_code := SQLCODE;
3136: x_error_message := SUBSTR(SQLERRM, 1, 100);
3137: 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);
3138:

Line 3160: x_result := fnd_api.g_ret_sts_error;

3156: l_api_name CONSTANT VARCHAR2(30) := 'CREATE_JRAD';
3157:
3158: BEGIN
3159: -- initialize to error
3160: x_result := fnd_api.g_ret_sts_error;
3161:
3162: PON_FORMS_UTIL_PVT.print_debug_log(l_api_name, 'BEGIN-');
3163:
3164: -- the overall logic to generate jrad is as follows -

Line 3199: x_result := fnd_api.g_ret_sts_success;

3195: elsif (v_form_type = 'ABSTRACT') then
3196: create_abstract(p_form_id, x_result, x_error_code, x_error_message);
3197: end if;
3198:
3199: x_result := fnd_api.g_ret_sts_success;
3200:
3201: PON_FORMS_UTIL_PVT.print_debug_log(l_api_name, 'END');
3202:
3203: EXCEPTION

Line 3205: x_result := fnd_api.g_ret_sts_error;

3201: PON_FORMS_UTIL_PVT.print_debug_log(l_api_name, 'END');
3202:
3203: EXCEPTION
3204: WHEN OTHERS THEN
3205: x_result := fnd_api.g_ret_sts_error;
3206: x_error_code := SQLCODE;
3207: x_error_message := SUBSTR(SQLERRM, 1, 100);
3208: 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);
3209: