Home » Developer & Programmer » Forms » Forms not displaying in Server , but displaying in local (Oracle Forms 10g, windows 2003(Server))
Forms not displaying in Server , but displaying in local [message #557933] Mon, 18 June 2012 01:26 Go to next message
ariffcal
Messages: 107
Registered: April 2011
Senior Member
Dear Sir,

After login form is displayed , my form is not displaying and showing blank .

The login forms passes parameter Users_name and mc_name to the forms that is not displaying .

The second form is called from menus . This forms menu is getting displayed but the content is blank (attached the screen).

This problem is only in the server , local is working fine .

The coding is given below .

declare
uname varchar2(30);
cname varchar2(40);
pl_id paramlist;
userid varchar2(20) := name_in('parameter.user_name');
mcode varchar2(10) := name_in('parameter.mc_name');
m_priv_list varchar2(200);
begin

pl_id := get_parameter_list('tempdata');
if not ID_NULL(pl_id) then
destroy_parameter_list(pl_id);
end if;
pl_id := create_parameter_list('tempdata');

add_parameter(pl_id,'user_name',text_parameter,userid);
add_parameter(pl_id,'mc_name',text_parameter,mcode);

call_form('FirstInventory.fmx',hide,do_replace,no_query_only,pl_id);
exception
when others then
message(sqlerrm);
message(sqlerrm);
end;
  • Attachment: content.JPG
    (Size: 78.86KB, Downloaded 613 times)
Re: Forms not displaying in Server , but displaying in local [message #557939 is a reply to message #557933] Mon, 18 June 2012 02:17 Go to previous message
sasipalarivattom
Messages: 121
Registered: June 2007
Location: Cochin ( INDIA )
Senior Member
Make Sure that the fmx is available in the same directory.
message and Pause in New-Form-Instance Trigger. and check whether the control reach there.
Try after unistalling all those weired toolbars.
Regards ,
Sasi
Previous Topic: How to retrieve records from SCOTT.EMP table, without using data block wizard?
Next Topic: Call Forms And Reports through node
Goto Forum:
  


Current Time: Sat Jul 06 10:06:39 CDT 2024