use of >>, sinh(), to _number, current form [message #86534] |
Fri, 08 October 2004 04:33 |
Vasu
Messages: 9 Registered: June 1999
|
Junior Member |
|
|
can we use >> in sql. ex: where empno >> 15;
sinh(), to_number() are both numeric functions.
what built in provide name of current form
which system varaible can tell u the record on which the user has placed focus
pls send replys
|
|
|
Re: use of >>, sinh(), to _number, current form [message #86553 is a reply to message #86534] |
Sun, 10 October 2004 21:43 |
Himanshu
Messages: 457 Registered: December 2001
|
Senior Member |
|
|
Hi,
No you cannot use >> in sql.
GET_APPLICATION_PROPERTY can tell you the name of Current form.
E.g.
DECLARE
tm_name VARCHAR2(40);
BEGIN
frm_name := Get_Application_Property(CURRENT_FORM);
END;
:System.Cursor_record will tell you in which record the focus is.
HTH
Regards
Himanshu
|
|
|