Bojensen Blogs

Tag: InventDim

InventDim id blank from “Axapta” to “AllBlank” in Dynamics Ax « Casperkamal's Dynamics Ax blog

  InventDim id blank from “Axapta” to “AllBlank” in Dynamics Ax February 26, 2007casperkamalLeave a commentGo to comments Hey, Just found out something interesting, the blank inventDimid(With all Inventory Dimesions blank) "Axapta" is no more the same, now it is refferred to "AllBlank". I found it as i was digging to find the reason behind…

Using InventDim::newDimId in Axapta Programming

InventDim myInventDim; ; myInventDim.clear(); //You have to put in existing dimensions and values for them below myInventDim.InventLocationId = "Main"; myInventDim.InventColorId = "Blue"; //So far the RecId of the myInventDim record buffer is 0 myInventDim = InventDim::findOrCreate(myInventDim); //Now the RecId is not 0, and the InventDimId is a new or an existing InventDimId info(myInventDim.InventDimId); Using InventDim::newDimId…