Skip to main content

Posts

Showing posts with the label Project

How to modify funding Source for particular Project contract In Ax 2012

How to modify funding Source for particular Project contract in Project Module. Below is the code sample to get Idea for the same. ProjFundingSource projFundingSource; ProjInvoiceTable projInvoiceTable; LogisticsLocation logisticsLocation,logisticsLocationNew; ; ttsBegin; while select projInvoiceTable where (projInvoiceTable.ProjInvoiceProjId != "PROJ_002834") { while select forUpdate projFundingSource where projFundingSource.ContractId == projInvoiceTable.ProjInvoiceProjId { projFundingSource.FundingSourceId = projInvoiceTable.fundingSourceName(); projFundingSource.InvoiceLocation = 0; projFundingSource.update(); } } ttsCommit;

Menus Name for Ax 4.0

I am sharing here Menus name for Ax 4.0 standard. We know this version is outdated but when we started to search for some information on Ax 4.0 then did not get even lot of searching so I am sharing here to get it easily. Menu Name General ledger Bank CRM Accounts receivable Accounts payable Inventory management Master planning Production Human Resources Project Basic Administration

Exporting Project Controls to Excel in MSD axapta

Exporting Project Controls to Excel in Axapta 1. Click the Export to Microsoft Office Excel button 2. Designate the file name and location. 3. Select the measurements to be included in the pivot table. These measurements are the data fields generated by the Project control screen. 4. Select the dimensions to be used in the pivot table. These dimensions will vary by control screen, but will frequently include things such as Project, category, employee/item, transaction type, project date, and more 5. Select desired layout options (these vary by project control screen). 6. Click the OK button to generate the pivot table