DBA Data[Home] [Help]

APPS.IGW_PROP_SPECIAL_REVIEWS_PUB dependencies on FND_MSG_PUB

Line 48: Fnd_Msg_Pub.Initialize;

44: */
45:
46: x_return_status := Fnd_Api.G_Ret_Sts_Success;
47:
48: Fnd_Msg_Pub.Initialize;
49:
50: /*
51: ** Verify Mandatory Inputs. Value-Id Conversions.
52: */

Line 58: Fnd_Msg_Pub.Add;

54: IF p_proposal_number IS NULL THEN
55:
56: Fnd_Message.Set_Name('IGW','IGW_UPLD_MISSING_PARAMETER');
57: Fnd_Message.Set_Token('PARAM_NAME','P_PROPOSAL_NUMBER');
58: Fnd_Msg_Pub.Add;
59:
60: ELSE
61:
62: Igw_Utils.Get_Proposal_Id

Line 78: Fnd_Msg_Pub.Add;

74: IF p_special_review_desc IS NULL THEN
75:
76: Fnd_Message.Set_Name('IGW','IGW_UPLD_MISSING_PARAMETER');
77: Fnd_Message.Set_Token('PARAM_NAME','P_SPECIAL_REVIEW_DESC');
78: Fnd_Msg_Pub.Add;
79:
80: ELSE
81:
82: Igw_Utils.Get_Lookup_Code

Line 110: Fnd_Msg_Pub.Add;

106: IF p_approval_type_desc IS NULL THEN
107:
108: Fnd_Message.Set_Name('IGW','IGW_UPLD_MISSING_PARAMETER');
109: Fnd_Message.Set_Token('PARAM_NAME','P_APPROVAL_TYPE_DESC');
110: Fnd_Msg_Pub.Add;
111:
112: ELSE
113:
114: Igw_Utils.Get_Lookup_Code

Line 132: IF Fnd_Msg_Pub.Count_Msg > 0 THEN

128: ** Discontinue processing if any error has been encountered during
129: ** the earlier stages
130: */
131:
132: IF Fnd_Msg_Pub.Count_Msg > 0 THEN
133:
134: RAISE Fnd_Api.G_Exc_Error;
135:
136: END IF;

Line 161: IF Fnd_Msg_Pub.Count_Msg > 0 THEN

157: x_msg_count => x_msg_count,
158: x_msg_data => x_msg_data
159: );
160:
161: IF Fnd_Msg_Pub.Count_Msg > 0 THEN
162:
163: RAISE Fnd_Api.G_Exc_Error;
164:
165: END IF;

Line 185: Fnd_Msg_Pub.Count_And_Get

181: ROLLBACK TO Create_Prop_Special_Review_Pub;
182:
183: x_return_status := Fnd_Api.G_Ret_Sts_Error;
184:
185: Fnd_Msg_Pub.Count_And_Get
186: (
187: p_encoded => Fnd_Api.G_False,
188: p_count => x_msg_count,
189: p_data => x_msg_data

Line 198: Fnd_Msg_Pub.Add_Exc_Msg

194: ROLLBACK TO Create_Prop_Special_Review_Pub;
195:
196: x_return_status := Fnd_Api.G_Ret_Sts_Unexp_Error;
197:
198: Fnd_Msg_Pub.Add_Exc_Msg
199: (
200: p_pkg_name => G_PKG_NAME,
201: p_procedure_name => l_api_name
202: );

Line 204: Fnd_Msg_Pub.Count_And_Get

200: p_pkg_name => G_PKG_NAME,
201: p_procedure_name => l_api_name
202: );
203:
204: Fnd_Msg_Pub.Count_And_Get
205: (
206: p_encoded => Fnd_Api.G_False,
207: p_count => x_msg_count,
208: p_data => x_msg_data