DBA Data[Home] [Help]

APPS.FND_WEBATTCH dependencies on FND_TEMP_FILE_PARAMETERS

Line 2654: ** Update FND_TEMP_FILE_PARAMETERS

2650: IS
2651:
2652: BEGIN
2653: /*
2654: ** Update FND_TEMP_FILE_PARAMETERS
2655: */
2656: IF (p_file_id IS NOT NULL) THEN
2657: UPDATE fnd_temp_file_parameters
2658: SET FILE_PARAMETERS = p_document_id

Line 2657: UPDATE fnd_temp_file_parameters

2653: /*
2654: ** Update FND_TEMP_FILE_PARAMETERS
2655: */
2656: IF (p_file_id IS NOT NULL) THEN
2657: UPDATE fnd_temp_file_parameters
2658: SET FILE_PARAMETERS = p_document_id
2659: WHERE FILE_ID = p_file_id;
2660:
2661: if (SQL%NOTFOUND) then

Line 2705: insert into fnd_temp_file_parameters (file_id, file_parameters)

2701: l_file_id := fnd_random_pkg.get_next;
2702:
2703: -- Store the file attributes for secured access and commit the
2704: -- transaction.
2705: insert into fnd_temp_file_parameters (file_id, file_parameters)
2706: values (l_file_id, null);
2707:
2708: -- Commit the transaction
2709: COMMIT;