Skip to main content

Posts

Upload an image in a form window control in MSD axapta

Upload an image in a form window control str filename; FileNameFilter filter = ['JPG files','*.jpg']; Bindata binData; Image signatureImage = new Image(); super(); filename = Winapi::getOpenFileName(element.hWnd(), filter, '', "Upload your image", '', ''); binData = new BinData(); if (binData.loadFile(filename)) { signatureImage = binData.getData(); FormWindowCOntrol.image(signatureImage); FormWindowCOntrol.widthValue(signatureImage.width()); FormWindowCOntrol.heightValue(signatureImage.height()); element.resetSize(); element.unLock(); }

Good training institute for Microsoft dynamics axapta

Good training institute for Microsoft dynamics 1.Emporis Academy Pvt Ltd I had gone training in Morphx Development in Emporis Academy Pvt Ltd which is located in Chennai. Only Microsoft partner in India who is giving training in LIVE for both Functional and Technical. Really nice experience, they had give me lot of inputs, you just enquire them 2. Nowadays we were able to see, many companies authorizing themselves us Microsoft Certified Partner. I strongly advise you to get trained from MS learning solutions Competency Partners. Only a Microsoft Partner can provide you a Microsoft courseware and intensive lab training will be provided as per the guidelines of Microsoft. Only a partner will give training using genuine software with full features of the product which is specially designed to give training on that product.

Set fiscal year periods in Microsoft dynamics axapta

Set fiscal year periods in dynamics axapta In periods of screen, choose the button Create fiscal year .If the system already exists a prior period created the new AX suggests the beginning and closing dates of the new fiscal year.If by chance the first period is to be created, you should fill these dates. Then put the length of the period as a unit and then, put month as per requirement .

delete rows from the field order from Credit note in MSD Axapta

If you have created a credit note in AX, you can do it in a sales order or purchase order separately or in original order. An important detail when we are creating a credit note in the original order is the field delete rows in the order that appears on the screen after using the button functions option to create a credit note . If you leave this field  as selected, it will delete the transaction's original order, keeping only the line of credit note that you are creating. So, if it is worthwhile keeping in the same order the history of the original transaction and the credit note you can  clear this option.

Resolving problem of unbalances tts in MSD Axapta

Resolving problem of unbalances tts Sometimes when we're debugging, for some reason have not completed the sequence of TTS ttsbegins and left more than it should, I get the AX to give you messages saying he found a pair of unbalanced TTSBEGIN / TTSCOMMIT and solve just create a job with a ttsabort. while (appl.ttsLevel() > 0) ttsAbort;