DBA Data[Home] [Help]

APPS.AS_IMPORT_SL_CUHK dependencies on FND_API

Line 63: -- FND_API.G_FALSE by default.

59: -- Parameters :
60: -- IN :
61: -- p_api_version_number: For 11i Oracle Sales application, this is 2.0.
62: -- p_init_msg_list : Initialize message stack or not. It's
63: -- FND_API.G_FALSE by default.
64: -- p_validation_level : Validation level for pass-in values.
65: -- It's FND_API.G_VALID_LEVEL_FULL by default.
66: -- p_commit : Whether commit the whole API at the end of API.
67: -- It's FND_API.G_FALSE by default.

Line 65: -- It's FND_API.G_VALID_LEVEL_FULL by default.

61: -- p_api_version_number: For 11i Oracle Sales application, this is 2.0.
62: -- p_init_msg_list : Initialize message stack or not. It's
63: -- FND_API.G_FALSE by default.
64: -- p_validation_level : Validation level for pass-in values.
65: -- It's FND_API.G_VALID_LEVEL_FULL by default.
66: -- p_commit : Whether commit the whole API at the end of API.
67: -- It's FND_API.G_FALSE by default.
68: --
69: -- The above four parameters are standard input.

Line 67: -- It's FND_API.G_FALSE by default.

63: -- FND_API.G_FALSE by default.
64: -- p_validation_level : Validation level for pass-in values.
65: -- It's FND_API.G_VALID_LEVEL_FULL by default.
66: -- p_commit : Whether commit the whole API at the end of API.
67: -- It's FND_API.G_FALSE by default.
68: --
69: -- The above four parameters are standard input.
70: -- p_import_interface_id:
71: -- This is the import interface identifier.

Line 83: -- successfully, then FND_API.G_RET_STS_SUCCESS

79: -- 'N' means such a lead does not exist and lead
80: -- will be imported.
81: -- x_return_status :
82: -- The return status. If your code completes
83: -- successfully, then FND_API.G_RET_STS_SUCCESS
84: -- should be returned; if you get an expected error,
85: -- then return FND_API.G_RET_STS_ERROR; otherwise
86: -- return FND_API.G_RET_STS_UNEXP_ERROR.
87: -- x_msg_count :

Line 85: -- then return FND_API.G_RET_STS_ERROR; otherwise

81: -- x_return_status :
82: -- The return status. If your code completes
83: -- successfully, then FND_API.G_RET_STS_SUCCESS
84: -- should be returned; if you get an expected error,
85: -- then return FND_API.G_RET_STS_ERROR; otherwise
86: -- return FND_API.G_RET_STS_UNEXP_ERROR.
87: -- x_msg_count :
88: -- The message count.
89: -- Call FND_MSG_PUB.Count_And_Get to get the message

Line 86: -- return FND_API.G_RET_STS_UNEXP_ERROR.

82: -- The return status. If your code completes
83: -- successfully, then FND_API.G_RET_STS_SUCCESS
84: -- should be returned; if you get an expected error,
85: -- then return FND_API.G_RET_STS_ERROR; otherwise
86: -- return FND_API.G_RET_STS_UNEXP_ERROR.
87: -- x_msg_count :
88: -- The message count.
89: -- Call FND_MSG_PUB.Count_And_Get to get the message
90: -- count and messages.

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

98: --
99: --
100: PROCEDURE Is_Duplicate_Lead_Pre(
101: p_api_version_number IN NUMBER,
102: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
103: p_validation_level IN VARCHAR2 := FND_API.G_VALID_LEVEL_FULL,
104: p_commit IN VARCHAR2 := FND_API.G_FALSE,
105: p_import_interface_id IN NUMBER,
106: x_duplicate_flag OUT NOCOPY VARCHAR2,

Line 103: p_validation_level IN VARCHAR2 := FND_API.G_VALID_LEVEL_FULL,

99: --
100: PROCEDURE Is_Duplicate_Lead_Pre(
101: p_api_version_number IN NUMBER,
102: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
103: p_validation_level IN VARCHAR2 := FND_API.G_VALID_LEVEL_FULL,
104: p_commit IN VARCHAR2 := FND_API.G_FALSE,
105: p_import_interface_id IN NUMBER,
106: x_duplicate_flag OUT NOCOPY VARCHAR2,
107: x_return_status OUT NOCOPY VARCHAR2,

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

100: PROCEDURE Is_Duplicate_Lead_Pre(
101: p_api_version_number IN NUMBER,
102: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
103: p_validation_level IN VARCHAR2 := FND_API.G_VALID_LEVEL_FULL,
104: p_commit IN VARCHAR2 := FND_API.G_FALSE,
105: p_import_interface_id IN NUMBER,
106: x_duplicate_flag OUT NOCOPY VARCHAR2,
107: x_return_status OUT NOCOPY VARCHAR2,
108: x_msg_count OUT NOCOPY NUMBER,