AX2012 - Copy Item Information To Other Company

Hi,

I know AX2012 item master is at shared level, which is stored at product and product master. Once created, then we can release to individual company. After that, we fill in the company specified information into the release product form.

So, can the information from the release product form copy from one company to the other company?

Thanks,

Lee

Hi Lee,

What information do you fill?

Have you tried using Release products wizard to release items into different companies?

Hi Harish,

For example, i would like to copy the same UOM from A company to B company. How can i do that?

Thanks,

Lee

Hi Lee,

It can be shared to other companies ,you need to use this custom code

select firstOnly ecoResProduct where EcoResProduct.DisplayProductNumber == “Your Item Id”;

EcoResProductReleaseManagerBase::releaseProduct(ecoResProduct.RecId,

CompanyInfo::findDataArea(dataarea.id).RecId);

changecompany('yourcompany" or dataarea.id)

{

you have to add your business logic :

inventable = null;

inventable = Inventtable::find(itemid);

inventable.intracode = “Any Value”;;

inventtable.update();

}

Hi,

Besides coding, is there any front end solution?

There is really no front end solution for copying set fields from one record to another in different companies like a base UOM.

Hi,

My objective is actually not only to copy just the UOM.

I am actually looking for the item template, which the user can save the item detail in the template and use it when is new item creation. But this should not be limited to within the company but should be across the company.

Can the template function works across company?

Thanks,

Lee

No I do not believe it is designed this way I am afraid.