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

AIF TimeoutException from C#

$
0
0

Using Ax 2009.  I'm consuming AIF web services from a C# application.  Calling an operation of the service one time is fine.  When I use it more frequently the service stops responding. And I get error : 

Le canal de demande a dépassé le délai imparti en attendant une réponse après 00:00:59.9990000. Augmentez la valeur du délai d'attente transmise à l'appel à Request ou augmentez la valeur SendTimeout sur Binding. Le temps alloué à cette opération fait peut-être partie d'un délai d'attente plus long.

(I don't know how to get the message in English)

Then I wait around 5 ot 10 minutes and then the service responds again. It gets really hard to test my application when I have to wait so long between each test.

Anyone encounted something like this and knows what to do?

The service is replying only small amount of information so it's not because there's too much data to transfer.

I've found another post that looks like the same problem here but no answer : http://dynamicsuser.net/forums/p/46805/236700.aspx


Missing -Estimate Projects - how do I find out where it is? (AX 2012 R2)

$
0
0

While reading through the manual for projects, one of our users found out that the path to get to [Estimate Projects] is in the following path:  Project Management and Accounting-common-projects-estimate projects

But we don't see it there.  Was it moved when R2 came out (we are at R2-RTM - have not had any updates yet - but soon to change that).

I did find it in MenuItems - ProjEstimateProjectsListPage - but not in any Menu.

 

What am I missing?  Why can't I find it.  (building my cross-reference right now, so can't use that to find it).

 

Excel Add-in issue

$
0
0
Hi: I'm trying to add a row to the Quality Associations table via the Excel Add-in and when I hit publish, it shows 0 successful and 0 failed records and removes the row from the workbook. What could I be doing wrong here? It does populate with all existing records in that table just fine. Thank you, Stangride

Adding fields to InventOnHand form in AX2012

$
0
0

I have added new fields to "InventTable" table and need to add these new fields to the form "InventOnHand" and make them available for filtering and sorting using the standard filter function in the form grid ("CTRL-G")

I have tried several approaches without luck.

1. Adding "InventTable" to the forms datasource and creating innerjoin with InventSum.

This resulted in new fields showing random data from the new tields in InventTable.

2. Adding the extra fields to the "InventSum" table and synchronizing them with the same fields from "InventTable"

Now I can see data in the table using tablebrowser, but the new fields then just appear as "Unretrieved" in the form.

funny enough I am also able to filter and sort data in the form using the new columns.

As far as I have discovered until now, the form datasource Query is rewritten every time by the "InventDimCtrl_Frm_OnHand" class in the "ModifyQuery" method (amongst others), so I have tried to modify this by using the "AddSortField" from the QueryBuildDataSource object for "InventSum"

This just results in some of the default fields showing up as "unretrieved" until I reset the "modifyQuery" method back to default

 

As I need to be able to filter and sort using the new data it is not an option to simply use display methods for the new data.

 

If anyone have done this with succes I would appreciate the help.

 

(please disregard the missing label-text in the last column :-) )

2009 - update_recordset producing compile errors

$
0
0

Hey Folks,

 

Hope all is well.  I am using the update_recordset keyword and am running into strange issues in 2009.  MS documentation says you can perform something like this: 

MyTable myTableBuffer; ;

update_recordset myTableBuffer setting field1 = field1 * 1.10;

 

Someone left a comment / correction which works, you have to use the dot operator on your field on the right side of the update line.  So in order to get this to compile in AX 2009 you have to use:

MyTable myTableBuffer; ;

update_recordset myTableBuffer setting field1 = myTableBuffer .field1 * 1.10;

 

Now take this for example:

update_recordset myTable

setting             MyStringField= this.someMethodInMyClass(myTable.MyStringField);

Compile error:  Illegal use of SETTING expression.

What I am trying to do is update myField very quickly by calling a method located publicly in my class.  The method is a simple switch statement that returns a string.  I believe this is a bug.  Can anyone recommend another idea to accomplish this using update_recordset.  My goal here is speed so I do not want to loop using a "while select forupdate" keyword.  Thanks in advance, happy DAX'ing

 

 

AX2012 R2 Shipments - Separate Packing Slip for Sales Orders

$
0
0

Hello!

I've got an issue at a customer, which needs one packing slip per Sales Order when posting packing slip from the shipment view.

The problem is AX2012 group all sales order in one packing slip, and I don't want this to happen. 

I check my Accounts receivable parameters, in the "Summary update", and my default value for summary update is [NONE], but still AX kept grouping my sales orders on the shipments.

Is there some other parameter that i am missing?


Can anyone help me please.

Tanks!!

filtering items based on ProjCategoryGroupId

$
0
0

Hi,

I need to filter items on purchline grid in purchase order form.

After selecting ProjCategoryGroupId from the grid the item id lookup need to show only the items related to the selected projCategoryGroupId value.

I have difficulty adding the filter to the lookup. Please help

Challenges while installing EP Employee self service Portal..

$
0
0

Hi,

I am trying to install Employee self service portal for ax 2012 r2 cu7 on sharepoint.

Now i don't want deploy ep on port 80(default). what steps should i follow so that i can deploy ep on different port for both standalone and farm servers?

Thanks in advance.


Dynamics AX 2012- maxbuffersize

$
0
0
I need your help please. I have a problem: El tamaño del contenedor que se está empaquetando es mayor que el MaxBufferSize. El intento de insertar un registro con este contenedor no se realizará correctamente. My Dynamics is installed in Spanish. If anybody know how fix this bug, please tell me.

Exception of type 'Microsoft.Dynamics.Ax.Xpp.InvalidRemoteCallException' was thrown.

$
0
0

Hi,

I created a custom service that writes data into excel. I used the following classes to write datas in to excel "

SysOperationProgress progress = new SysOperationProgress();
SysExcelApplication sysExcelApplication;
SysExcelWorkbooks sysExcelWorkBooks;
SysExcelWorkbook sysExcelWorkBook;
SysExcelWorkSheets sysExcelWorkSheets;
SysExcelWorkSheet sysExcelWorkSheet;
SysExcelWorksheet sysExcelWorkSheetToBeDeleted;"

I called the custom service from C# WCF application. I get the following error "Exception of type 'Microsoft.Dynamics.Ax.Xpp.InvalidRemoteCallException' was thrown." but when I use the same code in job and execute it, the data is written into excel successfully. When I wrap this job as a custom service, to consume it from C# WCF, I get the above error.

When I browse regarding this error I found that it is because of the "Sysexcel" class I am using in the code. Am I correct? Can you help me for this solution.

could not start ERP RapidStart Connector service

$
0
0

Dear All,

I got this error when I'm trying to start the ERP RapidStart Connector service. I'm using my own user as logged in service. My own user has already had administrator priviledge. (DMMMLDEV_AX\arifin.fandi)

Service cannot be started. System.ServiceModel.FaultException`1[schemas.microsoft.com.dynamics._2008._01.documents.Fault.AifFault]: Document Generic document could not be read. Error details: Stack trace: Field 'AccountingPersonnel_JP' in table 'CompanyInfo' has not been explicitly selected. (Fault Detail is equal to schemas.microsoft.com.dynamics._2008._01.documents.Fault.AifFault).

Different error when I change it to Administrator. (DMMMLDEV_AX\Administrator)

Service cannot be started. System.ServiceModel.FaultException: Exception has been thrown by the target of an invocation. Unable to log on to Microsoft Dynamics AX.
(S)\Classes\xInfo\add
(S)\Classes\Global\error - line 3
(S)\Classes\AifUtil\getPack64FromQueryMetadataXmlServer - line 37
(S)\Jobs\


Server stack trace:
at System.ServiceModel.Channels.ServiceChannel.HandleReply(ProxyOperationRuntime operation, ProxyRpc& rpc)
at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)

Exception rethrown at [0]:
at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
...

I want to see the detail of any selected sale order under the same page.

$
0
0

Hello frds

here I am new on dynamics AX2012.

i am facing a problem. when my some user create or do some work on sale order, they do't see the detail of that sale order under the same page.

here I am sharing the picture as an example.

i want to see the window which is highlight with black pencil.

plz any one can tell me how i can visible it like this?

Production order use double raw material at the time of END.

$
0
0

AOA

I am facing an errer in AX production module

during production I am using one raw material for one finish goods,

when i create an production order and proceed it ( Estimate, Release, Start, Report as Finished) til Report as finished the production order consume single raw material But  as i END the production order, the production order consume double raw material for producing one finish good.

Please highlight the problem.

i shall be thankful for your future consideration.

EP installation error

$
0
0

Hello! I'm trying to install EP (SharePoint 2010) for Ax2012 R3. During this I get the error:

An error occurred while Setup was creating a new site. Client found response content type of 'text/html; charset=utf-8', but expected 'text/xml'.

It seems that the template fails to get installed.  Any ideas on how to troubleshoot this problem would be appreciated.

Error while packing slip creating.

$
0
0

Hello frds,

After sale order creation, when i generate packing slip , i got an error.

here i m sharing error in pic.

plz any one tell me how can i resolve this issue.

thanks


The value 205 is not found in the map.

$
0
0

Dear all,

I have created a separate module. I have also created parameter table for the same and now I am trying to create a number sequence tab in it.

Steps I followed is as follows-

1) created an EDT.

2) Created an enum with the new module in NumberSeqModule

3) Created a NumberSeqModule<ModuleName> class with loadmodule and number seq module methods.

4) Created a job to load this module.

5) now when I open my parameter form I am facing with the error

"The value 205 is not found in the map." 205 is the enum value of numberseqmodule enum.

I don't know where I got wrong. Please suggest something.

Thanks & Regards.

Sub Report Issue

$
0
0

I have created the sub report and its working well . its workflow is like in my 1 st report there are "id" & "name " , there after when i click on any name it pops up another report where it shows me the details regarding the respectinve name . But instead of pop up the details in another report i want dat respective details should be displayed in the same report (either at side of reportor at bottom). If any 1 have solution for this ,

den plz let me know about it .

thanks.

AX 2012 : SSRS SubReport usage

$
0
0

Hi, I need to use SubReport in SSRS 2012. I tried to add subreport. However,  I have no dropdown in the "Use this report as a subreport:"-field, and whatever i enter there manually is not accepted.

Error message: "The report definition for report '{Reportname}' has not been specified"

I tried  ProjectName.ReportName.PrecisionDesign1. However, when executed it says subreport is not published or the path is incorrect. Though the report is already published.

Has anyone successfully used subreports in AX 2012. Please let me know.

 

Set Borders and outline borders in Excel

$
0
0

Hi all,

How to set the borders in excel sheet using x++ code,please help me

Thanks,

Arun joseph A

Reg: Posting Definition - AX 2012

$
0
0

Hi,

Can anyone share me the process for GL Parameter ->  Account rule to use -> posting definitions.

 

Thanks & Regards

Karthik

Viewing all 72043 articles
Browse latest View live


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