Focal Point
How to include maintain procedure in the portal

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/2011094651

February 28, 2006, 08:24 AM
Qalqili
How to include maintain procedure in the portal
hi All

i create DashBoard that access webFocus Report i Create the Procedure easily At Managed Reporting,and i include it with in block inside the DashBoard, but now am stuck at this point: how to Create Maintain procedure that update the Data Source at the MR to include it inside the DashBoard?
any idea Confused


WF 7.7.0.3HF3 / WinXP- WF-Client & Apache / DevStd 7.7.0.3HF3 win XP.
February 28, 2006, 08:59 AM
Pete
Hi,

I'm a bit confused....

Is your question : how to add a maintain module to your dashboard?

if so...

you can create a HTML page , which starts your maintain module, you can this html-page to your dashboard

for example

<html>
<head>
<title>Launch SearchTool Application</title>
<script language="javascript" type="text/javascript">
  function enterMntApp()
  {
    start.IBIF_cmd.value=
      "MNTCON CLOSEMSH;MNTCON APPPATH iam;MNTCON EX IAMMAIN";
    start.submit();
  }
</script>
</head>
<body onload="enterMntApp()">
  <form name="start" action="http://S11007:80/cgi-bin/ibi_cgi/ibiweb.exe" method="POST">
    <input type="hidden" name="IBIS_connect" value="on"/>
    <input type="hidden" name="IBIS_passthru" value="on"/>
    <input type="hidden" name="IBIC_server" value="CLUSTER"/>
    <input type="hidden" name="IBIF_cmd" value=""/>
  </form>
</body>
</html>




Is this what your are looking for?


D: WF 7.6.2 P. : WF 7.6.2 on W2003
------------------------------------------------------------------
I see myself as an intelligent, sensitive human, with the soul of a clown which forces me to blow it at the most important moments.

-Jim Morrison-

February 28, 2006, 09:25 AM
Qalqili
ThanX for reply
Yes my quistion is how to add maintain module to the DashBoard;
but i have some difficulty to understand your Code
[Cuz am beginner with WF 7.1]:-

start.IBIF_cmd.value="MNTCON CLOSEMSH;MNTCON APPPATH iam;MNTCON EX IAMMAIN";

can you explain please Roll Eyes


WF 7.7.0.3HF3 / WinXP- WF-Client & Apache / DevStd 7.7.0.3HF3 win XP.
February 28, 2006, 09:33 AM
Pete
start.IBIF_cmd.value="MNTCON CLOSEMSH;MNTCON APPPATH iam;MNTCON EX IAMMAIN";


It is the commandline to start a maintain proc.



iam : being the projectfolder of your application
iammain : being the main procedure of your module

so replace these two by your own data

just copy the rest.


D: WF 7.6.2 P. : WF 7.6.2 on W2003
------------------------------------------------------------------
I see myself as an intelligent, sensitive human, with the soul of a clown which forces me to blow it at the most important moments.

-Jim Morrison-

February 28, 2006, 09:53 AM
Qalqili
it begin asking me about user name and password
my WebFocus is starting in start security OFF

any suggest;


WF 7.7.0.3HF3 / WinXP- WF-Client & Apache / DevStd 7.7.0.3HF3 win XP.
February 28, 2006, 09:57 AM
Qalqili
i got it

what i am doing ? just i set the value to "" at the hidden parameter

and it is run

but correct me if i am in wrong way


WF 7.7.0.3HF3 / WinXP- WF-Client & Apache / DevStd 7.7.0.3HF3 win XP.
February 28, 2006, 09:58 AM
Pete
just remove the connect line


D: WF 7.6.2 P. : WF 7.6.2 on W2003
------------------------------------------------------------------
I see myself as an intelligent, sensitive human, with the soul of a clown which forces me to blow it at the most important moments.

-Jim Morrison-

February 28, 2006, 10:24 AM
Qalqili
is working fine now

thanX a lot Pete


WF 7.7.0.3HF3 / WinXP- WF-Client & Apache / DevStd 7.7.0.3HF3 win XP.