DBA Data[Home] [Help]

APPS.CN_COMPGROUPS_PVT dependencies on FND_API

Line 6: := fnd_api.g_miss_char,

2: --$Header: cnvmcgs.pls 115.1 2001/10/29 17:20:30 pkm ship $
3:
4: TYPE comp_group_rec_type IS RECORD
5: (parent_comp_group_id cn_comp_groups.comp_group_id%TYPE
6: := fnd_api.g_miss_char,
7: comp_group_id cn_comp_groups.comp_group_id%TYPE,
8: comp_group_start_date cn_comp_group_hier.start_date_active%TYPE,
9: comp_group_end_date cn_comp_group_hier.end_date_active%TYPE
10: := fnd_api.g_miss_date);

Line 10: := fnd_api.g_miss_date);

6: := fnd_api.g_miss_char,
7: comp_group_id cn_comp_groups.comp_group_id%TYPE,
8: comp_group_start_date cn_comp_group_hier.start_date_active%TYPE,
9: comp_group_end_date cn_comp_group_hier.end_date_active%TYPE
10: := fnd_api.g_miss_date);
11:
12: -- Start of comments
13: -- API name : Move_Group
14: -- Type : Private.

Line 28: -- Default = FND_API.G_FALSE

24: -- Description: Standard API parameter which states
25: -- the api version; used to check
26: -- compatibility of calling code
27: -- p_init_msg_list IN VARCHAR2 Optional
28: -- Default = FND_API.G_FALSE
29: -- Description: Standard API parameter which
30: -- specifies whether message stack
31: -- should be re-initialized
32: -- p_commit IN VARCHAR2 Optional

Line 33: -- Default = FND_API.G_FALSE

29: -- Description: Standard API parameter which
30: -- specifies whether message stack
31: -- should be re-initialized
32: -- p_commit IN VARCHAR2 Optional
33: -- Default = FND_API.G_FALSE
34: -- Description: Standard API parameter; specifies
35: -- whether a commit should be issued
36: -- on successful completion of
37: -- transaction

Line 39: -- Default = FND_API.G_VALID_LEVEL_FULL

35: -- whether a commit should be issued
36: -- on successful completion of
37: -- transaction
38: -- p_validation_level IN NUMBER Optional
39: -- Default = FND_API.G_VALID_LEVEL_FULL
40: -- Description: Standard API parameter; specifies
41: -- validation level
42: -- IMPORTANT: USE DEFAULT
43: -- p_comp_group_rec IN comp_group_rec_type Required

Line 51: -- FND_API.G_RE_STS_SUCCESS

47: -- Description: The date on which the move is to
48: -- be made
49: -- OUT : x_return_status OUT VARCHAR2(1)
50: -- Description: Contains the status of the call
51: -- FND_API.G_RE_STS_SUCCESS
52: -- - SUCCESS
53: -- FND_API.G_RE_STS_UNEXP_ERROR
54: -- - UNEXPECTED ERROR
55: -- FND_API.G_RE_STS_ERROR

Line 53: -- FND_API.G_RE_STS_UNEXP_ERROR

49: -- OUT : x_return_status OUT VARCHAR2(1)
50: -- Description: Contains the status of the call
51: -- FND_API.G_RE_STS_SUCCESS
52: -- - SUCCESS
53: -- FND_API.G_RE_STS_UNEXP_ERROR
54: -- - UNEXPECTED ERROR
55: -- FND_API.G_RE_STS_ERROR
56: -- - EXPECTED ERROR
57: -- x_msg_count OUT NUMBER

Line 55: -- FND_API.G_RE_STS_ERROR

51: -- FND_API.G_RE_STS_SUCCESS
52: -- - SUCCESS
53: -- FND_API.G_RE_STS_UNEXP_ERROR
54: -- - UNEXPECTED ERROR
55: -- FND_API.G_RE_STS_ERROR
56: -- - EXPECTED ERROR
57: -- x_msg_count OUT NUMBER
58: -- Description: The number of messages in the
59: -- message stack

Line 74: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE ,

70: -- End of comments
71:
72: PROCEDURE Move_Group
73: (p_api_version IN NUMBER ,
74: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE ,
75: p_commit IN VARCHAR2 := FND_API.G_FALSE ,
76: p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL,
77: p_comp_group_rec IN comp_group_rec_type ,
78: p_effective_move_date IN date ,

Line 75: p_commit IN VARCHAR2 := FND_API.G_FALSE ,

71:
72: PROCEDURE Move_Group
73: (p_api_version IN NUMBER ,
74: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE ,
75: p_commit IN VARCHAR2 := FND_API.G_FALSE ,
76: p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL,
77: p_comp_group_rec IN comp_group_rec_type ,
78: p_effective_move_date IN date ,
79: p_new_parent_group_id IN cn_comp_groups.comp_group_id%TYPE ,

Line 76: p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL,

72: PROCEDURE Move_Group
73: (p_api_version IN NUMBER ,
74: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE ,
75: p_commit IN VARCHAR2 := FND_API.G_FALSE ,
76: p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL,
77: p_comp_group_rec IN comp_group_rec_type ,
78: p_effective_move_date IN date ,
79: p_new_parent_group_id IN cn_comp_groups.comp_group_id%TYPE ,
80: x_return_status OUT VARCHAR2 ,