DBA Data[Home] [Help]

APPS.BSC_LAUNCH_PAD_PVT dependencies on FND_FORM_FUNCTIONS_PKG

Line 176: | Description: it is a wrapper for FND_FORM_FUNCTIONS_PKG.INSERT_ROW function

172: /*===========================================================================+
173: |
174: | Name: INSERT_FORM_FUNCTION_VB
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: |

Line 207: fnd_form_functions_pkg.INSERT_ROW( X_ROWID => row_id,

203:
204: BEGIN
205: DELETE FND_FORM_FUNCTIONS WHERE FUNCTION_ID = X_FUNCTION_ID;
206: DELETE FND_FORM_FUNCTIONS_TL WHERE FUNCTION_ID = X_FUNCTION_ID;
207: fnd_form_functions_pkg.INSERT_ROW( X_ROWID => row_id,
208: X_FUNCTION_ID => X_FUNCTION_ID,
209: X_WEB_HOST_NAME => X_WEB_HOST_NAME,
210: X_WEB_AGENT_NAME => X_WEB_AGENT_NAME,
211: X_WEB_HTML_CALL => X_WEB_HTML_CALL,

Line 242: | Description: it is a wrapper for FND_FORM_FUNCTIONS_PKG.UPDATE_ROW function

238: /*===========================================================================+
239: |
240: | Name: UPDATE_FORM_FUNCTION_VB
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: |

Line 270: fnd_form_functions_pkg.UPDATE_ROW(X_FUNCTION_ID => X_FUNCTION_ID,

266: X_USER_ID in NUMBER
267: ) IS
268: row_id VARCHAR2(30);
269: BEGIN
270: fnd_form_functions_pkg.UPDATE_ROW(X_FUNCTION_ID => X_FUNCTION_ID,
271: X_WEB_HOST_NAME => X_WEB_HOST_NAME,
272: X_WEB_AGENT_NAME => X_WEB_AGENT_NAME,
273: X_WEB_HTML_CALL => X_WEB_HTML_CALL,
274: X_WEB_ENCRYPT_PARAMETERS => X_WEB_ENCRYPT_PARAMETERS,

Line 302: | Description: it is a wrapper for FND_FORM_FUNCTIONS_PKG.DELETE_ROW function

298: /*===========================================================================+
299: |
300: | Name: DELETE_FORM_FUNCTION_VB
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: |

Line 313: fnd_form_functions_pkg.DELETE_ROW(X_FUNCTION_ID => X_FUNCTION_ID);

309: PROCEDURE DELETE_FORM_FUNCTION_VB(X_FUNCTION_ID in NUMBER
310: ) IS
311: row_id VARCHAR2(30);
312: BEGIN
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,

Line 866: FND_FORM_FUNCTIONS_PKG.INSERT_ROW(

862: END IF;
863: DBMS_SQL.CLOSE_CURSOR(h_cursor2);
864:
865: -- call the api to create the function
866: FND_FORM_FUNCTIONS_PKG.INSERT_ROW(
867: X_ROWID => h_row_id,
868: X_FUNCTION_ID => h_function_id,
869: X_WEB_HOST_NAME => h_web_host_name,
870: X_WEB_AGENT_NAME => h_web_agent_name,