DBA Data[Home] [Help]

PACKAGE BODY: APPS.IGF_AP_INTR_INSERT_TODO

Source


1 PACKAGE BODY  igf_ap_intr_insert_todo AS
2 /* $Header: IGFAP21B.pls 120.1 2005/09/08 14:34:46 appldev noship $ */
3 
4 
5 PROCEDURE  main ( errbuf                        IN OUT NOCOPY VARCHAR2,
6                   retcode                       IN OUT NOCOPY VARCHAR2,
7                   x_todo_type                   IN VARCHAR2,
8                   x_todo_sub_type               IN VARCHAR2,
9                   x_person_id                   IN NUMBER,
10                   x_acad_ci_cal_type            IN VARCHAR2,
11                   x_acad_ci_sequence_number     IN NUMBER,
12                   x_key1                        IN VARCHAR2,
13                   x_key2                        IN VARCHAR2,
14                   x_key3                        IN VARCHAR2,
15                   x_key4                        IN VARCHAR2,
16                   x_key5                        IN VARCHAR2,
17                   x_key6                        IN VARCHAR2,
18                   x_key7                        IN VARCHAR2,
19                   x_key8                        IN VARCHAR2,
20                   x_old_value1                  IN VARCHAR2,
21                   x_new_value1                  IN VARCHAR2,
22                   x_old_value2                  IN VARCHAR2,
23                   x_new_value2                  IN VARCHAR2,
24                   x_old_value3                  IN VARCHAR2,
25                   x_new_value3                  IN VARCHAR2,
26                   x_old_value4                  IN VARCHAR2,
27                   x_new_value4                  IN VARCHAR2,
28                   x_old_value5                  IN VARCHAR2,
29                   x_new_value5                  IN VARCHAR2,
30                   p_org_id                      IN VARCHAR2)
31 
32 IS
33 
34 
35 --------------------------------------------------------------------------------------
36 --
37 --      Created By : sjadhav
38 --	Creation date : june 29,2001
39 --      this package inserts into igf_ap_todo table the updated oss data attributes
40 --      which affect financial aid processing
41 --
42 --Chnage History:
43 --Who       When            What
44 -- rasahoo  27-Aug-2003     Removed all codes As part of Financial Aid base record history obsoletion Build.
45 --------------------------------------------------------------------------------------
46 
47 
48 BEGIN
49 -- The Concurrent job IGFAPJ010 (Base Record - Trigger Student System Data Change Workflow)
50 -- is obsoleted. So all codes are removed.
51 -- Added the message IGS_GE_OBSOLETE_JOB for logging the message 'This job is no longer in use'.
52 --
53    fnd_message.set_name('IGS','IGS_GE_OBSOLETE_JOB');
54    fnd_file.put_line(fnd_file.log,fnd_message.get);
55 
56 --
57 END main;
58 
59 END igf_ap_intr_insert_todo;