DBA Data[Home] [Help]

APPS.BSC_LAUNCH_PAD_PVT dependencies on FND_MENUS_PKG

Line 11: | Description: it is a wrapper for FND_MENUS_PKG.INSERT_ROW function

7: /*===========================================================================+
8: |
9: | Name: INSERT_APP_MENU_VB
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: |

Line 37: FND_MENUS_PKG.INSERT_ROW( X_ROWID => row_id,

33: row_id VARCHAR2(30);
34: BEGIN
35: DELETE FND_MENUS WHERE MENU_ID = X_MENU_ID;
36: DELETE FND_MENUS_TL WHERE MENU_ID = X_MENU_ID;
37: FND_MENUS_PKG.INSERT_ROW( X_ROWID => row_id,
38: X_MENU_ID => X_MENU_ID,
39: X_MENU_NAME => X_MENU_NAME,
40: X_USER_MENU_NAME => X_USER_MENU_NAME,
41: X_MENU_TYPE => X_MENU_TYPE,

Line 60: | Description: it is a wrapper for FND_MENUS_PKG.UPDATE_ROW function

56: /*===========================================================================+
57: |
58: | Name: UPDATE_APP_MENU_VB
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: |

Line 84: FND_MENUS_PKG.UPDATE_ROW(X_MENU_ID => X_MENU_ID,

80: X_USER_ID in NUMBER
81: ) IS
82: row_id VARCHAR2(30);
83: BEGIN
84: FND_MENUS_PKG.UPDATE_ROW(X_MENU_ID => X_MENU_ID,
85: X_MENU_NAME => X_MENU_NAME,
86: X_USER_MENU_NAME => X_USER_MENU_NAME,
87: X_MENU_TYPE => X_MENU_TYPE,
88: X_DESCRIPTION => X_DESCRIPTION,

Line 103: | Description: it is a wrapper for FND_MENUS_PKG.DELETE_ROW function

99: /*===========================================================================+
100: |
101: | Name: DELETE_APP_MENU_VB
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: |

Line 117: FND_MENUS_PKG.DELETE_ROW(X_MENU_ID => X_MENU_ID);

113: PROCEDURE DELETE_APP_MENU_VB(X_MENU_ID in NUMBER
114: ) IS
115: row_id VARCHAR2(30);
116: BEGIN
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,

Line 733: FND_MENUS_PKG.INSERT_ROW(

729: END IF;
730: DBMS_SQL.CLOSE_CURSOR(h_cursor1);
731:
732: -- call the api to create the menu
733: FND_MENUS_PKG.INSERT_ROW(
734: X_ROWID => h_row_id,
735: X_MENU_ID => h_menu_id,
736: X_MENU_NAME => h_menu_name,
737: X_USER_MENU_NAME => h_user_menu_name,