DBA Data[Home] [Help]

APPS.IBY_UTILITY_PVT dependencies on FND_GLOBAL

Line 432: v := v || fnd_global.local_chr( x );

428: --when the last two bytes equal '='
429: IF( iPlusTwo = 64 ) THEN
430: x := iTh * 64 + iPlusOne;
431: x := floor(x/16);
432: v := v || fnd_global.local_chr( x );
433:
434: --when the last byte equals '='
435: ELSIF( iPlusThree = 64 ) THEN
436: x := iTh * 4096 + iPlusOne * 64 + iPlusTwo;

Line 438: v := v || fnd_global.local_chr( y );

434: --when the last byte equals '='
435: ELSIF( iPlusThree = 64 ) THEN
436: x := iTh * 4096 + iPlusOne * 64 + iPlusTwo;
437: y := floor(x/1024);
438: v := v || fnd_global.local_chr( y );
439: x := x - y * 1024;
440: x := floor(x/4);
441: v := v || fnd_global.local_chr( x );
442:

Line 441: v := v || fnd_global.local_chr( x );

437: y := floor(x/1024);
438: v := v || fnd_global.local_chr( y );
439: x := x - y * 1024;
440: x := floor(x/4);
441: v := v || fnd_global.local_chr( x );
442:
443: --when all the bytes hold values to be converted.
444: ELSE
445: x := iTh * 262144 + iPlusOne * 4096 + iPlusTwo * 64 + iPlusThree;

Line 447: v := v || fnd_global.local_chr( y );

443: --when all the bytes hold values to be converted.
444: ELSE
445: x := iTh * 262144 + iPlusOne * 4096 + iPlusTwo * 64 + iPlusThree;
446: y := floor(x/65536);
447: v := v || fnd_global.local_chr( y );
448: x := x - y * 65536;
449: y := floor(x/256);
450: v := v || fnd_global.local_chr( y );
451: x := x - y * 256;

Line 450: v := v || fnd_global.local_chr( y );

446: y := floor(x/65536);
447: v := v || fnd_global.local_chr( y );
448: x := x - y * 65536;
449: y := floor(x/256);
450: v := v || fnd_global.local_chr( y );
451: x := x - y * 256;
452: v := v || fnd_global.local_chr( x );
453: END IF;
454: i := i + 4;

Line 452: v := v || fnd_global.local_chr( x );

448: x := x - y * 65536;
449: y := floor(x/256);
450: v := v || fnd_global.local_chr( y );
451: x := x - y * 256;
452: v := v || fnd_global.local_chr( x );
453: END IF;
454: i := i + 4;
455: END LOOP;
456:

Line 605: (p_name,p_val,fnd_global.user_id,sysdate,fnd_global.user_id,

601: INSERT INTO iby_view_parameters_gt
602: (name,value,created_by,creation_date,last_updated_by,last_update_date,
603: last_update_login,object_version_number)
604: VALUES
605: (p_name,p_val,fnd_global.user_id,sysdate,fnd_global.user_id,
606: sysdate,fnd_global.login_id,1);
607:
608: -- no commit, as data deleted at the end of the current
609: -- transaction

Line 606: sysdate,fnd_global.login_id,1);

602: (name,value,created_by,creation_date,last_updated_by,last_update_date,
603: last_update_login,object_version_number)
604: VALUES
605: (p_name,p_val,fnd_global.user_id,sysdate,fnd_global.user_id,
606: sysdate,fnd_global.login_id,1);
607:
608: -- no commit, as data deleted at the end of the current
609: -- transaction
610: END set_view_param;