DBA Data[Home] [Help]

APPS.CSM_HTML5_PKG dependencies on DBMS_RANDOM

Line 300: x:= round(dbms_random.value*100000);

296: IS
297: x NUMBER;
298: modl number;
299: BEGIN
300: x:= round(dbms_random.value*100000);
301:
302: modl := mod(x,maxN);
303:
304: IF (modl

Line 467: re:=a||to_char( mod(to_number(substr(dbms_random.value,2,10)),10))||b;

463: a:=substr(re,1,y-1);
464: b:=substr(re, (y+length(g_pattern)));
465: codedAt:=codedAt||to_char((k-nvl(length(b),0)));
466: k:=nvl(length(b),0);
467: re:=a||to_char( mod(to_number(substr(dbms_random.value,2,10)),10))||b;
468: end loop;
469:
470: str:=to_char(length(codedAt)-1); --last / not reqd, omit
471: codedAt:=substr(codedAt,1,length(codedAt)-1)||str||length(str);

Line 2517: l_seq := round(dbms_random.value*100000);

2513: l_s VARCHAR2(100);
2514: l_seq NUMBER;
2515: BEGIN
2516:
2517: l_seq := round(dbms_random.value*100000);
2518: set_user_profile(p_uname,'RSA_KEY',get_rsa_keys(l_e,l_d,l_n));
2519:
2520: l_s :=to_char(l_e)||g_pattern||to_char(l_seq)||g_pattern||to_char(l_n)||g_pattern;
2521: RETURN 'sessionCreated("'||encode(l_s)||'");';