Context Menu is not sticking with UD Field - 9.05.607A

I have a customization on Part Entry that has Part.Character01 doing search on the Manufacturer Adapter via UltraCombo to give a listing and store it in Char 01...that is working.

I am now trying to tie the Context Menu to this by going to the properties of the Part.Char01 and under EpiContextMenuKey = Manufacturer.MfgNum . I save this and it works. I then close the screen, clear the cache and load the form and my context menu does not work anymore. The EpiContextMenuKey is reverted back.

I tried saving it as new customization, but that did not work neither. Here is the code from the Wizard, perhaps something in there is changing it back when the form loads?



private static void SearchOnManufacturerAdapterFillDropDown()
{
// Wizard Generated Search Method
// You will need to call this method from another method in custom code
// For example, [Form]_Load or [Button]_Click

bool recSelected;
string whereClause = string.Empty;
System.Data.DataSet dsManufacturerAdapter = Epicor.Mfg.UI.FormFunctions.SearchFunctions.listLookup(Script.oTrans, "ManufacturerAdapter", out recSelected, false, whereClause);
if (recSelected)
{
// Set EpiUltraCombo Properties
Script.epiUCmbMfgr.ValueMember = "Name";
Script.epiUCmbMfgr.DataSource = dsManufacturerAdapter;
Script.epiUCmbMfgr.DisplayMember = "Name";
string[] fields = new string[] {
"Name"};
Script.epiUCmbMfgr.SetColumnFilter(fields);
}
}

private static void PartForm_Load(object sender, EventArgs args)
{
// Add Event Handler Code
SearchOnManufacturerAdapterFillDropDown();
}

Regards,

Miguel A. Santillan


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