|
|
|
Re: How To Navigate To A Particular Instance Of A Form Programmatically Which Is Opened Multiple tim [message #418092 is a reply to message #418075] |
Wed, 12 August 2009 22:41 |
basu2706
Messages: 10 Registered: August 2009
|
Junior Member |
|
|
Hi Martin,
Thanks for the reply, actually i was trying with the similar method but its not working.
Here is the sample code and error am facing, for your reference:
DECLARE
FORM_ID FORMMODULE;
STORE_ID PLS_INTEGER;
BEGIN
FORM_ID := FIND_FORM('BROWSER');
STORE_ID := FORM_ID.ID;
-- STORE IT IN DB (STORE_ID)
END;
--CALL IT USING STORE_ID
GO_FORM(STORE_ID);
But am getting error as
Argument 1 to GO_FORM cannot be null
cause: its reading it as form-name not as the form id.
Please let me know how can i resolve this issue.
Thanks and Regards,
Basu
|
|
|
|
|
|
|
|