Skip to main content

Posts

What are the Inbuilt Methods or Functions Available in Ax 2012

Following  Inbuilt Methods or Functions Available in Ax 2012. SrNo Method/Functions SrNo Method/Functions 1 abs 51 enumStr 2 acos 52 evalBuf 3 any2date 53 exp 4 any2enum 54 exp10 5 any2guid 55 extendedTypeNum 6 any2int 56 extendedTypeStr 7 any2int64 57 fieldId2name 8 any2real 58 fieldId2pname 9 any2str 59 fieldName2id 10 asin 60 fieldNum 11 atan 61 fieldPName 12 attributeStr 62 fieldStr 13 beep 63 formattedStr2num 14 char2num 64 formControlStr 15 classIdGet 65 formStr 16 classNum 66 frac 17 classStr 67 funcName 18 conDel 68 fv 19 configuratio

What are the Role Centers Available in Ax 2012 R3

Following Role Centers Available in Ax 2012 R3. You can add users to view particulars roles on Home page or EP website for the same. 1 Accountant 2 Accounting Manager 3 Account Manager 4 Accounts Payable Coordinator 5 Accounts Receivable Administrator 6 Budget Manager 7 Chief Executive Officer 8 Chief Financial Officer 9 Controller 10 Cost controller 11 Credit and Collections Manager 12 Customer self-service 13 Customer Service Representative 14 Dedicated Sales Representative 15 Dispatcher 16 Home page for users who fill employee role 17 Environmental Manager 18 FinanceDirector 19 Human Resources Assistant 20 Human resources manager 21 Marketing Manager 22 Marketing Staffer 23 Operation Manager 24 Order Processor 25 Practice Manager 26 Product Designer 27 Production Manager 28 Production Planner 29 Description 30 Project Manager 31 Purchasing Agent 32 Purchasing Manager 33 Retail IT Manager 34 Retail Merchandising Ma

Places to clear log data from Microsoft Dynamics Axapta 2012

1. Click Area Page node: System administration -> Inquiries -> Batch jobs -> Batch job history. Form name: Batch job history 2. Click the Log button. 3. Make sure the selections are changed in table Batch jobs history to: 4. Delete the record(s) in the Batch job history form. 4. Change Batch job ID from '52665554646' to '0'. 6. Click the Close toolbar button. 7. Close the Batch job history form. 8. Click Area Page node: System administration -> Inquiries -> Database -> Database log. Form name: Database log 9. Click the Clean up log button. Form name: Microsoft Dynamics AX 10. Click the OK button. 11. Close the Database log form. 12. Click Area Page node: System administration -> Inquiries -> Database -> SQL statement trace log. Form name: SQL statement trace log 13. Click the Functions -> Clear log menu button. 14. Click Yes in the Microsoft Dynamics form. Th

Purchase order Invoice Total in Accounting Currency before posting in Ax 2012

If you want to get Purchase order Invoice Total in Accounting Currency before posting in Ax 2012 then you can apply below code sample. Purchase Total form is as below. PurchTotals purchTotals; PurchTable purchTable = PurchTable::find('000035'); Amountmst InvAmount; ; purchTotals = PurchTotals::newPurchTable(purchTable); purchTotals.calc(); InvAmount = purchTotals.purchTotalAmount() * (purchTotals.exchRate()/100) ; as per above code variable InvAmount will show in total amount for Accounting currency and method purchTotals.purchTotalAmount() will return Total Amount in Transaction currency. which is 165 in our screenshot.

How to refresh parent form from child form in Axapta

Sometimes we need to refresh parent form from child form in Axapta but its become tedious on thinking but here is an easy 4 line code you can write on child form on close event to get page refreshed. FormDataSource datsource; ; datsource= element.args().record().dataSource(); datsource.research(); datsource.refresh() I hope its solve your problem