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

Internal Version Mismatch

$
0
0

Hello All, I am tasked with cleaning up a clients infrastructure but have little experience with Dynamics AX.

Their Dynamics AX server is flooded with the following event 151

Object Server 01: Internal version mismatch. Microsoft Dynamics AX Client from 'Client_Machine' (5.0.1500.4570) tried to attach with 5.0.1500.5660 revision of AOS kernel.

The client version indicates Rollup Update 7. I see that Rollup Update 8 is available. I am not too sure how that Kernal version comes into play (no references to 5660). If I simply update the clients to Rollup Update 8 will that resolve the issue?. Or should the Kernal be upgraded as well?.

Where can these KB updates be obtained?, I can't seem to locate them through the usual channels.


Custom DIEF entity

$
0
0

Hi,

I am new to AX community, so pardon me for me basic questions.

I created a Custom Entity for DIEF using a wizard and everything is smooth sailing. When I imported the data, I see only one record. Somehow the DIEF is creating one record and updating it over and over instead of creating multiple records. Can anybody suggest what am I doing wrong.

Thanks and Regards,

Sardar.

Error Opening Gantt Chart from Service Management

$
0
0

When I go to CEU->Service management->Periodic->Dispatch board, I get the Dispatch board opened up. When I click OK on the Dispatch board, I receive the error below. Please find below the screenshot of the error.

Method 'dataTableCollection' is not supported by the Automation interface of the COM object of class '_DVcGantt'.

Dynamics AX 2009 Rollup 7 Enterprise Portal AX_Core ERROR using Windows server 2008 r2 64 bits and sharepoint 2010 foundation

$
0
0

Arquitecture:

AOS Server: Running windows server 2008 r2 std 64 bits spanish.

Enterprise Portal Server: Running windows server 2008 r2 std 64 bits spanish, SharePoint 2010 Foundation 64 bits, IIS 7.5

DataBase server: Running Window server 2008 r2 std 64 bits spanish, SQL Server 2008 std r2 64 bits spanish, Reporting Services  and analysis services both 2008 r2 64 bits spanish.

Issue:

After update to Dynamics AX 2009 Rollup 7 we are experiencing the following error. This is the first time EP portal is implemented and deployed. I have try so many suggestions but non deals with this.

 EP Users are not able to navigate through the EP pages. Below is the snapshot of the error which comes up in the EP Page. Sharepoint as usual doesn't show informative/descriptive errors and it's quite difficult to debug sharepoint pages, so my next bet was to look into Event Viewer to get a more detailed description of the error.

 

Event Viewer Log:

Dynamics Object Adapter Call failed Thread was being aborted System.Threading.ThreadAbortException at AxCore_Call(UInt64 , Char* , tagVARIANT* , Int32 , tagVARIANT* ) at Microsoft.Dynamics.BusinessConnectorNet.AxaptaObject.Call(String methodName, Object[] paramList) at Microsoft.Dynamics.Framework.BusinessConnector.Session.DynamicsObjectAdapter.Call(String methodName) Microsoft Dynamics AX Business Connector Session 444. Thread was being aborted. at AxCore_Call(UInt64 , Char* , tagVARIANT* , Int32 , tagVARIANT* ) at Microsoft.Dynamics.BusinessConnectorNet.AxaptaObject.Call(String methodName, Object[] paramList) Session Release for Microsoft Dynamics failed. No .NET Business Connector session could be found. Microsoft.Dynamics.Framework.BusinessConnector.Session.Exceptions.NoKernelSessionException at Microsoft.Dynamics.Framework.BusinessConnector.Session.DynamicsSession.get_AxaptaAdapter() at Microsoft.Dynamics.Framework.Portal.AxWebSession.WebSessionClientRemove() at Microsoft.Dynamics.Framework.BusinessConnector.Session.DynamicsSession.Release(ICacheContext context)

I can provide additional details if needed. This seems like a bug to me, can any body help or confirm?.

 

Ax2012 Payment Reversal Error

$
0
0

Hi All,

1. Go to Cash & Bank> Common> Cheque> Payment Reversal

   Select "Paid" status to do the reversal

   Prompt error: "Unable to find ledger transaction for reversal. Verify that a ledger       transaction exist for the cash account or bridging account"

Can anyone tell me what I need to set for this error?

2. After do the payment reversal and delete cheque, can I reuse the cheque number?

Your help is a lot appreciate

Thanks you so much.

Create a new record in dimensionAttributeValueCombination, by AX2012 code.

$
0
0

this is not a question but may be an answer. 

several questions i had this forum have answered me. so i just want to share my contribution.

<-------

Create a new record in dimensionAttributeValueCombination, by AX2012 code.

in ax2012 journal voucher lines, when you key in Ledger account+dimensions information, system will create a record in table dimensionAttributeValueCombination.

this is how i do it in ax2012 coding.  the container _c  contains the information LedgerAccount and dimensions.

it worked for me.

------->

refRecId getLedgerDimension(container _c)
{
    DimensionServiceProvider    DimensionServiceProvider = new DimensionServiceProvider();
    LedgerAccountContract       LedgerAccountContract = new LedgerAccountContract();
    DimensionAttributeValueContract ValueContract;
    List                            ListValueContract = new List(Types::Class);

    dimensionAttributeValueCombination  dimensionAttributeValueCombination;

    DimensionStorage                    dimStorage;

    str         _ledgerAccount = conPeek(_c, #Account);
    str         _department = conPeek(_c, #Department);
    str         _location = conPeek(_c, #Location);
    str         _region = conPeek(_c, #Region);
    str         _zone = conPeek(_c, #Zone);
    str         _company = conPeek(_c, #Company);

    if (_department)
    {
        ValueContract = new DimensionAttributeValueContract();
        ValueContract.parmName('Department') ;
        ValueContract.parmValue(_department);
        ListValueContract.addEnd(ValueContract);
    }

    if (_location)
    {
        ValueContract = new DimensionAttributeValueContract();
        ValueContract.parmName('Location') ;
        ValueContract.parmValue(_location);
        ListValueContract.addEnd(ValueContract);
    }

    if (_region)
    {
        ValueContract = new DimensionAttributeValueContract();
        ValueContract.parmName('Region') ;
        ValueContract.parmValue(_region);
        ListValueContract.addEnd(ValueContract);
    }

    if (_zone)
    {
        ValueContract = new DimensionAttributeValueContract();
        ValueContract.parmName('Zone') ;
        ValueContract.parmValue(_zone);
        ListValueContract.addEnd(ValueContract);
    }

    if (_company)
    {
        ValueContract = new DimensionAttributeValueContract();
        ValueContract.parmName('Company') ;
        ValueContract.parmValue(_company);
        ListValueContract.addEnd(ValueContract);
    }

    LedgerAccountContract.parmMainAccount(_ledgerAccount);
    LedgerAccountContract.parmValues(ListValueContract);

    dimStorage = DimensionServiceProvider::buildDimensionStorageForLedgerAccount(LedgerAccountContract);

    dimensionAttributeValueCombination = DimensionAttributeValueCombination::find(dimStorage.save());

    return dimensionAttributeValueCombination.RecId;
}

 

 

Ax Retail : Synchronize Online Orders is not responding.

$
0
0

Hi,

I have placed an order in the Retail online store (Contoso electronic store) at the Sharepoint. Now i am trying to get the order back to the Dynamics AX, I did the following steps,


1) I Ran the transaction job P-0001_OC in Distribution Schedule.
2) Ran the 'Synchronize online orders' job from under Retail -> Periodic -> 'Synchronize online orders'.

The "Synchronize online order" is not responding, I had waited more than one hour.

Actually I have placed an order with new customer in the store. I also ran the jobs A-1010-OC, N-1010-OC, A-1115-OC, N-1115-OC. After running the jobs, The Customers appeared in the Dynamics AX

In the Services "Microsoft Dynamics AX Commerce data exchange : Sync Service" is running.
I have allocated 24GB Ram to the Virtual Instance.
I did not get any error in the Event Viewer.

AX Turkish language support

$
0
0

Hi,

I wondered if anyone has translated (or plans to) AX 2012 to Turkish. I have a client that has an operations center out there and would like to role out AX to that office.

Kind Regards

Eric


AX-Retail : One or More providers cannot configured correctly in sharepoint 2013.

$
0
0

Hi All,

I have deployed the Retail Online store in Sharepoint. While i am placing an order, In the checkout page i am getting an application error as follows,

Application error : One or more providers cannot configured correctly.

In the log file it showing as follows,

One or more providers are not correctly configured.ConfigurationException : No payment connectors loaded.

( Also i added two products to Cart. In the Checkout page, Order preview step it showing "There are no products in the cart". But i can see products in the Mini cart at the top.)

In the Dynamics AX i had setup Accounts receivable and online store for Payment services and published the online channel successfully.

Thank in Advance

Getting Dimensions with Customer Transactions in SQL Query

$
0
0

How can i get the dimensions using SQL Query without any AX Class. I am running a query on CustTrans in AX2012 but i am unable to get the appropriate dimensions in the transaction.

KB2851350: SEPA related objects only

$
0
0

Hello,

I downloaded hotfix KB2851350 but it includes a lot of other old hotfixes that I don't need, so I would like to know how can I get only these SEPA related objects to install in my application (I think these 3 are the only ones I need):

Resources/CustPayments_SEPADirectDebit_02_xslt.xpo  

Resources/VendPayments_SEPACreditTransfer_03_xsl.xpo  

Resources/VendPayments_SEPATruncateTags_xslt.xpo

 

Thank you very much.

AIF outbound message to HTTP address

$
0
0

Hi,

I have following scenario: after confirming a PO, I need to generate the XML message (together with applying some XSLT transform) and send it to specific HTTPS address (just a regular POST).

Any ideas how to achieve that?

Outbound ports seem not to have HTTP adapter selectable - besides, you can only specify your IIS hosted webservices address.

Is this possible at all ?

Thanks in advance,

Maciej

Prerequisite check: WSDL URI not accessible (port missing)

$
0
0

Hello,

I have to reinstall the Enterprise search component to resolve some issues with it. In principle no problem, the first installation was no problem. However I now get an error at the prerequisite check:

Performing a service status check for prerequisite 'Application Object Server (AOS) Services WSDL URI accessible'. - Check failed.

 When I click on the "Error"-link I get the message "Resolution: Attempt to access the WSDL port manually by entering the URI http://<SERVER>:/DynamicsAx/Services/MetadataService. ..."

The reason obviously is that the port (8101) is missing in the URI the prerequisite checker is trying to access. If I enter the URI  http://<SERVER>:8101/DynamicsAx/Services/MetadataService in the browser it works without problem... Where does the prerequisite check get the port to connect to from/what have I to change to get it working again?

Regards
Patrick

Logon Failure

$
0
0

Hi,

i dont know why but my server with ax 2009 have problem with start/restart service. Ive got error "logon failure" when i try restart service for example password is 100% correct i try on special service account (ad) and on my "normal" acccount (ad ofc) its always give me this error after some times.

[ASK] Importing image to product master

$
0
0

Dear all,

I have 10000 SKU image , and need to import to product master.

How can i import them ?

Thanks in advance

Regards

Rudy


Balanced Dimension Values - AX2012R2

$
0
0

Hi,

I am wondering about a possible business scenario for the AX2012R2 functionality "require the dimension value to be balanced". Has anybody used this feature and if so for which business Scenario.

Any feedback would be highly appreciated.

Many thanks and best regards,

Ludwig

Delete cheque error

$
0
0

Hi All,

Go to Cash & Bank> Common> Cheque

Select "Voided" cheque > Delete Cheques> Inserted From <cheque number> To <cheque > number> Error prompt: "An incorrect text has been entered"

Please help~~

item group wise number sequence

$
0
0

HI ,

Is there any possible way to create number sequence according to item group , under ->Product information management->Common->Released products the number sequence should be based on item model group for example if i am having three model groups test1, test2, test3 if i will select test1 model group then number sequence should be test1-######## , same for both of the other item groups , i will generate three number sequences but only one can be assigned to all items.  how can i achieve item group wise number sequence.

Regards

Nakul

DB connection using ADO

$
0
0

Hello everyone...happy Friday

I searched through the forum with no luck finding what I need. We're running AX2012 R2 and need to connect to a SQL DB for quality control data. I have it setup right now to use ODBCConnection with a DSN but I've been asked to look into ADO as an option. I found a number of examples utilizing an ADO method but it appears the AX version I'm on doesn't support or have the necessary libraries. Can anyone help provide an example of a proper way to connect to a non-AX SQL database? Or explain how to work with the existing ADO objects (e.g., CCADOConnection).

Thank you very much!

A call to the Microsoft Dynamics AX SRSFrameworkService service failed. Method not found: 'Int32 Dynamics.Ax.Application.DDEServer.Num()'

$
0
0

Dear All, while deploying report in ax is resulting in this error. Even same error repeats while 'edit' Visual studio project of SSRS report. Please help.

Viewing all 73760 articles
Browse latest View live


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