call_form in oracle web application [message #455152] |
Mon, 10 May 2010 09:12 |
cestsourire
Messages: 7 Registered: April 2010
|
Junior Member |
|
|
I deployed an oracle web application in 10g.
I have done the configuration required and when I entered my URL,
my first login form appeared.
But when I enter the login and password, it does not call the form. My .FMX are set in the same folder where the login forms.
My login trigger after the test of valid login and password is:
pl_id := GET_PARAMETER_LIST('Mylist');
IF NOT Id_Null(pl_id) THEN
Destroy_Parameter_List(pl_id);
END IF;
pl_id := CREATE_PARAMETER_LIST('Mylist');
add_parameter(pl_id,'UTIL',TEXT_PARAMETER,:usr);
CALL_FORM('MyForm.fmx',hide,no_replace,no_query_only,pl_id);
exit_form;
I tried also to set a simple trigger with only a message, in the login form, but it dos not work.
Please have you an idea how to solve these problem.
Best regards.
|
|
|
Re: call_form in oracle web application [message #455159 is a reply to message #455152] |
Mon, 10 May 2010 09:29 |
gregor
Messages: 86 Registered: March 2010 Location: Germany
|
Member |
|
|
Hi,
please make it assured, that the message can displayed.
- Not all Trigger allow messages.
- The message-Built in should be could two-times
or in combination with The "PAUSE;"-Build-in.
If the message is not displayed yet. You have an
duplicate of your form in an other path.
|
|
|
|