How do you activate a customization for Memo Entry? I have it created, but just can’t seem to add it to the process.
Thanks,
How do you activate a customization for Memo Entry? I have it created, but just can’t seem to add it to the process.
Thanks,
That is a weird one. The customizations don’t show in the Menu Maintenance
But If I enable trace and do a Refresh List:
The trace shows the customizations were fetched. They just don’t populate the dropdown.
<returnValues>
<returnParameter name="returnDS" type="Ice.BO.XXXDefListDataSet">
<XXXDefListDataSet xmlns="http://www.epicor.com/Ice/300/BO/GenXData/XXXDefList">
<XXXDefList>
<Company></Company>
<ProductID>EP</ProductID>
<TypeCode>Customization</TypeCode>
<Key1>E10H_01</Key1>
<Key2>App.MemoEntry.MemoForm</Key2>
<Key3></Key3>
<Description>E10H Test</Description>
<SNIP> for brevity</SNIP>
</XXXDefList>
<XXXDefList>
<Company></Company>
<ProductID>EP</ProductID>
<TypeCode>Customization</TypeCode>
<Key1>E10H_02</Key1>
<Key2>App.MemoEntry.MemoForm</Key2>
<Key3></Key3>
<Description>Test2</Description>
<SNIP> for brevity</SNIP>
</XXXDefList>
<XXXDefList>
<Company>MC</Company>
<ProductID>EP</ProductID>
<TypeCode>Customization</TypeCode>
<Key1>E10H_02_MC</Key1>
<Key2>App.MemoEntry.MemoForm</Key2>
<Key3></Key3>
<Description>One comapny</Description>
<SNIP> for brevity</SNIP>
</XXXDefList>
</XXXDefListDataSet>
</returnParameter>
It found all three customizations I made, but none appear in the Dropdown. Manually entering the Key1 value doesn’t work either.
I figured out a way. Not sure if it is a work around for a bug (not being able to select the customization), or a hack to get it to do something it shouldn’t.
I made a Pre-Proc BPM on Menu.Update
Condition0:
SetField:
(note: the ID of my customization was E10H_01
)
Enabled and saved the BPM.
Went to Menu Maint and changed the menu desc from Memo Entry
to Memo Entryx
and saved. Then Changed it back to Memo Entry
(these were just to get the BPM to fire).
Close out the client, and relaunch (to get the menus updated)
Now the customization version of the form loads.
One note: the Title bar for non customized Memo Entry form, would show the order number. My customization doesn’t.
Base form:
My Cust:
I was able to use an update able BAQ and push the customization into the form.
Thanks,