DBA Data[Home] [Help]

PACKAGE: APPS.OTA_CRT_FINANCE_SEGMENT

Source


1 Package ota_crt_finance_segment AUTHID CURRENT_USER as
2 /* $Header: otcrtfhr.pkh 115.3 2002/11/29 06:39:51 dbatra noship $ */
3 --
4 -- ----------------------------------------------------------------------------
5 -- |-----------------------------<create_segment>------------------------------|
6 -- ----------------------------------------------------------------------------
7 -- {Start Of Comments}
8 --
9 -- Description:
10 --   This package is used for self service application to create finance header
11 --   data when user enroll in the class.
12 --
13 -- Prerequisites:
14 --
15 -- In Parameters:
16 --
17 -- Post Success:
18 --   Finanece Header infrmation will be created.
19 --
20 -- Post Failure:
21 --   Status will be passed to the caller and the caller will raise a notification.
22 --
23 -- Developer Implementation Notes:
24 --   The attrbute in parameters should be modified as to the business process
25 --   requirements.
26 --
27 -- Access Status:
28 --   Internal Development Use Only.
29 --
30 -- {End Of Comments}
31 -- ----------------------------------------------------------------------------
32 Procedure create_segment
33   (p_assignment_id                        in     number
34   ,p_business_group_id_from               in     number
35   ,p_business_group_id_to                 in     number
36   ,p_organization_id				in     number
37   ,p_sponsor_organization_id              in     number
38   ,p_event_id 					in 	 number
39   ,p_person_id					in     number
40   ,p_currency_code				in     varchar2
41   ,p_cost_allocation_keyflex_id           in     number
42   ,p_user_id                              in     number
43   ,p_finance_header_id			 out nocopy    number
44   ,p_object_version_number		 out nocopy    number
45   ,p_result                     	 out nocopy    varchar2
46   ,p_from_result                          out nocopy    varchar2
47   ,p_to_result                            out nocopy    varchar2
48   ) ;
49 --
50 end ota_crt_finance_segment;