Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Actuate maximo request page help

Status
Not open for further replies.

shahdhruv

Programmer
Mar 29, 2005
5
US
Hi everyone. I am having trouble using the request page in maximo to run actuate reports. The submit button doesnt seem to work at all. It works in some other reports but not the ones I create or modify. I am not able to run themon the actuate server too. I get errors in functions.bas and frontendfunctions.bas. Little research revealed it has something to do with decrypting password. In any case, the report doesnt fire from the request page's submit button.

Any help is very vaulable.
Thanks,
Dhruv.
 
Dhruv

What code do you have in the Submit button? I run Actuate reports from Maximo too. Wehn I double-click the Submit button, and look in the BrowserCode property, I have code like:

<A HREF='javascript:myVoid()'>
<img name="btntxt_submit" href="" border="0" onClick="handleSubmit('/INVENTOR/reports/replenishment_act.rox')" src="/actuate/default/images/txt_btn_submit_highlighted.gif" width="75" height="19" alt="Submit">
</A>

Also, if I double-click the top-most node in the tree on the left (NewReportApp in my case), then in the GobalDHTMLCode property there is code like:

<SCRIPT LANGUAGE="JavaScript" SRC="/actuate/MRO/Functions.js" ID="func"></SCRIPT>

<SCRIPT LANGUAGE="JavaScript">
var lang = GetCookie("locale");

function SubmitReport(form)
{
var query_selection = getSelectedButton( form.Record_Type);

pickWhereClauseFromCookie( query_selection, form );

Waiting("Loading Report...");
form.submit();
}

</SCRIPT>

Let me know if this is of any help.

Pete
 
I had older version of the bas files, thats why code didnot work.
I appreciate your reply.

Thanks,
Dhruv.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top