DBA Data[Home] [Help]

APPS.ZPB_ERROR_HANDLER dependencies on FND_MESSAGE

Line 55: -- P_MESSAGE - The Message name defined in FND_MESSAGES table. If

51: --
52: -- IN:
53: -- P_MODULE - The calling package
54: -- P_PROCEDURE - The calling procedure
55: -- P_MESSAGE - The Message name defined in FND_MESSAGES table. If
56: -- omitted, default message used and will pull message from
57: -- SQLERRM (meaning an exception must have been thrown).
58: -- TOKEN_# - Any tokens required in the message. Tokens go as a
59: -- a name/value. Omit if not applicable or using default.

Line 91: FND_MESSAGE.CLEAR;

87: TOKEN_4_VALUE,
88: TOKEN_5_NAME,
89: TOKEN_5_VALUE);
90: FND_MSG_PUB.ADD;
91: FND_MESSAGE.CLEAR;
92: end HANDLE_EXCEPTION;
93:
94: -------------------------------------------------------------------------------
95: -- INITIALIZE

Line 139: -- P_MESSAGE - The Message name defined in FND_MESSAGES table. If

135: --
136: -- IN:
137: -- P_MODULE - The calling package
138: -- P_PROCEDURE - The calling procedure
139: -- P_MESSAGE - The Message name defined in FND_MESSAGES table. If
140: -- omitted, default message used and will pull message from
141: -- SQLERRM (meaning an exception must have been thrown).
142: -- TOKEN_# - Any tokens required in the message. Tokens go as a
143: -- a name/value. Omit if not applicable or using default.

Line 187: -- P_MESSAGE - The Message name defined in FND_MESSAGES table. If

183: --
184: -- IN:
185: -- P_MODULE - The calling package
186: -- P_PROCEDURE - The calling procedure
187: -- P_MESSAGE - The Message name defined in FND_MESSAGES table. If
188: -- omitted, default message used and will pull message from
189: -- SQLERRM (meaning an exception must have been thrown).
190: -- TOKEN_# - Any tokens required in the message. Tokens go as a
191: -- a name/value. Omit if not applicable or using default.

Line 223: FND_MESSAGE.CLEAR;

219: TOKEN_5_NAME,
220: TOKEN_5_VALUE,
221: FALSE);
222: FND_MSG_PUB.ADD_DETAIL(P_MESSAGE_TYPE => FND_MSG_PUB.G_INFORMATION_MSG);
223: FND_MESSAGE.CLEAR;
224: end REGISTER_CONFIRMATION;
225:
226: -------------------------------------------------------------------------------
227: -- REGISTER_ERROR

Line 236: -- P_MESSAGE - The Message name defined in FND_MESSAGES table. If

232: --
233: -- IN:
234: -- P_MODULE - The calling package
235: -- P_PROCEDURE - The calling procedure
236: -- P_MESSAGE - The Message name defined in FND_MESSAGES table. If
237: -- omitted, default message used and will pull message from
238: -- SQLERRM (meaning an exception must have been thrown).
239: -- TOKEN_# - Any tokens required in the message. Tokens go as a
240: -- a name/value. Omit if not applicable or using default.

Line 273: FND_MESSAGE.CLEAR;

269: TOKEN_5_VALUE,
270: FALSE);
271: FND_MSG_PUB.ADD;
272: --FND_MSG_PUB.ADD_DETAIL(P_MESSAGE_TYPE => FND_MSG_PUB.G_ERROR_MSG);
273: FND_MESSAGE.CLEAR;
274: end REGISTER_ERROR;
275:
276: -------------------------------------------------------------------------------
277: -- REGISTER_INFORMATION

Line 286: -- P_MESSAGE - The Message name defined in FND_MESSAGES table. If

282: --
283: -- IN:
284: -- P_MODULE - The calling package
285: -- P_PROCEDURE - The calling procedure
286: -- P_MESSAGE - The Message name defined in FND_MESSAGES table. If
287: -- omitted, default message used and will pull message from
288: -- SQLERRM (meaning an exception must have been thrown).
289: -- TOKEN_# - Any tokens required in the message. Tokens go as a
290: -- a name/value. Omit if not applicable or using default.

Line 322: FND_MESSAGE.CLEAR;

318: TOKEN_5_NAME,
319: TOKEN_5_VALUE,
320: FALSE);
321: FND_MSG_PUB.ADD_DETAIL(P_MESSAGE_TYPE => FND_MSG_PUB.G_INFORMATION_MSG);
322: FND_MESSAGE.CLEAR;
323: end REGISTER_INFORMATION;
324:
325: -------------------------------------------------------------------------------
326: -- REGISTER_WARNING

Line 335: -- P_MESSAGE - The Message name defined in FND_MESSAGES table. If

331: --
332: -- IN:
333: -- P_MODULE - The calling package
334: -- P_PROCEDURE - The calling procedure
335: -- P_MESSAGE - The Message name defined in FND_MESSAGES table. If
336: -- omitted, default message used and will pull message from
337: -- SQLERRM (meaning an exception must have been thrown).
338: -- TOKEN_# - Any tokens required in the message. Tokens go as a
339: -- a name/value. Omit if not applicable or using default.

Line 371: FND_MESSAGE.CLEAR;

367: TOKEN_5_NAME,
368: TOKEN_5_VALUE,
369: FALSE);
370: FND_MSG_PUB.ADD_DETAIL(P_MESSAGE_TYPE => FND_MSG_PUB.G_WARNING_MSG);
371: FND_MESSAGE.CLEAR;
372: end REGISTER_WARNING;
373:
374: -------------------------------------------------------------------------------
375: -- SET_CONC_REQ_STATUS