DBA Data[Home] [Help]

APPS.FND_WEBATTCH dependencies on FND_TEMP_FILE_PARAMETERS

Line 2579: ** Update FND_TEMP_FILE_PARAMETERS

2575: IS
2576:
2577: BEGIN
2578: /*
2579: ** Update FND_TEMP_FILE_PARAMETERS
2580: */
2581: IF (p_file_id IS NOT NULL) THEN
2582: UPDATE fnd_temp_file_parameters
2583: SET FILE_PARAMETERS = p_document_id

Line 2582: UPDATE fnd_temp_file_parameters

2578: /*
2579: ** Update FND_TEMP_FILE_PARAMETERS
2580: */
2581: IF (p_file_id IS NOT NULL) THEN
2582: UPDATE fnd_temp_file_parameters
2583: SET FILE_PARAMETERS = p_document_id
2584: WHERE FILE_ID = p_file_id;
2585:
2586: if (SQL%NOTFOUND) then

Line 2630: insert into fnd_temp_file_parameters (file_id, file_parameters)

2626: l_file_id := fnd_random_pkg.get_next;
2627:
2628: -- Store the file attributes for secured access and commit the
2629: -- transaction.
2630: insert into fnd_temp_file_parameters (file_id, file_parameters)
2631: values (l_file_id, null);
2632:
2633: -- Commit the transaction
2634: COMMIT;