Need help on customization for Epicor 9

Thank you all for your help.

Jim,

Your last post was the solution - adding the opts parameter did the
trick.

Thank you so very much for all your help in this,

Dave Beberman
Programmer/Analyst
Ferguson Perforating
Providence RI
dbeberman@...

________________________________

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf
Of jckinneman
Sent: Monday, December 28, 2009 9:24 AM
To: vantage@yahoogroups.com
Subject: [Vantage] Re: Need help on customization for Epicor 9.






You can call BAQ reports via a customization. I use it frequently.

I think the call to the launchform needs another parameter. Whether the
IsModal is needed can't say, just have always set it and the call works
so never came back and tried it without it.

This is c# but you can easily change it into VB.

LaunchFormOptions opts = new LaunchFormOptions();
opts.IsModal = false;

opts.ValueIn = "ReplaceWithNameofYourBaqReport";
ProcessCaller.LaunchForm(oTrans, "UDXXX", opts);

Jim Kinneman
En>compass Solutions Inc.
Tel 336.298.1296 (Google Voice)
Fax 336.217.7983
E-mail jimki@... <mailto:jimki%40encompass-inc.com>
www.encompass-inc.com

--- In vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> ,
"adriancctfssb" <xenite_v@...> wrote:
>
> Hi,
>
> Actually Epicor 9 customization dont allow you to call the BAQ report
that you do using the button but it can be done using the SDK. We
actually using the SDK to do new reports and call out using the button.
>
> Best Regards
> Adrian
>
> --- In vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> ,
"David Beberman" <dbeberman@> wrote:
> >
> > Hi,
> >
> > I am writing my first Epicor 9 customization and am sitting on the
same
> > error trying to do exactly what you did.
> >
> > Did you ever find a solution?
> >
> > -Dave Beberman
> > Ferguson Perforating
> > Providence RI
> >
> > ________________________________
> >
> > From: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
[mailto:vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> ] On
Behalf
> > Of xenite_v
> > Sent: Sunday, July 12, 2009 9:06 PM
> > To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
> > Subject: [Vantage] Re: Need help on customization for Epicor 9.
> >
> >
> >
> >
> >
> > Anyone? Really need some help in this area
> >
> > --- In vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> ,
> > "xenite_v" <xenite_v@> wrote:
> > >
> > > Hello everyone
> > >
> > > Currently i'm trying to use a button to called a BAQ report.
> > > I have try to use the ProcessCaller.LaunchForm(oTrans,"UDXXX") but
i'm
> > having error popping up. The error that i'm having is
> > >
> > > "The process caller failed to invoke method LaunchForm in
> > Epicor.Mfg.UI.App.Launch in Epicor.Mfg.UIRpt.BAQReport.dll"
> > >
> > > Can someone please help me out. Thank alot
> > >
> >
> >
> >
> >
> >
> >
> > ---------------------------------
> > This e-mail and any attachments may contain confidential and
> > privileged information. If you are not the intended recipient,
> > please notify the sender immediately by return e-mail, delete this
> > e-mail and destroy any copies. Any dissemination or use of this
> > information by a person other than the intended recipient is
> > unauthorized and may be illegal.
> >
> > [Non-text portions of this message have been removed]
> >
>






---------------------------------
This e-mail and any attachments may contain confidential and
privileged information. If you are not the intended recipient,
please notify the sender immediately by return e-mail, delete this
e-mail and destroy any copies. Any dissemination or use of this
information by a person other than the intended recipient is
unauthorized and may be illegal.

[Non-text portions of this message have been removed]
Hello everyone

Currently i'm trying to use a button to called a BAQ report.
I have try to use the ProcessCaller.LaunchForm(oTrans,"UDXXX") but i'm having error popping up. The error that i'm having is

"The process caller failed to invoke method LaunchForm in Epicor.Mfg.UI.App.Launch in Epicor.Mfg.UIRpt.BAQReport.dll"

Can someone please help me out. Thank alot
Anyone? Really need some help in this area

--- In vantage@yahoogroups.com, "xenite_v" <xenite_v@...> wrote:
>
> Hello everyone
>
> Currently i'm trying to use a button to called a BAQ report.
> I have try to use the ProcessCaller.LaunchForm(oTrans,"UDXXX") but i'm having error popping up. The error that i'm having is
>
> "The process caller failed to invoke method LaunchForm in Epicor.Mfg.UI.App.Launch in Epicor.Mfg.UIRpt.BAQReport.dll"
>
> Can someone please help me out. Thank alot
>
Hi,

I am writing my first Epicor 9 customization and am sitting on the same
error trying to do exactly what you did.

Did you ever find a solution?

-Dave Beberman
Ferguson Perforating
Providence RI

________________________________

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf
Of xenite_v
Sent: Sunday, July 12, 2009 9:06 PM
To: vantage@yahoogroups.com
Subject: [Vantage] Re: Need help on customization for Epicor 9.





Anyone? Really need some help in this area

--- In vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> ,
"xenite_v" <xenite_v@...> wrote:
>
> Hello everyone
>
> Currently i'm trying to use a button to called a BAQ report.
> I have try to use the ProcessCaller.LaunchForm(oTrans,"UDXXX") but i'm
having error popping up. The error that i'm having is
>
> "The process caller failed to invoke method LaunchForm in
Epicor.Mfg.UI.App.Launch in Epicor.Mfg.UIRpt.BAQReport.dll"
>
> Can someone please help me out. Thank alot
>






---------------------------------
This e-mail and any attachments may contain confidential and
privileged information. If you are not the intended recipient,
please notify the sender immediately by return e-mail, delete this
e-mail and destroy any copies. Any dissemination or use of this
information by a person other than the intended recipient is
unauthorized and may be illegal.

[Non-text portions of this message have been removed]
Hi,

Actually Epicor 9 customization dont allow you to call the BAQ report that you do using the button but it can be done using the SDK. We actually using the SDK to do new reports and call out using the button.

Best Regards
Adrian

--- In vantage@yahoogroups.com, "David Beberman" <dbeberman@...> wrote:
>
> Hi,
>
> I am writing my first Epicor 9 customization and am sitting on the same
> error trying to do exactly what you did.
>
> Did you ever find a solution?
>
> -Dave Beberman
> Ferguson Perforating
> Providence RI
>
> ________________________________
>
> From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf
> Of xenite_v
> Sent: Sunday, July 12, 2009 9:06 PM
> To: vantage@yahoogroups.com
> Subject: [Vantage] Re: Need help on customization for Epicor 9.
>
>
>
>
>
> Anyone? Really need some help in this area
>
> --- In vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> ,
> "xenite_v" <xenite_v@> wrote:
> >
> > Hello everyone
> >
> > Currently i'm trying to use a button to called a BAQ report.
> > I have try to use the ProcessCaller.LaunchForm(oTrans,"UDXXX") but i'm
> having error popping up. The error that i'm having is
> >
> > "The process caller failed to invoke method LaunchForm in
> Epicor.Mfg.UI.App.Launch in Epicor.Mfg.UIRpt.BAQReport.dll"
> >
> > Can someone please help me out. Thank alot
> >
>
>
>
>
>
>
> ---------------------------------
> This e-mail and any attachments may contain confidential and
> privileged information. If you are not the intended recipient,
> please notify the sender immediately by return e-mail, delete this
> e-mail and destroy any copies. Any dissemination or use of this
> information by a person other than the intended recipient is
> unauthorized and may be illegal.
>
> [Non-text portions of this message have been removed]
>
You can call BAQ reports via a customization. I use it frequently.

I think the call to the launchform needs another parameter. Whether the IsModal is needed can't say, just have always set it and the call works so never came back and tried it without it.

This is c# but you can easily change it into VB.

LaunchFormOptions opts = new LaunchFormOptions();
opts.IsModal = false;

opts.ValueIn = "ReplaceWithNameofYourBaqReport";
ProcessCaller.LaunchForm(oTrans, "UDXXX", opts);

Jim Kinneman
En>compass Solutions Inc.
Tel 336.298.1296 (Google Voice)
Fax 336.217.7983
E-mail jimki@...
www.encompass-inc.com


--- In vantage@yahoogroups.com, "adriancctfssb" <xenite_v@...> wrote:
>
> Hi,
>
> Actually Epicor 9 customization dont allow you to call the BAQ report that you do using the button but it can be done using the SDK. We actually using the SDK to do new reports and call out using the button.
>
> Best Regards
> Adrian
>
> --- In vantage@yahoogroups.com, "David Beberman" <dbeberman@> wrote:
> >
> > Hi,
> >
> > I am writing my first Epicor 9 customization and am sitting on the same
> > error trying to do exactly what you did.
> >
> > Did you ever find a solution?
> >
> > -Dave Beberman
> > Ferguson Perforating
> > Providence RI
> >
> > ________________________________
> >
> > From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf
> > Of xenite_v
> > Sent: Sunday, July 12, 2009 9:06 PM
> > To: vantage@yahoogroups.com
> > Subject: [Vantage] Re: Need help on customization for Epicor 9.
> >
> >
> >
> >
> >
> > Anyone? Really need some help in this area
> >
> > --- In vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> ,
> > "xenite_v" <xenite_v@> wrote:
> > >
> > > Hello everyone
> > >
> > > Currently i'm trying to use a button to called a BAQ report.
> > > I have try to use the ProcessCaller.LaunchForm(oTrans,"UDXXX") but i'm
> > having error popping up. The error that i'm having is
> > >
> > > "The process caller failed to invoke method LaunchForm in
> > Epicor.Mfg.UI.App.Launch in Epicor.Mfg.UIRpt.BAQReport.dll"
> > >
> > > Can someone please help me out. Thank alot
> > >
> >
> >
> >
> >
> >
> >
> > ---------------------------------
> > This e-mail and any attachments may contain confidential and
> > privileged information. If you are not the intended recipient,
> > please notify the sender immediately by return e-mail, delete this
> > e-mail and destroy any copies. Any dissemination or use of this
> > information by a person other than the intended recipient is
> > unauthorized and may be illegal.
> >
> > [Non-text portions of this message have been removed]
> >
>