DBA Data[Home] [Help]

APPS.AS_SCORECARD_CUHK dependencies on FND_API

Line 54: -- FND_API.G_FALSE by default.

50: -- Parameters :
51: -- IN :
52: -- p_api_version_number: For 11i Oracle Sales application, this is 2.0.
53: -- p_init_msg_list : Initialize message stack or not. It's
54: -- FND_API.G_FALSE by default.
55: -- p_validation_level : Validation level for pass-in values.
56: -- It's FND_API.G_VALID_LEVEL_FULL by default.
57: -- p_commit : Whether commit the whole API at the end of API.
58: -- It's FND_API.G_FALSE by default.

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

52: -- p_api_version_number: For 11i Oracle Sales application, this is 2.0.
53: -- p_init_msg_list : Initialize message stack or not. It's
54: -- FND_API.G_FALSE by default.
55: -- p_validation_level : Validation level for pass-in values.
56: -- It's FND_API.G_VALID_LEVEL_FULL by default.
57: -- p_commit : Whether commit the whole API at the end of API.
58: -- It's FND_API.G_FALSE by default.
59: --
60: -- The above four parameters are standard input.

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

54: -- FND_API.G_FALSE by default.
55: -- p_validation_level : Validation level for pass-in values.
56: -- It's FND_API.G_VALID_LEVEL_FULL by default.
57: -- p_commit : Whether commit the whole API at the end of API.
58: -- It's FND_API.G_FALSE by default.
59: --
60: -- The above four parameters are standard input.
61: -- p_sales_lead_id :
62: -- This is the sales lead identifier. Pass the

Line 75: -- successfully, then FND_API.G_RET_STS_SUCCESS

71: -- engine should return this score and Oracle API
72: -- will rank the lead base on this score.
73: -- x_return_status :
74: -- The return status. If your code completes
75: -- successfully, then FND_API.G_RET_STS_SUCCESS
76: -- should be returned; if you get an expected error,
77: -- then return FND_API.G_RET_STS_ERROR; otherwise
78: -- return FND_API.G_RET_STS_UNEXP_ERROR.
79: -- x_msg_count :

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

73: -- x_return_status :
74: -- The return status. If your code completes
75: -- successfully, then FND_API.G_RET_STS_SUCCESS
76: -- should be returned; if you get an expected error,
77: -- then return FND_API.G_RET_STS_ERROR; otherwise
78: -- return FND_API.G_RET_STS_UNEXP_ERROR.
79: -- x_msg_count :
80: -- The message count.
81: -- Call FND_MSG_PUB.Count_And_Get to get the message

Line 78: -- return FND_API.G_RET_STS_UNEXP_ERROR.

74: -- The return status. If your code completes
75: -- successfully, then FND_API.G_RET_STS_SUCCESS
76: -- should be returned; if you get an expected error,
77: -- then return FND_API.G_RET_STS_ERROR; otherwise
78: -- return FND_API.G_RET_STS_UNEXP_ERROR.
79: -- x_msg_count :
80: -- The message count.
81: -- Call FND_MSG_PUB.Count_And_Get to get the message
82: -- count and messages.

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

89: -- parameters.
90: --
91: PROCEDURE Get_Score_Pre(
92: p_api_version_number IN NUMBER,
93: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
94: p_validation_level IN VARCHAR2 := FND_API.G_VALID_LEVEL_FULL,
95: p_commit IN VARCHAR2 := FND_API.G_FALSE,
96: p_sales_lead_id IN NUMBER,
97: p_scorecard_id IN NUMBER,

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

90: --
91: PROCEDURE Get_Score_Pre(
92: p_api_version_number IN NUMBER,
93: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
94: p_validation_level IN VARCHAR2 := FND_API.G_VALID_LEVEL_FULL,
95: p_commit IN VARCHAR2 := FND_API.G_FALSE,
96: p_sales_lead_id IN NUMBER,
97: p_scorecard_id IN NUMBER,
98: x_score OUT NUMBER,

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

91: PROCEDURE Get_Score_Pre(
92: p_api_version_number IN NUMBER,
93: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
94: p_validation_level IN VARCHAR2 := FND_API.G_VALID_LEVEL_FULL,
95: p_commit IN VARCHAR2 := FND_API.G_FALSE,
96: p_sales_lead_id IN NUMBER,
97: p_scorecard_id IN NUMBER,
98: x_score OUT NUMBER,
99: x_return_status OUT VARCHAR2,