Move the delete button

In Epicor 9.05.700 this is now possible, though I don't see Epicor publicising it. Here is how to do it:
1. Open any Epicor Menu Program.
2. Select 'Options' from the Tools Menu
3. Select the 'Toolbar' tab.
4. Here you can select what you want to do with the Delete Toolbar button:
-Hidden
-After New
-After Refresh
-After Clear
-After Undo
-Before NavControl
-After NavControl
I choose after Clear. Since this is a Global Option, it is set per user and short of messing with the XXX.Chunk field, there is no easy way that I have found to set this company wide or for multiple users.

Didn't look too hard, but I have yet to find this information in the Help Documentation nor the online Knowledgebase search... maybe an unpublished test feature.

-Rick Bird
IT Software Administrator
Rowmark, LLC.


--- In vantage@yahoogroups.com, "michael.hutcheson@..." <michael.hutcheson@...> wrote:
>
> Hello,
>
> Has anyone successfully moved the delete key on the toolbar on the sales entry form? It's next to the save button and it's quite easy to click by mistake. It looks like this can't be performed via normal customisation - am I right?
>
> Thank you for any help.
>
>
> Michael
>
Hello,

Has anyone successfully moved the delete key on the toolbar on the sales entry form? It's next to the save button and it's quite easy to click by mistake. It looks like this can't be performed via normal customisation - am I right?

Thank you for any help.


Michael
We have not tried to move the delete key, but we have a BPM that makes it so only certain users can delete a sales order, job or customer. I can share if interested. it is nothing so exciting but it is how we deal with this issue.



--- In vantage@yahoogroups.com, "michael.hutcheson@..." <michael.hutcheson@...> wrote:
>
> Hello,
>
> Has anyone successfully moved the delete key on the toolbar on the sales entry form? It's next to the save button and it's quite easy to click by mistake. It looks like this can't be performed via normal customisation - am I right?
>
> Thank you for any help.
>
>
> Michael
>
I haven't been able to move it, but I have managed to hide it. You can then create your own delete button on the form. You first have to add the custom assembly reference "Infragistics2.Win.UltraWinToolbars.v6.3". The rest of the code is something like this:

..
..
..
Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid
Imports System.Math
..
..
..
   '// Add Custom Module Level Variables Here **
   dim tools as Infragistics.Win.UltraWinToolbars.UltraToolbarsManager
..
..
..
       '// Begin Custom Method Calls
      Â
       dim obj as Object = GetType(Epicor.Mfg.UI.App.UD105Entry.UD105Form).InvokeMember("baseToolbarsManager", BindingFlags.Instance Or BindingFlags.GetField Or BindingFlags.NonPublic, Nothing, UD105Form, Nothing)
       tools = ctype(obj,Infragistics.Win.UltraWinToolbars.UltraToolbarsManager)
       disableTools()

       '// End Custom Method Calls
      Â
   End Sub
 Â
 Sub disableTools( )
       if tools.Tools.Exists("DeleteTool")
           tools.Tools("DeleteTool").SharedProps.Visible = False
       end if
       if tools.Tools.Exists("FileMenu")
           tools.Tools("FileMenu").SharedProps.Enabled = false
       end if
       if tools.Tools.Exists("EditMenu")
           tools.Tools("NewMenuTool").SharedProps.Enabled = false
       end if
   End Sub

This will also disable the File Menu and New button.


________________________________
From: "michael.hutcheson@..." <michael.hutcheson@...>
To: vantage@yahoogroups.com
Sent: Thu, June 3, 2010 6:12:29 AM
Subject: [Vantage] Move the delete button

Â
Hello,

Has anyone successfully moved the delete key on the toolbar on the sales entry form? It's next to the save button and it's quite easy to click by mistake. It looks like this can't be performed via normal customisation - am I right?

Thank you for any help.

Michael







[Non-text portions of this message have been removed]
ok, thanks, I shall have a go.....

--- In vantage@yahoogroups.com, Steven Gotschall <sgotschall@...> wrote:
>
> I haven't been able to move it, but I have managed to hide it. You can then create your own delete button on the form. You first have to add the custom assembly reference "Infragistics2.Win.UltraWinToolbars.v6.3". The rest of the code is something like this:
>
> ..
> ..
> ..
> Imports Infragistics.Shared
> Imports Infragistics.Win
> Imports Infragistics.Win.UltraWinGrid
> Imports System.Math
> ..
> ..
> ..
>    '// Add Custom Module Level Variables Here **
>    dim tools as Infragistics.Win.UltraWinToolbars.UltraToolbarsManager
> ..
> ..
> ..
>        '// Begin Custom Method Calls
>       ÂÂ
>        dim obj as Object = GetType(Epicor.Mfg.UI.App.UD105Entry.UD105Form).InvokeMember("baseToolbarsManager", BindingFlags.Instance Or BindingFlags.GetField Or BindingFlags.NonPublic, Nothing, UD105Form, Nothing)
>        tools = ctype(obj,Infragistics.Win.UltraWinToolbars.UltraToolbarsManager)
>        disableTools()
>
>        '// End Custom Method Calls
>       ÂÂ
>    End Sub
>  ÂÂ
>  Sub disableTools( )
>        if tools.Tools.Exists("DeleteTool")
>            tools.Tools("DeleteTool").SharedProps.Visible = False
>        end if
>        if tools.Tools.Exists("FileMenu")
>            tools.Tools("FileMenu").SharedProps.Enabled = false
>        end if
>        if tools.Tools.Exists("EditMenu")
>            tools.Tools("NewMenuTool").SharedProps.Enabled = false
>        end if
>    End Sub
>
> This will also disable the File Menu and New button.
>
>
> ________________________________
> From: "michael.hutcheson@..." <michael.hutcheson@...>
> To: vantage@yahoogroups.com
> Sent: Thu, June 3, 2010 6:12:29 AM
> Subject: [Vantage] Move the delete button
>
> ÂÂ
> Hello,
>
> Has anyone successfully moved the delete key on the toolbar on the sales entry form? It's next to the save button and it's quite easy to click by mistake. It looks like this can't be performed via normal customisation - am I right?
>
> Thank you for any help.
>
> Michael
>
>
>
>
>
>
>
> [Non-text portions of this message have been removed]
>
Hello, yes, I would be interested in the BPM if that is ok.

Thanks again

michael.hutcheson@...




________________________________
From: adamfeu <afeuerstein@...>
To: vantage@yahoogroups.com
Sent: Thu, June 3, 2010 1:34:52 PM
Subject: [Vantage] Re: Move the delete button


We have not tried to move the delete key, but we have a BPM that makes it so only certain users can delete a sales order, job or customer. I can share if interested. it is nothing so exciting but it is how we deal with this issue.

--- In vantage@yahoogroups.com, "michael.hutcheson@..." <michael.hutcheson@...> wrote:
>
> Hello,
>
> Has anyone successfully moved the delete key on the toolbar on the sales entry form? It's next to the save button and it's quite easy to click by mistake. It looks like this can't be performed via normal customisation - am I right?
>
> Thank you for any help.
>
>
> Michael
>







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

It is nothing too elegant but it works.

Condition:
the OrderHed.PONum field of the deleted row is not equal to the "XYXYXYXYXYXY" value
and the method is not called by System Manager

Action

raise exception based on the Stop template






--- In vantage@yahoogroups.com, Michael Hutcheson <michael.hutcheson@...> wrote:
>
> Hello, yes, I would be interested in the BPM if that is ok.
>
> Thanks again
>
> michael.hutcheson@...
>
>
>
>
> ________________________________
> From: adamfeu <afeuerstein@...>
> To: vantage@yahoogroups.com
> Sent: Thu, June 3, 2010 1:34:52 PM
> Subject: [Vantage] Re: Move the delete button
>
>
> We have not tried to move the delete key, but we have a BPM that makes it so only certain users can delete a sales order, job or customer. I can share if interested. it is nothing so exciting but it is how we deal with this issue.
>
> --- In vantage@yahoogroups.com, "michael.hutcheson@" <michael.hutcheson@> wrote:
> >
> > Hello,
> >
> > Has anyone successfully moved the delete key on the toolbar on the sales entry form? It's next to the save button and it's quite easy to click by mistake. It looks like this can't be performed via normal customisation - am I right?
> >
> > Thank you for any help.
> >
> >
> > Michael
> >
>
>
>
>
>
>
>
> [Non-text portions of this message have been removed]
>