DBA Data[Home] [Help]

APPS.IGW_BUDGET_PERIODS_PUB dependencies on FND_MSG_PUB

Line 50: Fnd_Msg_Pub.Initialize;

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

Line 60: Fnd_Msg_Pub.Add;

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

Line 80: Fnd_Msg_Pub.Add;

76: IF p_version_id IS NULL THEN
77:
78: Fnd_Message.Set_Name('IGW','IGW_UPLD_MISSING_PARAMETER');
79: Fnd_Message.Set_Token('PARAM_NAME','P_VERSION_ID');
80: Fnd_Msg_Pub.Add;
81:
82: END IF;
83:
84: IF p_budget_period_id IS NULL THEN

Line 88: Fnd_Msg_Pub.Add;

84: IF p_budget_period_id IS NULL THEN
85:
86: Fnd_Message.Set_Name('IGW','IGW_UPLD_MISSING_PARAMETER');
87: Fnd_Message.Set_Token('PARAM_NAME','P_BUDGET_PERIOD_ID');
88: Fnd_Msg_Pub.Add;
89:
90: END IF;
91:
92: IF p_start_date IS NULL THEN

Line 96: Fnd_Msg_Pub.Add;

92: IF p_start_date IS NULL THEN
93:
94: Fnd_Message.Set_Name('IGW','IGW_UPLD_MISSING_PARAMETER');
95: Fnd_Message.Set_Token('PARAM_NAME','P_START_DATE');
96: Fnd_Msg_Pub.Add;
97:
98: END IF;
99:
100: IF p_end_date IS NULL THEN

Line 104: Fnd_Msg_Pub.Add;

100: IF p_end_date IS NULL THEN
101:
102: Fnd_Message.Set_Name('IGW','IGW_UPLD_MISSING_PARAMETER');
103: Fnd_Message.Set_Token('PARAM_NAME','P_END_DATE');
104: Fnd_Msg_Pub.Add;
105:
106: END IF;
107:
108:

Line 114: IF Fnd_Msg_Pub.Count_Msg > 0 THEN

110: ** Discontinue processing if any error has been encountered during
111: ** the earlier stages
112: */
113:
114: IF Fnd_Msg_Pub.Count_Msg > 0 THEN
115:
116: RAISE Fnd_Api.G_Exc_Error;
117:
118: END IF;

Line 144: IF Fnd_Msg_Pub.Count_Msg > 0 THEN

140: x_msg_count => x_msg_count,
141: x_msg_data => x_msg_data
142: );
143:
144: IF Fnd_Msg_Pub.Count_Msg > 0 THEN
145:
146: RAISE Fnd_Api.G_Exc_Error;
147:
148: END IF;

Line 168: Fnd_Msg_Pub.Count_And_Get

164: ROLLBACK TO Create_Budget_Period_Pub;
165:
166: x_return_status := Fnd_Api.G_Ret_Sts_Error;
167:
168: Fnd_Msg_Pub.Count_And_Get
169: (
170: p_encoded => Fnd_Api.G_False,
171: p_count => x_msg_count,
172: p_data => x_msg_data

Line 181: Fnd_Msg_Pub.Add_Exc_Msg

177: ROLLBACK TO Create_Budget_Period_Pub;
178:
179: x_return_status := Fnd_Api.G_Ret_Sts_Unexp_Error;
180:
181: Fnd_Msg_Pub.Add_Exc_Msg
182: (
183: p_pkg_name => G_PKG_NAME,
184: p_procedure_name => l_api_name
185: );

Line 187: Fnd_Msg_Pub.Count_And_Get

183: p_pkg_name => G_PKG_NAME,
184: p_procedure_name => l_api_name
185: );
186:
187: Fnd_Msg_Pub.Count_And_Get
188: (
189: p_encoded => Fnd_Api.G_False,
190: p_count => x_msg_count,
191: p_data => x_msg_data