BPM uncheck suggestions in time phase

I want to uncheck the suggestions in Time Phase upon load. I found an old Yahoo post that didn’t work. An error occurred regarding “Me.edvMisc.dataView(0)(“Suggestions”) = false”

And is there a good reference where I might answer this myself? Someone mentioned a resource in the Epicor site but I was unable to find it.

I don’t know about a BPM, but a customization will do it.

In the form load event, add the following:

EpiDataView edvMisc = (EpiDataView)oTrans.EpiDataViews["Misc"];
		if (edvMisc != null && edvMisc.Row > -1)
		{
			edvMisc.dataView[edvMisc.Row]["TOSuggestions"] = false;
		}
3 Likes

I did it in E9. I customized the view and used this in E9. Maybe this will help you.

private void TimePhasForm_Load(object sender, EventArgs args)
{
// Add Event Handler Code
EpiCheckBox suggCheck = (EpiCheckBox)csm.GetNativeControlReference(“cdf4e0c8-4643-4c8b-9aaf-a53c47ce9985”);
EpiCheckBox TOCheck = (EpiCheckBox)csm.GetNativeControlReference(“7ceb719a-f574-4989-bf03-18263d5719f4”);
suggCheck.Checked =false;
TOCheck.Checked=false;

}

I’m trying to do the same thing. Please post a solution when you find one.