DBA Data[Home] [Help]

APPS.IGW_PROP_QUESTIONS_TBH dependencies on FND_API

Line 36: x_return_status := Fnd_Api.G_Ret_Sts_Success;

32: question_number = p_question_number;
33:
34: BEGIN
35:
36: x_return_status := Fnd_Api.G_Ret_Sts_Success;
37:
38: IF p_mode = 'I' THEN
39:
40: l_last_updated_by := 1;

Line 95: x_return_status := Fnd_Api.G_Ret_Sts_Unexp_Error;

91: EXCEPTION
92:
93: WHEN others THEN
94:
95: x_return_status := Fnd_Api.G_Ret_Sts_Unexp_Error;
96:
97: Fnd_Msg_Pub.Add_Exc_Msg
98: (
99: p_pkg_name => G_PKG_NAME,

Line 103: RAISE Fnd_Api.G_Exc_Unexpected_Error;

99: p_pkg_name => G_PKG_NAME,
100: p_procedure_name => l_api_name
101: );
102:
103: RAISE Fnd_Api.G_Exc_Unexpected_Error;
104:
105: END Insert_Row;
106:
107: ---------------------------------------------------------------------------

Line 130: x_return_status := Fnd_Api.G_Ret_Sts_Success;

126: l_last_update_login NUMBER := Nvl(Fnd_Global.Login_Id,-1);
127:
128: BEGIN
129:
130: x_return_status := Fnd_Api.G_Ret_Sts_Success;
131:
132: IF p_mode = 'I' THEN
133:
134: l_last_updated_by := 1;

Line 169: x_return_status := Fnd_Api.G_Ret_Sts_Unexp_Error;

165: EXCEPTION
166:
167: WHEN others THEN
168:
169: x_return_status := Fnd_Api.G_Ret_Sts_Unexp_Error;
170:
171: Fnd_Msg_Pub.Add_Exc_Msg
172: (
173: p_pkg_name => G_PKG_NAME,

Line 177: RAISE Fnd_Api.G_Exc_Unexpected_Error;

173: p_pkg_name => G_PKG_NAME,
174: p_procedure_name => l_api_name
175: );
176:
177: RAISE Fnd_Api.G_Exc_Unexpected_Error;
178:
179: END Update_Row;
180:
181: ---------------------------------------------------------------------------