DBA Data[Home] [Help]

PACKAGE: APPS.ASO_IBY_FINANCE_CALLBACK

Source


1 PACKAGE aso_iby_finance_callback AS
2 /* $Header: asopibys.pls 120.1 2005/06/29 12:36:50 appldev ship $ */
3 -- Start of Comments
4 -- Package name     : ASO_IBY_FINANCE_CALLBACK
5 -- Purpose          :
6 --
7 -- History          :
8 -- NOTE             :
9 
10 -- End of Comments
11 
12 
13 --
14 -- p_tangible_id:         quote header id;
15 -- p_credit_app_id:       primary Key for the credit application/financing request;
16 -- p_new_status_category: category of new financing status;
17 -- p_new_status:          new financing status;
18 --
19 
20   PROCEDURE update_status (
21     p_api_version               IN       NUMBER,
22     p_init_msg_list             IN       VARCHAR2 := fnd_api.g_false,
23     p_commit                    IN       VARCHAR2 := fnd_api.g_false,
24     p_validation_level          IN       NUMBER   := fnd_api.g_miss_num,
25     p_tangible_id               IN       NUMBER,
26     p_credit_app_id             IN       NUMBER,
27     p_new_status_category       IN       VARCHAR2,
28     p_new_status                IN       VARCHAR2,
29     p_last_update_date          IN       DATE     := fnd_api.g_miss_date,
30     x_return_status             OUT NOCOPY /* file.sql.39 change */       VARCHAR2,
31     x_msg_count                 OUT NOCOPY /* file.sql.39 change */       NUMBER,
32     x_msg_data                  OUT NOCOPY /* file.sql.39 change */       VARCHAR2
33   );
34 END aso_iby_finance_callback;