DBA Data[Home] [Help]

APPS.AP_ACCTG_DATA_FIX_PKG dependencies on APP_EXCEPTION

Line 61: APP_EXCEPTION.RAISE_EXCEPTION;

57: FND_File.Put_Line(fnd_file.log,l_message);
58:
59: l_message := 'in side AP_ACCTG_DATA_FIX_PKG.Open_Log_Out_Files '||'

';
60: FND_File.Put_Line(fnd_file.log,l_message);
61: APP_EXCEPTION.RAISE_EXCEPTION;
62: END Open_Log_Out_Files;
63:
64:
65:

Line 135: APP_EXCEPTION.RAISE_EXCEPTION;

131:
132: l_message := 'in side '||l_calling_sequence||'

';
133: FND_File.Put_Line(fnd_file.log,l_message);
134:
135: APP_EXCEPTION.RAISE_EXCEPTION;
136: End Create_Temp_Acctg_Tables;
137:
138:
139: /* Procedure to get all the columns for a particular table.

Line 174: APP_EXCEPTION.RAISE_EXCEPTION;

170: FND_File.Put_Line(fnd_file.log,l_message);
171:
172: l_message := 'in side '||l_calling_sequence||'

';
173: FND_File.Put_Line(fnd_file.log,l_message);
174: APP_EXCEPTION.RAISE_EXCEPTION;
175: end Get_Cols;
176:
177: /* Overload the Get_Cols procedure to handle the case where there are two tables with the same name
178: in different schemas. For example, you can find ap_invoices_all in both the ap and bifin schemas.

Line 214: APP_EXCEPTION.RAISE_EXCEPTION;

210: FND_File.Put_Line(fnd_file.log,l_message);
211:
212: l_message := 'in side '||l_calling_sequence||'

';
213: FND_File.Put_Line(fnd_file.log,l_message);
214: APP_EXCEPTION.RAISE_EXCEPTION;
215: end Get_Cols;
216:
217:
218: /* Procedure to get the backup of all the Accounting (XLA) tables. */

Line 339: APP_EXCEPTION.RAISE_EXCEPTION();

335:
336: l_message := 'in side '||l_calling_sequence||
337: ' while performing '||l_debug_info||'

';
338: FND_File.Put_Line(fnd_file.log,l_message);
339: APP_EXCEPTION.RAISE_EXCEPTION();
340: END Back_Up_Acctg;
341:
342: /* Procedure to print messages in the Log file */
343: PROCEDURE Print

Line 360: APP_EXCEPTION.RAISE_EXCEPTION;

356: FND_File.Put_Line(fnd_file.log,l_message);
357:
358: l_message := 'in side '||l_calling_sequence||'

';
359: FND_File.Put_Line(fnd_file.log,l_message);
360: APP_EXCEPTION.RAISE_EXCEPTION;
361: End Print;
362:
363:
364: /* Procedure to print the values in the table and column list

Line 548: APP_EXCEPTION.RAISE_EXCEPTION;

544: FND_File.Put_Line(fnd_file.log,l_message);
545:
546: l_message := 'in side '||l_calling_sequence||'

';
547: FND_File.Put_Line(fnd_file.log,l_message);
548: APP_EXCEPTION.RAISE_EXCEPTION;
549: END Print_Html_Table;
550:
551: /* Procedure to backup the data from the source table to destination
552: table. It also takes in as input SELECT LIST which determine

Line 644: APP_EXCEPTION.RAISE_EXCEPTION;

640: print(l_message);
641:
642: l_message := 'in side '||l_calling_sequence;
643: print(l_message);
644: APP_EXCEPTION.RAISE_EXCEPTION;
645: End Backup_data;
646:
647: PROCEDURE apps_initialize
648: (p_user_name IN FND_USER.USER_NAME%TYPE,

Line 672: APP_EXCEPTION.RAISE_EXCEPTION();

668:
669: EXCEPTION
670: WHEN OTHERS THEN
671: print('User '||p_user_name||' Not Found');
672: APP_EXCEPTION.RAISE_EXCEPTION();
673: END;
674:
675: l_debug_info := 'Before fetching the responsibility details';
676: BEGIN

Line 686: APP_EXCEPTION.RAISE_EXCEPTION();

682:
683: EXCEPTION
684: WHEN OTHERS THEN
685: print('Responsibility '||p_resp_name||' Not Found');
686: APP_EXCEPTION.RAISE_EXCEPTION();
687:
688: END;
689:
690: l_debug_info := 'Before Initializing the Application';

Line 703: APP_EXCEPTION.RAISE_EXCEPTION();

699: l_error_log := ' Encountered an Unhandled Exception, '||SQLCODE||'-'||SQLERRM||
700: ' in '||l_calling_sequence||' while performing '||l_debug_info;
701: Print(l_error_log);
702: END IF;
703: APP_EXCEPTION.RAISE_EXCEPTION();
704: END;
705:
706:
707: PROCEDURE Del_Nonfinal_xla_entries

Line 970: APP_EXCEPTION.RAISE_EXCEPTION();

966: G_MODULE_NAME||l_procedure_name,
967: l_error_log);
968: END IF;
969:
970: APP_EXCEPTION.RAISE_EXCEPTION();
971: END IF;
972: ELSE
973: l_Return_Status := 'S';
974: END IF;

Line 1064: APP_EXCEPTION.RAISE_EXCEPTION();

1060: G_MODULE_NAME||l_procedure_name,
1061: l_error_log);
1062: END IF;
1063:
1064: APP_EXCEPTION.RAISE_EXCEPTION();
1065: END;
1066:
1067:
1068: -- bug9342663, modified the procedure to check for the

Line 1148: APP_EXCEPTION.RAISE_EXCEPTION();

1144: nvl(p_chk_proposed_undo_date, 'N') = 'N' THEN
1145: l_error_log := ' Period check needs to be performed either on event_date '||
1146: ' or for a specific date ';
1147: Print(l_error_log);
1148: APP_EXCEPTION.RAISE_EXCEPTION();
1149: END IF;
1150:
1151: l_debug_info := 'Checking for the presence of the event_id column in the '||
1152: 'driver ';

Line 1165: APP_EXCEPTION.RAISE_EXCEPTION();

1161: WHEN OTHERS THEN
1162: l_error_log := 'Could not find the column event_id in the driver table '||
1163: l_driver_table||' : aborting';
1164: Print(l_error_log);
1165: APP_EXCEPTION.RAISE_EXCEPTION();
1166: END;
1167:
1168: l_debug_info := 'Check for the presence of the process_flag on the driver table ';
1169: BEGIN

Line 1691: APP_EXCEPTION.RAISE_EXCEPTION();

1687: l_error_log := ' Encountered an Unhandled Exception, '||SQLCODE||'-'||SQLERRM||
1688: ' in '||l_calling_sequence||' while performing '||l_debug_info;
1689: Print(l_error_log);
1690: END IF;
1691: APP_EXCEPTION.RAISE_EXCEPTION();
1692: END;
1693:
1694: PROCEDURE check_ccid
1695: (p_bug_no IN NUMBER,

Line 1922: APP_EXCEPTION.RAISE_EXCEPTION();

1918: l_error_log := ' Encountered an Unhandled Exception, '||SQLCODE||'-'||SQLERRM||
1919: ' in '||l_calling_sequence||' while performing '||l_debug_info;
1920: Print(l_error_log);
1921: END IF;
1922: APP_EXCEPTION.RAISE_EXCEPTION();
1923: END;
1924:
1925: PROCEDURE Undo_Accounting
1926: (p_Source_Table IN VARCHAR2,

Line 2523: app_Exception.Raise_Exception;

2519: ||p_Source_Table);
2520: fnd_Message.Set_Token('DEBUG_INFO',Debug_Info);
2521: END IF;
2522:
2523: app_Exception.Raise_Exception;
2524:
2525: END Undo_Accounting;
2526:
2527: PROCEDURE Undo_Accounting

Line 2593: app_Exception.Raise_Exception;

2589: ||', p_Source_Table = '
2590: ||p_Source_Table);
2591: fnd_Message.Set_Token('DEBUG_INFO',Debug_Info);
2592: END IF;
2593: app_Exception.Raise_Exception;
2594: END;
2595:
2596: PROCEDURE undo_acctg_entries
2597: (p_bug_no IN NUMBER,

Line 3176: APP_EXCEPTION.RAISE_EXCEPTION();

3172: l_error_log := ' Encountered an Unhandled Exception, '||SQLCODE||'-'||SQLERRM||
3173: ' in '||l_calling_sequence||' while performing '||l_debug_info;
3174: Print(l_error_log);
3175: END IF;
3176: APP_EXCEPTION.RAISE_EXCEPTION();
3177: END;
3178:
3179: PROCEDURE push_error(p_error_code IN VARCHAR2,
3180: p_error_stack IN OUT NOCOPY Rejection_List_Tab_Typ) IS

Line 4615: APP_EXCEPTION.RAISE_EXCEPTION();

4611: FND_LOG.STRING(G_LEVEL_STATEMENT,G_MODULE_NAME||l_procedure_name,
4612: l_debug_info);
4613: END IF;
4614: print(l_debug_info);
4615: APP_EXCEPTION.RAISE_EXCEPTION();
4616: END IF;
4617: END IF;
4618:
4619: IF l_check_ret_stat_col = 'N' THEN

Line 5015: APP_EXCEPTION.RAISE_EXCEPTION();

5011: l_error_log);
5012: END IF;
5013:
5014:
5015: APP_EXCEPTION.RAISE_EXCEPTION();
5016: END repop_prepay_dists;
5017:
5018: PROCEDURE del_cascade_adj_entries
5019: (p_bug_no IN NUMBER,

Line 5176: APP_EXCEPTION.RAISE_EXCEPTION();

5172: FND_LOG.STRING(G_LEVEL_STATEMENT,G_MODULE_NAME||l_procedure_name,
5173: l_debug_info);
5174: END IF;
5175:
5176: APP_EXCEPTION.RAISE_EXCEPTION();
5177:
5178: END IF;
5179:
5180: IF l_check_ret_stat_col = 'N' THEN

Line 5365: APP_EXCEPTION.RAISE_EXCEPTION();

5361: FND_LOG.STRING(G_LEVEL_STATEMENT,G_MODULE_NAME||l_procedure_name,
5362: l_error_log);
5363: END IF;
5364:
5365: APP_EXCEPTION.RAISE_EXCEPTION();
5366:
5367: END del_cascade_adj_entries;
5368:
5369: /*Added Function UOM_CONVERT for Bug9756279*/

Line 5939: app_Exception.Raise_Exception;

5935: fnd_Message.Set_Token( 'CALLING_SEQUENCE', p_Calling_Sequence );
5936: fnd_Message.Set_Token( 'PARAMETERS', 'p_source_id = ' ||p_Source_Id ||', p_event_id = ' ||p_event_id|| ', p_gl_date = ' ||p_gl_date);
5937: fnd_Message.Set_Token( 'DEBUG_INFO', l_debug_info );
5938: END IF;
5939: app_Exception.Raise_Exception;
5940: END undo_inv_accounting;
5941:
5942: /*=============================================================================
5943: Procedure to do undo Invoice accounting.

Line 6049: app_exception.raise_exception;

6045: fnd_message.set_token( 'CALLING_SEQUENCE', p_calling_sequence );
6046: fnd_message.set_token( 'PARAMETERS', 'p_source_id = ' ||p_source_id ||', p_event_id = ' ||p_event_id|| ', p_gl_date = '||p_gl_date );
6047: fnd_message.set_token( 'DEBUG_INFO', l_debug_info );
6048: END IF;
6049: app_exception.raise_exception;
6050: END undo_inv_accounting;
6051: -- Bug 10072990 end
6052:
6053: -- Bug11673966