DBA Data[Home] [Help]

APPS.FND_WEBATTCH dependencies on FND_RANDOM_PKG

Line 2699: fnd_random_pkg.init(7);

2695: pragma AUTONOMOUS_TRANSACTION;
2696: l_file_id varchar2(32);
2697: BEGIN
2698: -- Generate Random Number for secured access key
2699: fnd_random_pkg.init(7);
2700: fnd_random_pkg.seed(to_number(to_char(sysdate, 'JSSSSS')), 10, false);
2701: l_file_id := fnd_random_pkg.get_next;
2702:
2703: -- Store the file attributes for secured access and commit the

Line 2700: fnd_random_pkg.seed(to_number(to_char(sysdate, 'JSSSSS')), 10, false);

2696: l_file_id varchar2(32);
2697: BEGIN
2698: -- Generate Random Number for secured access key
2699: fnd_random_pkg.init(7);
2700: fnd_random_pkg.seed(to_number(to_char(sysdate, 'JSSSSS')), 10, false);
2701: l_file_id := fnd_random_pkg.get_next;
2702:
2703: -- Store the file attributes for secured access and commit the
2704: -- transaction.

Line 2701: l_file_id := fnd_random_pkg.get_next;

2697: BEGIN
2698: -- Generate Random Number for secured access key
2699: fnd_random_pkg.init(7);
2700: fnd_random_pkg.seed(to_number(to_char(sysdate, 'JSSSSS')), 10, false);
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)