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

During Upgrade "Upgrade script not found" error.

$
0
0

Hi ,

I'm trying upgrade from AX 4.0 (SP1) to AX 2012 R2.

I get an error trying to live upgrade preprocessing.

Desc is "live preprocessing : InventSettlement transformation"

Method name is "inventSettlementPreUpgradeProcess"

Error message is Upgrade script not found.

There is no record InventSettlement table. I deleted all trans records.

How can I solve the problem?

Thanks..


Disable Retail Feature on AX2012 R2

$
0
0

Hi

We have an AX2012 R2 solution that does not need Retail. I have disabled the feature by following the URL link below  (but for Retail):

http://blogs.msdn.com/b/axsupport/archive/2012/08/06/how-to-disable-the-public-sector-solution-when-using-microsoft-dynamics-ax-2012-feature-pack.aspx 

Once removed > sync'ed > compiled > cil .  Forms/objects still relate to Retail objects  and give an not authorise message. Example: BarcodeSetup form / organisation admin > setup > Barcode. 

  

Is there another method to remove Retail Feature?  Or is the above a bug?  This is a clean system that has not yet been implemented (no data conflicts)

Many Thanks,

Cancel inventory closing

$
0
0

Hello

We have a problem when cancel an inventory closing.
It seems not all transactions are reveresed in the cancel process, or anyways not reveresed to the correct ledger account.

If I sum upp all transactions in the closing voucher and the cancel voucher the sum is correct (0 in both). But if I look at a separate account the amount is -22 315 in the closing voucher +0,19 in the cancel voucher.

How does AX work when canceling, just reversing all transactions or does it use booking profiles?

 

Best regards
Henke

Returns for AX Retail POS

$
0
0

We are testing with AX Retail POS and I have found that if a transaction is returned before it's posted to core AX from the POS, a sales order is created in core AX with negative quantity.

For example: I created a transaction in the POS with 1 line item and paid it in full with cash. Seconds later I returned the item. Next I created a statement in core AX Retail, expecting to see two transactions pulled from the POS. Instead there was only one transaction and that was the returned amount. Therefore when you post the statement it creates 1 sales order with 1 negative line.

My conclusion is that if you create a transaction in the POS and return it before it can be synced with core AX than the sales order it creates is wrong. It only shows the amounts for return lines which means your general ledger accounts should be off. You never show that you originally paid the customer and your crediting the customer back for the return.

Can someone confirm this either is wrong or explain why it would be correct?

Listpage refresh

$
0
0

I have created a Listpage with all of the needed requirements.  When I add a new item using a create new item form, that I get to by clicking the new button that is on the list page, when I close the form the parent grid on the list page does not refresh.  How to I get the grid to refresh since the list page does not allow any override methods.  I have a Interaction class, but I don't know what kind of method to use that will refresh the grid. 

Can TFS 2012 be used with AX 2009?

$
0
0

All the articles I've read online are about using AX 2009 with TFS 2010.

Thanks,

Davie

Picking List registration via x++

$
0
0

Hello,

does anybody have a snippet for the picking list registration (sales form -> Pick & Pack -> Picking list registration) probably with change of the dimensions via x++?

Thanks

Andi

For reference this is the code to post the picking list:

SalesFormLetter salesFormLetter;

salesFormLetter = SalesFormLetter::construct(DocumentStatus::PickingList);

salesFormLetter.showQueryForm(false);

salesFormLetter.transDate(_accountingDate);

salesFormLetter.update(_salesTable);

AX 2009 - Enterprise Portal on SharePoint 2010 AXLOOKUP problem

$
0
0

If you update your Enterprise Portal (AX 2009) to SharePoint 2010 it works OK in IE and Firefox. Problems appear when you try to access the portal using Google Chrome and Safari . The problems appear when using AXLOOKUP control.

After further investigation it seems that the problem is from MicrosoftAjax.js ( 

if (Sys.Browser.agent === Sys.Browser.Safari) if (this._currentTask._notified === 1) window.setTimeout(Function.createDelegate(this, function () {
this._scriptLoadedHandler(this._currentTask.get_scriptElement(), true)

)

the function createDelegate is the only function that is treated differently when accessing SharePoint 2010 from Chrome or Safari. (On Firefox it works OK)

Editing MicrosoftAjax.js can become a little tricky especially because it is included in System.Web.Extensions.

The simple solution to fix this on all browsers that experience this problem is to add a little script at the end of the SharePoint Master Page

<script type="text/javascript">
if (typeof (Sys) !== 'undefined') {
if (navigator.userAgent.indexOf(" AppleWebKit/") > -1) {
Sys.Browser.agent = Sys.Browser.Firefox;
Sys.Browser.version = parseFloat(navigator.userAgent.match(/AppleWebKit\/(\d+(\.\d+)?)/)[1]);
Sys.Browser.name = "Firefox";
}
}
</script>


Failure to catch exception in service method when exposed as inbound port - why?

$
0
0

The following service method never executes the catch block.  

[SysEntryPointAttribute(false)]

public str testExceptions()

{

   str returnValue = "Success";

   try

   {

       error("Error in code.");

       throw Exception::Error;

   }

   catch

   {

       info("in catch block.");

       returnValue = "Caught exception #1";

   }

   return returnValue;

}

The error returned from the service is:

<AifFault xmlns="schemas.microsoft.com/.../Fault" xmlns:i="www.w3.org/.../XMLSchema-instance">

<CustomDetailXml i:nil="true"></CustomDetailXml>

<FaultMessageListArray i:nil="true"></FaultMessageListArray>

<InfologMessageList xmlns:b="schemas.datacontract.org/.../Microsoft.Dynamics.AX.Framework.Services">

<b:InfologMessage>

<b:InfologMessageType>Info</b:InfologMessageType>

<b:Message>inside Message.</b:Message>

</b:InfologMessage>

<b:InfologMessage>

<b:InfologMessageType>Error</b:InfologMessageType>

<b:Message>inside Error in code.</b:Message>

</b:InfologMessage>

</InfologMessageList>

<StackTrace>

at Dynamics.Ax.Application.CCPreAuthorizeService.Testexceptions() in CCPreAuthorizeService.testExceptions.xpp:line 13

at Microsoft.Dynamics.Ax.Services.SHICCPreAuthorizationService.Microsoft.Dynamics.Ax.Services.SHICCPreAuthorizeService.Testexceptions(SHICCPreAuthorizeServiceTestExceptionsRequest testExceptionsRequest)

</StackTrace>

<XppExceptionType>3</XppExceptionType>

</AifFault>

The same method returns successfully - returning "Caught Exception #1" when executed from a job or within AX.  

I suspect that (because AX does not support catching exceptions from within transactions) this is because the service is somehow wrapping this in a transaction, but I can't figure out how to circumvent that.  

Does anyone have any insight?  Is anybody able to replicate? Thanks in advance.

APB

AIF create() foreign key issue

$
0
0

I am trying to call the create() method on a web service that I made from the ground up.  The query contains two tables.  The first table is a parent to the second table.  The child table has a "refrecId" field that contains the recId field from the parent table.  This is how the two tables are related.  The problem I'm having is that the foreign key field (refrecid) in the child table is not populated when I pass the object for the service on the create() method.

I tried creating the records for the parent table, which gives me the recId's for the parent table records.  And, then calling Update() to create the records for the child table but, that didn't work.

I know that this is possible in AX since the Sales Order service and Customer service do the same thing with object/sub-object arrangements.  For instance, the records in the SalesLine table contain the correct SalesId when a sales order is passed in to the create() method for that service.

Any help would be great.

subworkflow document key

$
0
0

Hi

I know this was asked for here before but never answered, although it appears lots of people are looking for the answer.

Since the Workflow Editor is not scalable, at around 200 elements it crashes even with 4GB of memory, I'm hoping that using subworkflows can solve the scalability problem. However, can someone please explain what a subworkflow “Document key” is? This has been asked all over the web and AX forums but no one seems to know. Microsoft simply says to select the document from the dropdown. There is nothing in the dropdown.

Any help would be appreciated!

Thanks

Jim

What is the future of Dynamics AX?

$
0
0

What is the future of Dynamics AX when compare with SAP?

AX 2009 LICENSE IMPORT ERROR...

$
0
0

AX 2009 giving message license value for ID 149 has not been created, when we import license...

Client startup .

$
0
0

I recently upgraded one instance of 2012 to 2012 R2. 

Setup was sucessfull and AOS started as well. But when i try to open client , it closes automatically leaving the following msg in event viewer.

 

Application: Ax32.exe

Framework Version: v4.0.30319

Description: The process was terminated due to an unhandled exception.

Exception Info: System.Runtime.InteropServices.SEHException

Stack:

   at <Module>._wWinMainCRTStartup()

Has any one faced this issue.

Calling Crystal Report from AX 2012 R2

$
0
0

Dear Experts,

Does anyone has try to open/call Crystal Reports from AX 2012 R2 or AX 2012. If yes kindly please help me in this regard.

Best Regards,


AX 2009 VPC Refresh 4 - License key file won't load

$
0
0

Have downloaded the lastest key file from https://mbs.microsoft.com/partnersource/deployment/methodology/vpc/msdyax2009_demotoolkit_refresh4.htm?printpage=false which is set to expire Dec 31, 2012.

When trying to load the file via Administration -> Setup -> System -> License Information I get an error;

"License code Human Resource II need prerequisite Human Resource I"

When review the file I see the Codelines for 62 -64 (HRII) and 58-61 (HRIII) are there but only Codeline 54 (HR ADA) shows and nothing for Codelines 55-57 (HRI)

Header from license file;

LicenseVersion 2

License #Contoso Entertainment

 Properties
  Name #Contoso Entertainment
  Serial #M3048953
  Date #31.12.2013
 EndProperties

Anybody know if there is a fix somewhere?

Fixed price project in AX 2012 R2

$
0
0

Hi alL,

Hope you are doing good and had a peaceful weekend,

My requirement is that i have to create a purchase order from fixed time project and i have to sell the same item to customer.

I followed below path in AX 2012 R2 demo data USSI company :

1. Created a new project.

2. Item requirement created a new line.

3. Created PO from item requirement.

4. While Invoicing PO, there is a message asking if "If items has to be consumed now". I clicked Yes.

5. I Invoiced the PO.

6. Now I go and check the SO which has been automatically created by the system and found that the SO is in delivered stage.

7. However, the Invoice button on the sales order has been grayed out.

8. I tried to create a Invoice proposal and check marked the "Sales order line" also, but still system is not showing me the proposed sales order for Invoice proposal.

Please let me know, if am missing any step or setup or any other recommendation.

Thanks in advance,

Have a great day and great week ahead,

Kind Regards,

Gaurav Chandak

problem filtering on grid

$
0
0

Hello,

On Dynamics AX 2009 ...

Everytime I open a grid, that has user id on it (such as administration + users), and trying filtering the field : user id, I run into a problem:

*ei*, will fiter nicely (with "Eitan" line for user).

*eit* will filter nicely,

but if I filter *eita* - no record match.

It will no filter fields start with *eita*, but meital found.

 

This strange behaviour happens only on several environment, but not at all of them

This happens also for other filtering on other "User Id".

 

What may be the problem?

 

Thanks :)

Installing AX2012 standalone

$
0
0

I want to  install ax2012 for learning purpose asmy company thats is running Oracle EBS 11i want to move to AX2012. Is there a way I can download and install application on test instance.

My focus is on order management,shipping,inventory,receivales and GL.

thanks & regards,

Organisation Hierarchies [Hierarchy Designer Issue]

$
0
0

Dear Experts,

I am using AX 2012 R2 and getting below problem when I use to click below path and perform Edit in detail in Hierarchy Designer Page.

 

Organisation Administration > Setup > Organisation > Organisation Hierarchies.

When I click View on any one selected Hierarchy and in detail page when I click "Edit" it shows me below error.  Do anyone has faced the same problem and resolved it.

 

Object object not initialized.

Stack trace

(C)\Forms\HierarchyDesigner\Methods\PerformEnterEditMode - line 20 (C)\Forms\HierarchyDesigner\Designs\DesignList\EditHierarchy\Methods\Clicked - line 4

Viewing all 72043 articles
Browse latest View live


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