DBA Data[Home] [Help]

APPS.BSC_LAUNCH_PAD_PVT dependencies on BSC_MESSAGE

Line 14: | message in BSC_MESSAGE_LOGS table.

10: |
11: | Description: it is a wrapper for FND_MENUS_PKG.INSERT_ROW function
12: | This procedure is to be called from a VB program.
13: | If there is an error, the procedure inserts the error
14: | message in BSC_MESSAGE_LOGS table.
15: |
16: | Parameters: x_menu_id - Menu id
17: | x_menu_name - Menu Name
18: | x_user_menu_name - User Menu Name

Line 51: BSC_MESSAGE.Add(x_message => SQLERRM,

47: X_LAST_UPDATE_LOGIN => 0 );
48:
49: EXCEPTION
50: WHEN OTHERS THEN
51: BSC_MESSAGE.Add(x_message => SQLERRM,
52: x_source => 'BSC_LAUNCH_PAD_PVT.INSERT_APP_MENU_VB',
53: x_mode => 'I');
54:
55: END INSERT_APP_MENU_VB;

Line 63: | message in BSC_MESSAGE_LOGS table.

59: |
60: | Description: it is a wrapper for FND_MENUS_PKG.UPDATE_ROW function
61: | This procedure is to be called from a VB program.
62: | If there is an error, the procedure inserts the error
63: | message in BSC_MESSAGE_LOGS table.
64: |
65: | Parameters: x_menu_id - Menu id
66: | x_menu_name - Menu Name
67: | x_user_menu_name - User Menu Name

Line 95: BSC_MESSAGE.Add(x_message => SQLERRM,

91: X_LAST_UPDATE_LOGIN => 0 );
92:
93: EXCEPTION
94: WHEN OTHERS THEN
95: BSC_MESSAGE.Add(x_message => SQLERRM,
96: x_source => 'BSC_LAUNCH_PAD_PVT.UPDATE_APP_MENU_VB',
97: x_mode => 'I');
98: END UPDATE_APP_MENU_VB;
99: /*===========================================================================+

Line 106: | message in BSC_MESSAGE_LOGS table.

102: |
103: | Description: it is a wrapper for FND_MENUS_PKG.DELETE_ROW function
104: | This procedure is to be called from a VB program.
105: | If there is an error, the procedure inserts the error
106: | message in BSC_MESSAGE_LOGS table.
107: |
108: | Parameters: x_menu_id - Menu id
109: |
110: | Notes:

Line 121: BSC_MESSAGE.Add(x_message => SQLERRM,

117: FND_MENUS_PKG.DELETE_ROW(X_MENU_ID => X_MENU_ID);
118:
119: EXCEPTION
120: WHEN OTHERS THEN
121: BSC_MESSAGE.Add(x_message => SQLERRM,
122: x_source => 'BSC_LAUNCH_PAD_PVT.DELETE_APP_MENU_VB',
123: x_mode => 'I');
124: END DELETE_APP_MENU_VB;
125: /*===========================================================================+

Line 179: | message in BSC_MESSAGE_LOGS table.

175: |
176: | Description: it is a wrapper for FND_FORM_FUNCTIONS_PKG.INSERT_ROW function
177: | This procedure is to be called from a VB program.
178: | If there is an error, the procedure inserts the error
179: | message in BSC_MESSAGE_LOGS table.
180: |
181: | Parameters:
182: +============================================================================*/
183: PROCEDURE INSERT_FORM_FUNCTION_VB(X_FUNCTION_ID in NUMBER,

Line 233: BSC_MESSAGE.Add(x_message => SQLERRM,

229: X_LAST_UPDATE_LOGIN => 0 );
230:
231: EXCEPTION
232: WHEN OTHERS THEN
233: BSC_MESSAGE.Add(x_message => SQLERRM,
234: x_source => 'BSC_LAUNCH_PAD_PVT.INSERT_FORM_FUNCTION_VB',
235: x_mode => 'I');
236:
237: END INSERT_FORM_FUNCTION_VB;

Line 245: | message in BSC_MESSAGE_LOGS table.

241: |
242: | Description: it is a wrapper for FND_FORM_FUNCTIONS_PKG.UPDATE_ROW function
243: | This procedure is to be called from a VB program.
244: | If there is an error, the procedure inserts the error
245: | message in BSC_MESSAGE_LOGS table.
246: |
247: | Parameters:
248: +============================================================================*/
249: PROCEDURE UPDATE_FORM_FUNCTION_VB(X_FUNCTION_ID in NUMBER,

Line 293: BSC_MESSAGE.Add(x_message => SQLERRM,

289: X_LAST_UPDATE_LOGIN => 0 );
290:
291: EXCEPTION
292: WHEN OTHERS THEN
293: BSC_MESSAGE.Add(x_message => SQLERRM,
294: x_source => 'BSC_LAUNCH_PAD_PVT.UPDATE_FORM_FUNCTION_VB',
295: x_mode => 'I');
296:
297: END UPDATE_FORM_FUNCTION_VB;

Line 305: | message in BSC_MESSAGE_LOGS table.

301: |
302: | Description: it is a wrapper for FND_FORM_FUNCTIONS_PKG.DELETE_ROW function
303: | This procedure is to be called from a VB program.
304: | If there is an error, the procedure inserts the error
305: | message in BSC_MESSAGE_LOGS table.
306: |
307: | Parameters:
308: +============================================================================*/
309: PROCEDURE DELETE_FORM_FUNCTION_VB(X_FUNCTION_ID in NUMBER

Line 317: BSC_MESSAGE.Add(x_message => SQLERRM,

313: fnd_form_functions_pkg.DELETE_ROW(X_FUNCTION_ID => X_FUNCTION_ID);
314:
315: EXCEPTION
316: WHEN OTHERS THEN
317: BSC_MESSAGE.Add(x_message => SQLERRM,
318: x_source => 'BSC_LAUNCH_PAD_PVT.DELETE_FORM_FUNCTION_VB',
319: x_mode => 'I');
320: END DELETE_FORM_FUNCTION_VB;
321: /*===========================================================================+

Line 377: | message in BSC_MESSAGE_LOGS table.

373: |
374: | Description: it is a wrapper for FND_MENU_ENTRIES_PKG.INSERT_ROW function
375: | This procedure is to be called from a VB program.
376: | If there is an error, the procedure inserts the error
377: | message in BSC_MESSAGE_LOGS table.
378: |
379: | Parameters:
380: +============================================================================*/
381: PROCEDURE INSERT_APP_MENU_ENTRIES_VB(X_MENU_ID in NUMBER,

Line 411: BSC_MESSAGE.Add(x_message => SQLERRM,

407: X_LAST_UPDATE_LOGIN => 0 );
408:
409: EXCEPTION
410: WHEN OTHERS THEN
411: BSC_MESSAGE.Add(x_message => SQLERRM,
412: x_source => 'BSC_LAUNCH_PAD_PVT.INSERT_APP_MENU_ENTRIES_VB',
413: x_mode => 'I');
414:
415: END INSERT_APP_MENU_ENTRIES_VB;

Line 423: | message in BSC_MESSAGE_LOGS table.

419: |
420: | Description: it is a wrapper for FND_MENU_ENTRIES_PKG.UPDATE_ROW function
421: | This procedure is to be called from a VB program.
422: | If there is an error, the procedure inserts the error
423: | message in BSC_MESSAGE_LOGS table.
424: |
425: | Parameters:
426: +============================================================================*/
427: PROCEDURE UPDATE_APP_MENU_ENTRIES_VB(X_MENU_ID in NUMBER,

Line 450: BSC_MESSAGE.Add(x_message => SQLERRM,

446: X_LAST_UPDATE_LOGIN => 0 );
447:
448: EXCEPTION
449: WHEN OTHERS THEN
450: BSC_MESSAGE.Add(x_message => SQLERRM,
451: x_source => 'BSC_LAUNCH_PAD_PVT.UPDATE_APP_MENU_ENTRIES_VB',
452: x_mode => 'I');
453:
454: END UPDATE_APP_MENU_ENTRIES_VB;

Line 462: | message in BSC_MESSAGE_LOGS table.

458: |
459: | Description: it is a wrapper for FND_MENU_ENTRIES_PKG.DELETE_ROW function
460: | This procedure is to be called from a VB program.
461: | If there is an error, the procedure inserts the error
462: | message in BSC_MESSAGE_LOGS table.
463: |
464: | Parameters:
465: +============================================================================*/
466: PROCEDURE DELETE_APP_MENU_ENTRIES_VB(X_MENU_ID in NUMBER,

Line 475: BSC_MESSAGE.Add(x_message => SQLERRM,

471: X_ENTRY_SEQUENCE => X_ENTRY_SEQUENCE);
472:
473: EXCEPTION
474: WHEN OTHERS THEN
475: BSC_MESSAGE.Add(x_message => SQLERRM,
476: x_source => 'BSC_LAUNCH_PAD_PVT.DELETE_APP_MENU_ENTRIES_VB',
477: x_mode => 'I');
478: END DELETE_APP_MENU_ENTRIES_VB;
479:

Line 488: | message in BSC_MESSAGE_LOGS table.

484: |
485: | Description: it is a wrapper for FND_FUNCTION_SECURITY.SECURITY_RULE_EXISTS function
486: | This procedure is to be called from a VB program.
487: | If there is an error, the procedure inserts the error
488: | message in BSC_MESSAGE_LOGS table.
489: |
490: | Parameters:
491: +============================================================================*/
492: FUNCTION SECURITY_RULE_EXISTS_VB(responsibility_key in varchar2,

Line 977: BSC_MESSAGE.Add (x_message => SQLERRM,

973: RETURN TRUE;
974:
975: EXCEPTION
976: WHEN OTHERS THEN
977: BSC_MESSAGE.Add (x_message => SQLERRM,
978: x_source => 'BSC_LAUNCH_PAD_PVT.Migrate_Custom_Links');
979: RETURN FALSE;
980: END Migrate_Custom_Links;
981:

Line 1134: BSC_MESSAGE.Add (x_message => SQLERRM,

1130: WHEN e_no_migrate THEN
1131: RETURN TRUE;
1132:
1133: WHEN OTHERS THEN
1134: BSC_MESSAGE.Add (x_message => SQLERRM,
1135: x_source => 'BSC_LAUNCH_PAD_PVT.Migrate_Custom_Links_Security');
1136: RETURN FALSE;
1137: END Migrate_Custom_Links_Security;
1138: