| Command not working [message #148431] |
Thu, 24 November 2005 04:01  |
adil_jahangiri
Messages: 4 Registered: November 2005 Location: Pakistan
|
Junior Member |
|
|
This Command
select sys_context('USERENV', 'IP_ADDRESS') from dual;
working in SQL
but not working in developer forms. what i have to do to run this command in developer forms.
|
|
|
|
|
|
|
|
| Re: Command not working [message #149368 is a reply to message #149364] |
Thu, 01 December 2005 06:36  |
 |
Maaher
Messages: 7065 Registered: December 2001
|
Senior Member |
|
|
Yep, that's what I said:
| Like I stated | so I guess you have to create a server-side function returning the sys_context parameter value. Call that from your Form.
|
BTW: I'd do it like this (slightly improved:no fetch,no needles variables):
SQL> CREATE OR REPLACE FUNCTION f_sys_context(p_env_param IN VARCHAR2)
2 RETURN VARCHAR2
3 IS
4 BEGIN
5 RETURN SYS_CONTEXT('USERENV',p_env_param);
6 END;
7 /
Nah! 
MHE
[Updated on: Thu, 01 December 2005 06:37] Report message to a moderator
|
|
|
|