DBA Data[Home] [Help]

PACKAGE BODY: APPS.IGS_FI_CUST_ACCT

Source


1 PACKAGE BODY igs_fi_cust_acct AS
2 /* $Header: IGSFI72B.pls 115.13 2003/05/30 09:32:14 shtatiko noship $ */
3 
4 /***********************************************************************************************
5 
6   Created By     :  Sarakshi
7   Date Created By:  15-Feb-2002
8   Purpose        :  This package is used to create customer                        |
9   Known limitations,enhancements,remarks:
10   Change History
11   Who        When         What
12   shtatiko   28-MAY-2003  Enh# 2831582, Obsoleted process "Create Customer Accounts".
13                           Removed create_cust_acct, log_pers_id functions. Also removed
14                           local procedures, log_messages, log_person and lookup_desc as they are no longer used.
15   shtatiko   25-APR-2003  Enh# 2831569, Modified process_cust_acct procedure.
16   vchappid   13-Jun-2002  Bug#2411529, Incorrectly used message names have been modified
17   sarakshi   27-Feb-2002  changed the hz_parties references to igs_fi_parties_v from all the selects, bug:2238362
18 ********************************************************************************************** */
19 
20 PROCEDURE  process_cust_acct( errbuf             OUT NOCOPY   VARCHAR2,
21                               retcode            OUT NOCOPY   NUMBER,
22                               p_person_id        IN    igs_pe_person_v.person_id%TYPE,
23                               p_person_id_grp    IN    igs_pe_persid_group.group_id%TYPE) IS
24 /***********************************************************************************************
25 
26   Created By     :  Sarakshi
27   Date Created By:  18-Feb-2002
28   Purpose        :  To create the customer corresponding to a person or person group.
29   Known limitations,enhancements,remarks:
30   Change History
31   Who       When          What
32   shtatiko  28-MAY-2003   Enh# 2831582, Obsoleted this process.
33   shtatiko  25-APR-2003   Enh# 2831569, Added check for Manage Account System Option
34   pathipat  06-Jan-2003   Bug:2684782 - Logged group_cd instead of group_id for person_id_Group
35                           in the log file - Used func igs_fi_gen_005.finp_get_prsid_grp_code()
36   vchappid  13-Jun-2002   Bug#2411529, Incorrectly used message names have been modified
37 ********************************************************************************************** */
38 
39 BEGIN
40 
41  /*
42   * Enh# 2831582, Lockbox design introduces a new Lockbox functionality
43   * detached from Oracle Receivables (AR) Module.
44   * Due to this change, Process, "Create Customer Accounts" is obsoleted.
45   */
46   fnd_message.set_name('IGS', 'IGS_GE_OBSOLETE_JOB');
47   fnd_file.put_line( fnd_file.LOG, fnd_message.get());
48   retcode := 0;
49 
50 END process_cust_acct;
51 
52 END igs_fi_cust_acct;