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

Configure connection bwteen HQ and Store database Ax for retail 2012

$
0
0

I cannot open the POS I install the Retail in two servers, one for the HQ and another server for the Store and the register.

 

I created in the domain user group POSusers as Admin and add to the SQL in HQ and Store and as well locally in the store machine ...

 

I created the online database successfully

I configured the Retail store connect in both servers

I configured all profiles and they connect successfully

the retail store connect profile insert successfully a record in the relative database

 

now when Run N70 , N90, N95

 

they dont populate the store, register and Offline profile data in the Store Database ???

 

I should perform this step before I can create offline database and Open the POS

 

any clue ???


Request for quotation and marking

$
0
0

Hi,

I am using master planning (in AX2012 CU3) to generate planned orders and when I firm those planned orders I choose extended marking, which automatically links the created purchase order line physically and financially to the sales order(s) based on the pegging.

We wanted to make use of the request for quotation feature in AX for some of the generated planned orders, however when we use the button to convert the planned order to a request for quote, the planned order and its associated pegging appear to be discarded. This means that when the time comes to accept a request for quotation reply, there is no longer a planned order to firm and therefore the option to create extented marking is not available.

Can anybody suggest a good way to incorporate the RFQ process without losing the ability to automatically mark the PO against the demand that created it? We are talking about large numbers of items at a time, so the last thing we want to be doing is manually creating seperate documents. If system development is the only option, what changes would you make to allow this process to work?

AX2012 Transfer model - missing change

$
0
0

Dear community,

We are facing something strange with the transportation of models. Within one layer we have two models. A standard AX form was first modified in "model 1". Changes were lay-out and a change on a method on the datasource.

Now in "model 2" we have only changed an existing method (in the datasource) which was not affected by a the changes in "model 1".

We transported the model to a next environment in our DTAP. All changes in "model 2" except for this change on the datasource is visible.

Why is this change not transported? When we look at the model elements the method is visible as change  in "model 2". That makes it even more strange....

I hope someone can answer this question.

Financial Statements Taking too Long

$
0
0

Dear

I am trying to run my financial statements , when i call the report for the General ledger accounts only, it take a small amount of time and produces my report as usual,

but when i call the report by Dimension A / Dimensions B , it is taking forever and not even producing anything at all after loading for more than half an hour.

I did some research and found a blog that experienced the same symptoms when requesting financial statements with dimensions (endless combination - not specific dimensions) and they declared and probably after your run the report and get nothing, AOS need to be restarted.

does anyone have a workaround for this issue, how can we produce reports using dimension

ShipCarrierAddress Blind Shipment

$
0
0

I've been doing some searching to find conversations or hot fixes related to the ShipCarrierAddress fields populating the delivery address section as defaults on a new sales order.  I've had no luck.  This seems to work in ax 2009 but not in 2012.  In 2012, it seems to pull in the fields when I physically go into the addresses on the sales order then select the same address that was already populated by default.  Am I missing something on setup or does this need to be submitted to MS to be fixed?  Maybe this feature was intended to NOT default when creating a new sales order.  If it is intended, i most likely need to be enlightened.

FYI we are running CU3/FP1

SSRS Sum of calculated and grouped fields

$
0
0

Hi

In a tablix a are some groupings and the fields are calculated based on other fields. On the total line we like to have the sum, so we need the output of each textbox. with sum(ReportItems!Textbox.value) it will give an error when deploying.

Is there a way to sum a column?

Thanks for help

Purchase Order Customization in AX 2009

$
0
0

Hi All,

I am customizing Purchase Order Report in AX 2009. I need to print the particular name on PO according to Input from user. I have used a Dialog box for taking input from user. The data which is entered by user is stored in UsrName variable, now while comparing this input entered by user using switch case i found that there is no value in UsrName i.e Switch(UsrName).
and bcoz of this it is unable to compare it with the cases and it is printing the data which is written in Default: stmt of Switch-case.

So, i have a query why this UsrName is blank...?? It is not retriving/fetching the value entered in textbox(of dialog box/field) by the user.

the code written is as follows:

Class Declaration :-
DialogField boxUsrName;
String100 UsrName;


Dialog method :-

public Object dialog(Object _dialog)
{
DialogRunbase dialog = _dialog;
;
dialog.addGroup("Name on Purchase Order");
boxUsrName = dialog.addField(typeid(String100), "Enter the Name:");
boxUsrName.value(UsrName);
return dialog;
}

getFromDialog() :-

boolean getFromDialog()
{;
UsrName = boxUsrName.value();
return true;
}

Display method :-


display Description dispName1()
{
    Description tmpDesc;
    ;
    info(UsrName);        ------ // this stmt outputs as Blank in infolog.
    switch(UsrName)
    {

    case "ABC":tmpDesc = 'A';
    break;

    case 'PQR':tmpDesc = 'P';
    break;

    Default:tmpDesc = 'XYZ';

    }
      return tmpDesc;
 }

Is their anything that is missed out,Please suggest.

Thanks in Advance.

Add service reference: Use of unassigned out parameter 'XX'

$
0
0

Hi there

I'm currently integrating a web service to AX 2009. When I try to add a service reference in AOT, I got some messages saying:

[Drive:\]...\AppData\Local\Temp\DynamicsAxSvcReferences\<MyWebServiceName>\<WebServiceMainCls.cs(36,25) : error CS0269: Use of unassigned out parameter <Parameter>

But when I use Visual Studio, all works fine. I don't know how to fix. Any Ideas:

The service is public, so you can try it too: https://ws.im.post.ch/3.0?wsdl

Thank you for answers.


AX2009 FTPWebRequest in Batch

$
0
0

Hello,

I made a batch class to check an FTP for files, download them and delete them on the FTP.

When I run it manually (not in batch) it works perfectly and downloads all files in the FTP and deletes them when the downloading is done.

The problem starts when i try to run this in batch, I tried both serverside and client batches.

Both of them give a timout error:

System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.Net.WebException: The operation has timed out.

  at System.Net.FtpWebRequest.CheckError()

  at System.Net.FtpWebRequest.GetResponse()

  --- End of inner exception stack trace ---

Does anyone have any experience downloading files from an FTP in batch?

I have tried setting the timeout time higher. I also tested the connection on the servers executing the batch-job and i can access the FTP. So it's not a firewall issue. I think it must be something within AX but I can't really think of anything.

this is the code (note: downloadfile and deletefile is the same code to make the connection with a differenct set_method():

    permissionSet =  new Set(Types::Class);
    files = new List(types::String);
    permissionset.add(new InteropPermission(InteropKind::DllInterop));
    permissionset.add(new InteropPermission(InteropKind::ClrInterop));
    CodeAccessPermission::assertMultiple(permissionset);
    ftpo = System.Net.WebRequest::Create(<ftp link>);
    request = ftpo;
    request.set_KeepAlive(false);
    request.set_UsePassive(false);
    request.set_UseBinary(true);
    request.set_Method("NLST");
    credential = new System.Net.NetworkCredential(<user>,<pw>);
    request.set_Credentials(credential);
    try
    {
        //first get the filelist from FTP
        response = request.GetResponse();
        reader = new System.IO.StreamReader(response.GetResponseStream());
        while(!reader.get_EndOfStream())
        {
            text = reader.ReadLine();
            files.addStart(text);
        }
        reader.Close();
        response.Close();
        CodeAccessPermission::revertAssert();
        if(files.elements() >0)
        {
            it = New ListIterator(files);
            while(it.more())
            {
                filename = it.value();
                downloadfile(filename);
                deleteFile(filename);
                it.next();
            }
        }
    }

Display standard form on Lookup

$
0
0

Hi,

we want to display a standard form on lookup click. We have a EDT with a FormHelp assigned. The Form does not have the Popup Property. When we click the Lookup Button the Form does not appear visually. We've recognized that the form gets initialized and is even responding to key events (because the close - method gets called when hitting the return key).

Does anyone have an idea how to get the form displayed?

Kind regards

Andi

Loss Prevention software?

$
0
0

Has anyone worked with any loss prevention software package on AX2012? I would think that, like price optimization or sales tax softwre, this is an area generally left to vendors who specialize in that one area of expertise.

Move Pallet function problem AX 2009 / AX 2012 R2

$
0
0

Hi all,

After moving a pallet using the "Move Pallet" function, the pallet location changes, but the inventory (on the pallet) doesn't move. The system doesn't show any error message neither.

I realized that the problem happens when the location name has a comma e.g. "A-2,03"

Has anyone experienced this before or has any idea to solve the problem? 

Thanks in advance,

Juan Pedro

Connecting a 3rd party software to Microsoft Dynamics AX?

$
0
0

Hello all, I'm creating an ecommerce solution based on NopCommerce. There's already a NopCommerce add-on for Microsoft Dynamics AX 2009, but it's for a very outdated version of NopCommerce.

I've read about connectors, but I'm unsure if any would work with a non-msft-related product (common .NET website). Do you have any recommendations on which steps to take to connect a C#/.NET website to Microsoft Dynamics AX?

Thank you kindly in advance

Creation of PDF files is very slow

$
0
0

Hi

After upgrading from Ax3 to Ax2009 some of our customers complain about the creation of PDF files.

This is a bit of a problem, since most of our customers use a function that creates a pdf invoice and sends it by mail.

I have been timing the difference between the RTF and PDF versions of our invoices. The RTF file is created in less than one second, and the PDF file needs six seconds to get created. This is a problem since our customers create a lot of invoices every day.

Has anyone experienced the same thing, or made any changes that optimizes the code? 

/Jonas

AX 2012 Subreport

$
0
0

Hi,

I'm trying to test out subreport feature with Dynamics AX 2012.

I'm having a report, Report14 and I've created another report and add a subreport which point to Report14.

When I preview it, I'm getting this warning saying "The subreport SubReport1 could not be found at Report14.PrecisionDesign1.

Please verify that the subreport has been published and the name is correct". I've already deploy the report.

Any advice?


Adding F Sharp (F#) project to AOT

$
0
0

I understand that AX 2012 does not support F sharp projects the same way it supports VB.NET and C# projects, but I was curious about how relatively possible it is to add this functionality to the AOT?. Does anyone have any links or information about extending the actual AOT rather than just objects within it? It seems like this should be fairly possible considering F Sharp compiles down to dll's that are MSIL.

 

Worst case scenario I can add a dll that I call from a c# project in the AOT, but that requires me to physically deploy the file to clients/servers running AX, rather than have the auto deploy functionality.

 

Can you auto deploy a dll added as a reference?

Urgent: AX4 to AX2012 data upgrade - AX4 Delta processing issue

$
0
0

There are a number of changeTrack prefixed tables (e.g. ChangeTrack_InventTrans, changeTrack_inventTable) in AX4 that captures the records changes in AX4.

On Delta processing, these changeTrack tables are used for processing the changed records. I notice after delta processing is ran, the changeTrack tables' record get marked as processed, but it remain on the tables.

My concern is that the same amount of records will get pick up again in the next delta run and causing unnecessary overhead in processing time. I think the changeTrack_ prefix table's record should be deleted once it get processed in a Delta processing run.

Please advise if you have encounter similar issue or if you have any suggestion to this issue.

 

Thank you very much!

 

Regards,

Jaren

Installing AX2012 on Windows Ent. 64

$
0
0
After completing the installation AOS not starting with any account , can any one advice what I should do to make start, I used domain account and I have SQL server 2008 locally installed, database and client tool successfully installed even AOS successfully installed but unknown reason not starting.

Payment Services for Microsoft Dynamics ERP

$
0
0

Hi,

We are reviewing the "Payment Services for Microsoft Dynamics ERP" option and would like input on the PCI compliance aspect.

I have read the white papers and PCI documentation but the following info from their white paper/docs do not give me a warm fuzzy feeling about credit card data security..

Two tables for the credit card processing feature contain sensitive information. These tables use the table permissions framework (TPF) to limit access, however, we recommend additional security.

• The CreditCardProcessorsSecurity table stores access keys for payment processors. Note: PSMDE no longer requires this table in Microsoft Dynamics AX 2012.

The CreditCardCustNumber table stores the credit card numbers that were entered through the credit card wizard.

Although the AOS and the SYSADMIN user are the only users that can access the Microsoft Dynamics AX database when it is installed, we recommend that you use the Microsoft SQL Server transparent database encryption feature to further restrict access to the two tables. Specifics about how to protect SQL Server are described in the Microsoft Dynamics AX Security Hardening Guide.

To reduce the possibility of obtaining credit card numbers on the network, all Microsoft Dynamics AX code that processes the full credit card number is run on the AOS

It seems as the onus for data security would strictly be the ours( the client). The other option for credit card payments was Red Maple where they clearly mention that no credit card details would be stored on the MS AX database.

Any feedback would be welcome

AX 2012 Filter out menu items by their properties and add to privileges

$
0
0

Hi All,

I am currently working on assignment of granting access rights to our users. Some typical requirements are to provide read-only access to whole system, etc.

I was wondering if there is some way to filter menu items by their properties and add to an existing / new privilege by any means.

I tried security development tool, but, it does not show values for properties when no Role / Duty / Privilege is selected.

Has anyone worked on similar requirements earlier? Any help would be greatly appreciated.

Best Regards,

Michael Brown

Viewing all 73760 articles
Browse latest View live




Latest Images