DBA Data[Home] [Help]

PACKAGE: APPS.IGW_PROP_PERSONS_PUB

Source


1 PACKAGE Igw_Prop_Persons_Pub AS
2 --$Header: igwppers.pls 120.1 2005/10/30 05:54:40 appldev ship $
3 /*#
4  * This is the public interface for Grants Proposal Personnel creation.  It allows
5  * users to upload personnel for a given proposal into Grants Proposal.
6  * @rep:scope public
7  * @rep:product IGW
8  * @rep:displayname Create Proposal Personnel
9  * @rep:lifecycle active
10  * @rep:compatibility S
11  * @rep:category BUSINESS_ENTITY IGW_PROPOSAL
12  */
13 
14    ---------------------------------------------------------------------------
15 /*#
16  * Create Proposal Personnel Interface
17  * @param p_commit Variable to control implicit commit
18  * @param p_validate_only Variable to control plain validation or creation of data
19  * @param p_proposal_number Proposal number
20  * @param p_full_name Person full name
21  * @param p_proposal_role_desc  Person role
22  * @param p_key_person_flag Flag to indicate if the person is a key person
23  * @param p_person_unit_name Name of the organization the person belongs to
24  * @param x_return_status Error status
25  * @param x_msg_count Number of error messages
26  * @param x_msg_data Error message
27  * @rep:scope public
28  * @rep:lifecycle active
29  * @rep:displayname Create Proposal Personnel
30  */
31    PROCEDURE Create_Prop_Person
32    (
33       p_validate_only          IN VARCHAR2   := Fnd_Api.G_False,
34       p_commit                 IN VARCHAR2   := Fnd_Api.G_False,
35       p_proposal_number        IN VARCHAR2,
36       p_full_name              IN VARCHAR2,
37       p_proposal_role_desc     IN VARCHAR2,
38       p_key_person_flag        IN VARCHAR2,
39       p_person_unit_name       IN VARCHAR2,
40       x_return_status          OUT NOCOPY VARCHAR2,
41       x_msg_count              OUT NOCOPY NUMBER,
42       x_msg_data               OUT NOCOPY VARCHAR2
43    );
44 
45    ---------------------------------------------------------------------------
46 
47 END Igw_Prop_Persons_Pub;