Message pop up

In Sales Order Entry if someone checks/unchecks the OTS box a pop up comes up with a message. I can’t find where that message is set. I have looked in the customization code and BPM pre/post processing for sales order and can’t find the code to generate this pop up.

Where else can I look for this code?

What does the PopUp say? and what / how does it looks? The look of a MessageBox in Epicor can tell you where it come from (Front End , back End) etc

This one?
image

Yes that one.
Don’t tell me that is an epicor message?

Okay, I won’t. :no_mouth:

2 Likes

What are you trying to do with it?

image

I was just trying to see where it was generated, being nosy. :slight_smile: To me it looked very home grown.

that’s funny, its a native message from Epicor built in to their logic.

1 Like

Curios how can you tell by the look if it’s front or back end?

Back End Messages that is Generated by the Back End BPMs or Business Logic Generally Look like this
image

They have that Detail / Print / Email / Copy and the Sunken in Textbox in the Middle

While front end generated Messages use the MessageBox Class in C# and look more like

image

In your case this message is generated by the Client in Response to a parameter sent from the server, but the Message Itself comes from the Client (Front End)

There are exceptions to every rule but its a good place to start. If it looks like the first one it is almost guaranteed that it was generated from a Back end Process and pushed through the stack to the client from the server side.

1 Like