DBA Data[Home] [Help]

APPS.IGW_BUDGET_PERIODS_PUB dependencies on FND_API

Line 48: x_return_status := Fnd_Api.G_Ret_Sts_Success;

44: /*
45: ** Initialize Processing
46: */
47:
48: x_return_status := Fnd_Api.G_Ret_Sts_Success;
49:
50: Fnd_Msg_Pub.Initialize;
51:
52: /*

Line 116: RAISE Fnd_Api.G_Exc_Error;

112: */
113:
114: IF Fnd_Msg_Pub.Count_Msg > 0 THEN
115:
116: RAISE Fnd_Api.G_Exc_Error;
117:
118: END IF;
119:
120: Igw_Budget_Periods_Pvt.Create_Budget_Period

Line 122: p_init_msg_list => Fnd_Api.G_True,

118: END IF;
119:
120: Igw_Budget_Periods_Pvt.Create_Budget_Period
121: (
122: p_init_msg_list => Fnd_Api.G_True,
123: p_commit => Fnd_Api.G_False,
124: p_validate_only => p_validate_only,
125: p_proposal_id => l_proposal_id,
126: p_version_id => p_version_id,

Line 123: p_commit => Fnd_Api.G_False,

119:
120: Igw_Budget_Periods_Pvt.Create_Budget_Period
121: (
122: p_init_msg_list => Fnd_Api.G_True,
123: p_commit => Fnd_Api.G_False,
124: p_validate_only => p_validate_only,
125: p_proposal_id => l_proposal_id,
126: p_version_id => p_version_id,
127: p_budget_period_id => p_budget_period_id,

Line 146: RAISE Fnd_Api.G_Exc_Error;

142: );
143:
144: IF Fnd_Msg_Pub.Count_Msg > 0 THEN
145:
146: RAISE Fnd_Api.G_Exc_Error;
147:
148: END IF;
149:
150: /*

Line 154: IF Fnd_Api.To_Boolean(p_commit) THEN

150: /*
151: ** Commit data if API invoked in commit mode
152: */
153:
154: IF Fnd_Api.To_Boolean(p_commit) THEN
155:
156: COMMIT;
157:
158: END IF;

Line 162: WHEN Fnd_Api.G_Exc_Error THEN

158: END IF;
159:
160: EXCEPTION
161:
162: WHEN Fnd_Api.G_Exc_Error THEN
163:
164: ROLLBACK TO Create_Budget_Period_Pub;
165:
166: x_return_status := Fnd_Api.G_Ret_Sts_Error;

Line 166: x_return_status := Fnd_Api.G_Ret_Sts_Error;

162: WHEN Fnd_Api.G_Exc_Error THEN
163:
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,

Line 170: p_encoded => Fnd_Api.G_False,

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
173: );
174:

Line 179: x_return_status := Fnd_Api.G_Ret_Sts_Unexp_Error;

175: WHEN others THEN
176:
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,

Line 189: p_encoded => Fnd_Api.G_False,

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
192: );
193: