Quantcast
Channel: Microsoft Dynamics AX Forum - Recent Threads
Viewing all 72043 articles
Browse latest View live

COGS Posting

$
0
0

At the time of COGS posting, can AX break it down as Material, labor, overhead and post them into 3 different accounts?


No retroactive regulation by inventory closing:

$
0
0

 Hello together,

we have the following problem in our MSDynamics AX2009

·         By closing inventory, AX2009 creates regulations in Table „InventTrans“

·         Because of the regulation, the „cost amount postet“ can be changed retroactive

·         This is a big problem for tax law

·         How can we prevent the retroactive changes by regulations?

·         Up-to-date we don´t book on properly accounts

·         Hint of another producer: Before they do the inventory closing, they change the session date of AX2009 to the last day of the month
==> thus the regulation runs in the right period

I'm looking forward to your ideas.

Securing form controls

$
0
0

Hi everyone. How can I control access to a control (dropdown) so specific roles can only view the data while other can modify the content? Thanks in advance.

2012 R2, Attaching Receipts in EP / Document Management

$
0
0

I have configured Document management to utilize SharePoint to store attachments.

When I'm using the rich client, files writes and reads occur without any errors.

When I try to attach a receipt to an expense report in EP, I get an error:

"File upload failed.  file write error on server."

To test just the EP, I change the document management path to a network share, and receipts via EP write and read fine.  Its when using SharePoint as the document directory and using EP as the tool, the problem occurs.

I have added permission to the SharePoint document library to include first the AOS service account, then the BC account, then eventually All Authenticated Users having Full Control.  But it still doesn't resolve the issue.

Is this a bug or are there configurations I'm missing?

Thanks!

Ian

Crosscompany Forms changes current company's context. Bug?

$
0
0

Hi all,

I've made a testing form in AX2012 R2 CU6, containing a single datasource on PurchTable with the AllowCrossCompany property set to True.

I've added a grid, some fields and a button. All the other property values are left by default.

I've redefined the init() method on the datasource as follow:

public void init()

{

   super();

   this.query().addCompanyRange('A');

}

I've redefined the clicked() method button to print curext()

I'm opening the form from company B. It does show records of purchtable of company A which is correct to me. But the curext() returns 'A' when clicking on the button.

That suprises me because I would expect that AllowCrossCompany only affects the query, and not the context in which the X++ code is run.

So my question, do you think this is the expected behaviour? Should I open a case for this?

Thanks for your comments

Nicolas

Bar code SSRS report

$
0
0

I am trying to display the barcode in the SSRS report. I have created a field in the report for barcode in the visual studio and changed the font type to BC C39 3 to 1 Wide format. The corresponding text that I have used to display is "hellobarcode". Whenever I generate the report, it is not displaying the barcode but the text only. Can anyone help please?

Ax 2009 EP tools on Window 7

$
0
0

Hi everyone

Anyone know how to install Enterprise Portal Developer tools on Window 7. I already install VS2008 but still facing issue on this. the error is

---------------------------
Microsoft Dynamics AX Setup
---------------------------
Role Centers and Enterprise Portal cannot be installed.
Setup cannot connect to the Application Object Server instance (AOS) by using the Business Connector. Confirm that the AOS is running, and that your account (domain\username) is a valid Microsoft Dynamics AX user. See the log file C:\ProgramData\Microsoft\Dynamics AX\Dynamics AX Setup Logs\2013-09-04 11-00-20\DynamicsSetupLog.txt for more information.
---------------------------
OK
---------------------------


---------------------------
Microsoft Dynamics AX Setup
---------------------------
When installing Enterprise Portal developer tools it is required that you also install Role Centers and Enterprise Portal. Would you like to install Role Centers and Enterprise Portal and all of its prerequisites?
---------------------------
Yes No
---------------------------

please suggest me the resolution of this. 

 

Time registration with SFC on service orders

$
0
0

Hi,

is there a way to do time registration with SFC on service orders in Dynamics AX 2009?

Actually we are using an Indirect acitvity which is called "Service Order", because the employee must stamp in SFC and do manual time registrations on the service order itself. Later on we manually compare these registrations if they're matching together.

So this is a lot of manual work. If on of you has a better idea pls. let me know. Thanks.

Wolfgang


How refresh enum edit method on form?

$
0
0

Hello,

on form InventItemOrderSetup (Released products -> Manage inventory -> Default order settings) on Sales order tab is enum "Delivery date control". Is displayed by edit method.

If I placed same field and method into Purchase order tab (one of other DS on same form) and trying change this new field, enum is not refreshing. Value was changed, but enum is still open.

Can you help me which code on this form refreshing this field?

Thank you.

Does DAX 20012 R2 CU6 Is supported by Microsoft on Windows 2008 R2 SP1?

$
0
0

Currently our customer wantewd to run DAX 2012 R2 Application running on Windows server 2008 R2 SP1. Please let me know whether this is proper environmnet  which will be supported Microsoft incase of the issues ?

AX 2012 Button Method (Add new record)

$
0
0

Hi Everyone

I am trying to create a button at sales order form which allow me to add a new sales order line when i click on it, but what i get is when i click on the button, only quantity are able to insert, the unit price and discount are not filled. My code is as below, please advice.

void clicked()
{

SalesTable ss;
SalesLine newsalesLine;
SalesLineDiscount newsLineDiscount;

;
super();

newsalesLine.clear();

newsalesLine.SalesId = SalesTable.SalesId;
newsalesLine.ItemId = "Test02";

newsalesLine.SalesQty = 20.00;
newsalesLine.SalesPrice = 30.00;
newsalesLine.LineDisc = 10;

newsalesLine.createLine(NoYes::Yes, // Validate
NoYes::Yes, // initFromSalesTable
NoYes::Yes, // initFromInventTable
NoYes::Yes, // calcInventQty
NoYes::Yes, // searchMarkup
NoYes::Yes); // searchPrice

SalesLine_ds.research(true);
SalesLine_ds.refresh();

}

Thank You.

AOS Cannot load assemblies - AX2012 R2

$
0
0

Both of our AOS servers are throwing a bunch of errors when starting up, such as:

Object Server 01:  Could not load assembly 'Microsoft.Dynamics.Retail.MatrixPivotGrid, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies.

Object Server 01:  Could not load assembly 'Microsoft.Dynamics.AX.Framework.Analytics, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies.

Object Server 01:  Could not load assembly 'Microsoft.Dynamics.AX.Framework.Client.Controls, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies.

Object Server 01:  Could not load assembly 'Microsoft.Dynamics.AX.Frameworks.ProductConfiguration, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies.

Object Server 01:  Could not load assembly 'Microsoft.Dynamics.Kernel.Client, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies.

Object Server 01:  Could not load assembly 'Microsoft.Dynamics.AX.Framework.Workflow.Metadata.Wizard, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies.

Object Server 01:  Could not load assembly 'Microsoft.Dynamics.AX.Framework.Workflow.Model.Design, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies.

Object Server 01:  Could not load assembly 'Microsoft.Dynamics.Retail.StoreConnect.MessageTreeControl, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies.

Object Server 01:  Could not load assembly 'RetailControls, Version=5.3.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies.

Object Server 01:  Could not load assembly 'Microsoft.Dynamics.Retail.StoreConnect.TransAutomClient, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=x86' or one of its dependencies.

Could not load assembly 'EInvoiceCFDI_MX.dll.config' or one of its dependencies.

Object Server 01:  Could not load assembly 'ElectronicFiscalDocument_BR.dll.config' or one of its dependencies.

 

 

What's with that?  The 'Microsoft.Dynamics.AX.Framework.Analytics one is preventing me from setting up an Analysis server in AX and deploying the cubes.  I checked the dll's dependencies and it was missing the Microsoft.AnalysisServices.DLL from the GAC on the AOS.  I stole this from the Analysis server where SQL Analysis services was actually installed and added it to the GAC which I'm hoping resolves the issue.  But why in the world would all these DLL's that the AOS requires not be installed with the AOS, or at least be part of the validation of requirements for it? 

The AnalysisServices dll is the only one I was able to resolve... I have no idea how to resolve the dll issues going on.  Any advice?   This is a server only running the AOS, and was upgraded from AX 2012 CU3 to AX 2012 R2.  Prior to installing R2, I uninstalled everything related to AX from the server and started clean. 

 

Sale Service Item in the POS

$
0
0

Hi All,

I have problem when I post statement include Service item that sold in the POS the statement always give me the below error when I post it

Cannot create a record in Transfer of the InventTrans origin foreign key value (InventTransTMPOriginKeyValueTransfer). Inventory transactions originator: 0, 0.

The record already exists

Import Main Account data per legal entity with Data Import Export Framework

$
0
0

Hi all,

I can sucessfully import main accounts using the "MainAccount" entity.

In Addition to the level of main accounts "Chart of accounts" I'd like to Import data per legal entity (companies). Any idea how this can be done?

Kind regards

Ronald

Delivery Note on SalesInvoice

$
0
0

Hi All,

 I'm trying to figure out how to get the delivery note number to print on a sales invoice. Its easy to grab all the delivery notes associated with a sales order but it seems much harder to get the specific delivery notes associated with a particular invoice (e.g the shipment goes out in two parts and is invoiced in two parts. each invoice will be associated with different and specific delivery notes).

This doesn't seem like something that should be too hard but I'm really struggling to find a way.  Can anyone provide some direction here?

Thanks and Regards,

David


Ax2012 AssetTrans Data Migration Framework

$
0
0

Hi,

 

How can we insert data to asset trans by using Data Migration Frame work in Ax2012

Centralized VS Decentralized approach

$
0
0

Hello,

I have a very challenging scenario. A holding company with 14 locations scattered across different area within the country, the area suffers from bad infrastructure and connectivity.

What is the recommended or supports approach for the scenario, the management wants to have a full view over the reporting, analytics and transaction for all its business and also there are multi company transactions.

I know that this can be achieved with one centralized installation in one location and others connecting through Terminal services for example, the issue is that when a disconnection occurs the business will stop in all areas and this is not an option

If I go with decentralized approach 14 installations will take place in all locations but the challenge is how we can sync all data together or have a reporting and analytical view for all the company business and also the intercompany transactions, not pretty sure that AIF and web services can be of help here.

Any comments or suggestions are highly appreciated

Thanks

Import product descirption translations with Data Export Import Framework

$
0
0

Hi all,

importing products with the data export import Framework works pretty good.

But how can product descriptions in foreign languages be imported?

Thanks in advance for any hints

Regards, Ronald

AX2012 R2 - List of activated dimensions in a legal entity

$
0
0

Hi all,

In AX2012 it is possible to create your own dimensions. Via account structures you setup which dimensions are used for certain purposes. In the R2 version you setup which account structures are used within the company on the Ledger form.

I need to have a query or method to determine a unique list of activated Dimension in a certain company. On a Customer form e.g. you can enter default dimension and you get a list of dimensions only used within that company.

My question is: Do you know which class/method to use to get the unique list of Dimensions, or is there a query with the same results? We need it for some developments.

Thanks in advance.

AX2012 - Update additional field when approving workflow

$
0
0

Hi all,

We want to update an additional field when approving e.g. the vendor invoice workflow. This should work for automatical and manual approvals.

Is it wise to add an automated task or an event handler on the update method of the table? What could be performance wise the best solution?

Please share experiences and your thoughts.

Viewing all 72043 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>