DBA Data[Home] [Help]

APPS.FND_MESSAGE dependencies on DBMS_UTILITY

Line 52: TAB_INDEX := dbms_utility.get_hash_value(NAME_UPPER,1,TABLE_SIZE);

48:
49: begin
50:
51: NAME_UPPER := upper(NAME);
52: TAB_INDEX := dbms_utility.get_hash_value(NAME_UPPER,1,TABLE_SIZE);
53:
54: if (msg_table.EXISTS(TAB_INDEX)) then
55:
56: if (msg_table(TAB_INDEX).message_name = NAME_UPPER) then

Line 146: TABLE_INDEX := dbms_utility.get_hash_value(NAME_UPPER,1,TABLE_SIZE);

142: /*
143: ** search for the option name
144: */
145: STORED := false;
146: TABLE_INDEX := dbms_utility.get_hash_value(NAME_UPPER,1,TABLE_SIZE);
147: if (msg_table.EXISTS(TABLE_INDEX)) then
148: if (msg_table(TABLE_INDEX).message_name = NAME_UPPER) then /* Found the message */
149: msg_table(TABLE_INDEX) := VAL; /* Store the new value */
150: STORED := TRUE;