DBA Data[Home] [Help]

APPS.FND_WEBATTCH dependencies on FND_RANDOM_PKG

Line 2624: fnd_random_pkg.init(7);

2620: pragma AUTONOMOUS_TRANSACTION;
2621: l_file_id varchar2(32);
2622: BEGIN
2623: -- Generate Random Number for secured access key
2624: fnd_random_pkg.init(7);
2625: fnd_random_pkg.seed(to_number(to_char(sysdate, 'JSSSSS')), 10, false);
2626: l_file_id := fnd_random_pkg.get_next;
2627:
2628: -- Store the file attributes for secured access and commit the

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

2621: l_file_id varchar2(32);
2622: BEGIN
2623: -- Generate Random Number for secured access key
2624: fnd_random_pkg.init(7);
2625: fnd_random_pkg.seed(to_number(to_char(sysdate, 'JSSSSS')), 10, false);
2626: l_file_id := fnd_random_pkg.get_next;
2627:
2628: -- Store the file attributes for secured access and commit the
2629: -- transaction.

Line 2626: l_file_id := fnd_random_pkg.get_next;

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