Hi guys,
Our client would like to have the ability to print a section of a request screen in the same way the 'Print' button prints the Request Ticket report. Is it possible to have the default 'Print' button point to the Request Ticket, while another button points to a different report?
I tried modifying RunReport() by changing the report name ('RFC Implementation Plan') which I had created under the 'Tickets' report folder, but it opens the default Request Ticket.
========
function RunReport()
{
mda = Main.document.all;
if (mda.ENTITY_TYPE != null)
NewReportWindow(mda.ID.value, "RFC%20IMPLEMENTATION%20PLAN", mda.REQUEST_NO.value, mda.ENTITY_TYPE.value, RequestCoreEntityRef);
else
InAlert(LoadText(322),LoadText(1671, "ENTITY_TYPE"));
}
=========
The only way I could get the button to open the custom report was to assign it to the Request screen set in Admin, but this also makes the 'Print' button point to this.
Thanks