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

Error occurs while closing the ax application

$
0
0

Dear all,

while closing the ax application, i have faced the below error.

let me know how to solve the issue.

Faulting application name: Ax32.exe, version: 6.3.2000.326, time stamp: 0x55723de2
Faulting module name: ntdll.dll, version: 6.2.9200.17581, time stamp: 0x5644f0df
Exception code: 0xc0000005
Fault offset: 0x0006188c
Faulting process id: 0x1674
Faulting application start time: 0x01d208f40a3ef766
Faulting application path: C:\Program Files (x86)\Microsoft Dynamics AX\60\Client\Bin\Ax32.exe
Faulting module path: C:\Windows\SYSTEM32\ntdll.dll
Report Id: cafad2f8-75a3-11e6-bf3b-f01e340024ab

Best regards,

Hem


is it possible to change namespace in AX 2012 when we deploy to IIS

Office 365

$
0
0

Hi All ,

What is the concept of Office 365 and what is the impact of AX when introduce office 365 ?

Could any one throw some light on this ?

Processing groups not listing down in LCS for creating data template in Configuration manager

$
0
0

I need data template for getting the solution identifier from Solution management in LCS. I followed these steps

I have installed the System diagnostics. Gave the configuration information in LCS. So our local environment got connected with LCS.

 

Moved to the LCS open the project and clicked on the required environment

Gone down below

Gave name to the configuration as PMS.  I got the below image and clicked continue to proceed.

After I get the process complete message I clicked Continue I got the below image where I am not able to get any information of the processing groups from environment.

I thought these are the processing groups from AX Dataimportexportframework > common > Processing groups in my client environment.

I checked there but found some processing groups already existing.

But still these processing groups are not listing down in the list to proceed.

How can we get The processing groups displayed here?

I would like to know if I am missing any setups to get here.

Close transfer order

$
0
0

Hi,

Can someone help me in closing the transfer order, I am getting following error when I try to close.

Following are details screenshot for the transfer order:

Also, when I try to cancel the remaining reminder it throws an error:

How can I close the transfer order?

Filter inventory value report

$
0
0

I try to filter the inventory value report on a field from the item. Isn't that possible?

The filter I try to use looks like this, but it displays items with other customer dimension than '3081'.

We use AX 2012 R3 CU9.

MS Dynamics AX 2012 R3 RTM to MS Dynamics AX 2012 R3 CU8

$
0
0

Hi All,

We installed MS Dynamics AX 2012 R3 RTM in Test server. We also imported Contoso Demo Data.
We installed Reporting Services and Retail POS in to this.
***Now we want to upgrade from MS Dynamics AX 2012 R3 RTM to MS Dynamics AX 2012 R3 CU8.

Could you please let me know the steps to upgrade from MS Dynamics AX 2012 R3 RTM to MS Dynamics AX 2012 R3 CU8.
Note : I not want to loose any data and any customization during up gradation. Please let me know how can i do this up gradation without any issues.

Thanks!

Regards,

Arpan Sen

Constant Currency in Management Reporter

$
0
0

Hi experts,

I've been asked to set up some reports in Management Reporter 2012 for AX 2012 R2, and one of them needs to be Actuals at a budget FX rate (as well as Actuals at the Actual rate).

Is there any way of doing this easily, or am I going to have to link to an external spreadsheet with this on? We have approx. 15 currencies over 20 entities, so an automatic way of doing this would be preferable.

Many thanks,

Will


Access to development workplace

$
0
0

How can I set a permissions for the Development workplace.

I don't want few departments or users to have access on the development workplace. Is it possible?

Calculate taxBaseAmountCur

$
0
0

Hi ,

For getting the taxAmount i use this class Tax::calcTaxAmount(),but How can i calculate taxBaseAmount from CustInvoiceTrans/CustInvoiceJour.

Thanks 

Data is not visible in Report Viewer in SSRS report "Top Supplier YTD Purchase Report"

$
0
0

Data is not visible in Report Viewer in SSRS report "Top Supplier YTD Purchase Report"

When user click on "Top Supplier YTD  Purchase report"  Ax application generates reports but data is not visible in Report Viewer, but when user exports and save in pdf and excel , he is able to see data.

 

We tried Below steps to resolve issue but still the problem not fixed.

 

1) Reset Usage Data

2) Deleted AUC files from Local drive.

3) Cleared caches from Report Server, Data , elements, Data Dictionary.

4) Tried Changing Display setting of system.

5) Restart SQL server Reporting Services.

6) Removing user from AX and Importing again and assign all user Rights again.

7) Reinstalling Client on that System and repeated Step 6.

Please let me know if any other way i can resolve this issue

NotInTTS and the RecId

$
0
0

Hi everyone!

Time for another tricky question!

I've seen some BPs around the Net encouraging NotInTTS CacheLookup option for tables in Transaction table group. So I went along and created a simple table like this:

With the following properties:

I compiled and sync'ed the table of course.

The next step was to create a couple simple jobs to make the table worthwhile: one to insert a single record into a table and another to retrieve data from it.

So the first job looks like this (nothing fancy):

static void TestInsertNotInTTS(Args _args)
{
    TestNotInTTS d;    
    ;
    
    d.SourceTableId = 359;
    d.SourceRecId   = 5637197918;
    d.InstanceId    = 65;
    d.MyVersion     = 3;
    
    ttsBegin;
    d.insert();
    ttsCommit;
    
    info(strFmt("RecId = %1", d.RecId));
}

The second one is no fancier than the first. It does 2 selects - one by the business key (the four fields) and another select goes by the record id key returned by the previous job:

static void TestSelectNotInTTS(Args _args)
{
    TestNotInTTS          d;
    ;

    // select by business keys (copied query from PCRuntimeConfigurator::PER_InitProductAttributeDetailLines())
    while    select d
            where d.SourceTableId == 359 &&
                    d.SourceRecId   == 5637197918 &&
                    d.InstanceId == 65 &&
                    d.MyVersion == 3
    {
        info(strFmt("SourceTableId=%1, SourceRecId=%2, InstanceId=%3, MyVersion=%4, RecId=%5, WasCached=%6",
            d.SourceTableId, d.SourceRecId, d.InstanceId, d.MyVersion, d.RecId, d.wasCached()));
    }

    // select the same by primary key which shows in SQL database
    d.clear();
    select firstOnly d where d.RecId == 5637144580;

    info(strFmt("SourceTableId=%1, SourceRecId=%2, InstanceId=%3, MyVersion=%4, RecId=%5, WasCached=%6",
        d.SourceTableId, d.SourceRecId, d.InstanceId, d.MyVersion, d.RecId, d.wasCached()));

}

So I run the first job, note down the returned RecId, then quickly turn to another job, hand-type the RecId in the where clause of the second select statement and run it.

Surprisingly I get some inconsistent results from both select statements, most notably that for the server-side cache record the RecId shows incorrect:

A straight SQL query from SSMS returns proper RecId:

Furthermore, should I repeatedly run my second job for a little while (a minute or so), the RecId eventually catches up:

Is this behavior expected, especially the RecId being out of whack for some time?

Running Dynamics AX 2012 CU8 to be accurate.

Will appreciate any ideas.

inventory dimension location is inactive and may consequently not be specified

$
0
0

Dear All,

Hope your all doing fine today.

We are getting an issue today when we try to End a Production job. We are getting this type of error message below.

inventory dimension location is inactive and may consequently not be specified

Is anyone has already been this issue in the past?

Thanks,

Athan

Jobs to query and display data

$
0
0

Hello Experts ,

    Am new to Ax as a technical consultant . could anyone help me for the below two requirements

1.       Write a job script to read all sales orders that are not canceled status, that were created within the last month, and write a temp table containing the sales order number, count of lines of type ‘Item’, count of lines of type ‘Service’, count of lines of type ‘BOM’ (per ItemType enum).

 

2.       Write a job script to display an Infolog of all customers with an open balance greater than 5,000 in the customer currency and display the balance in the customer and master company currency, this job should run cross-company.

Thanks in Advance,

Giribabu

Reservation Hierarchy not in Product DMF?

$
0
0

Is there a field in the Products DIXF entity that I am missing that defines Reservation Hierarchy or does the DMF:ProductEntity needs to be modified?

Thanks.


Query Displaying different number of rows in different situations

$
0
0

I have built a query that is acting very oddly. When I bind it directly to a view, it populates 36 rows, yet when I pass the same query as a dataset to an SSRS report, it only populates 12 rows. Is there anything that might be able to account for this? All parameters are identical.

Additionally, in the SSRS report, fields are returning blank. Some of these fields are selected in inner joins, and they do not match the values of the fields they are joined to (which are obviously not blank). When running the view inside of AX, I do not see this. When I recreate a SQL statement that mimics the query I built in AX, I see the same 36 rows I would expect with all of their fields properly populated.

I have tried clearing all of the caches, have cycled both the AOS and the RS services, and even booted the box that they are on, so I'm more or less positive that this is not the result of a cached problem.

Has anyone seen anything like this?

Import data from Excel via DMF - numeric data contains unexpected decimals figures

$
0
0

Hi All,

The following issue was found during importing of the same Excel file into AX 2012 R2 via DMF:

ENVIRONMENT 1 (PRODCOPY) – numbers in fields LINEAMOUNT and PURCHPRICE have 2 decimals as expected (as same as numbers exist in source Excel file) in Preview staging data form. Note: There are no any numeric formulas in Excel.


 

ENVIRONMENT 2 (PROD)– numbers in fields LINEAMOUNT and PURCHPRICE have 13 unexpected decimals. Note: There are no any numeric formulas in Excel.

 

Example: preview of number 6513.64 is displayed as

- 6513.64 - environment 1

- 6513.6399999999994000 - environment 2

As numeric formulas in Excel are not used, I do not understand how AX see more then 2 decimals.

Has anyone a idea which settings in Excel/AX is cause?

Thanks in advance for any suggestions!

Streamline my PO Workflow

$
0
0

Hey All-

I have been given the task of creating the workflow for our PO approvals.  The issue is that there are many combinations and consequently, the workflow is going to be fairly large.

The makeup for the workflow requirements are as follows:

1. 140 CostCenters

2. Each CostCenter has 5 different dollar approval amounts ($5000<,   $5,01<$10000,   etc)

3. Each approval level is routed to a User Group which contains the employees that are qualified to approve         the correlating dollar amount

I have started the process of mapping this flow in the way that I could come up with.  My question is whether or not I can streamline the workflow to be more dynamic instead of having 140 levels to build out.

1 out of 140 levels of the workflow (left side are my conditions and the right side are my approvals.

Properties example of one of the conditional decisions

Properties of one of the approval decisions

 


Thanks in Advance!

Phil

Double entry in Accounts Payable Vendor Transaction form

$
0
0

How do you prevent a double entry in the Vendor Transaction form?

Relation between Sales Category and Budget Control

$
0
0

Hi,

I wonder if anyone can tell is there any relation between sales category and budget control?

Scenario:

I have defined a quotation line as Item and assigned sales category & project category without selecting any Item.

I have imported the quotation lines to project & defining the budget for the project and activated budget control.

I defined 5 new Items in the released products and assigned the same sales category which was assigned in the quotation.

I have used those Items in WBS lines, assigned the same project category which I selected in quotation and released them to Item requirement, and consumed them.

Now, is there any budget control happens on sales category level? or control is only on project category and doesn't matter which item from which procurement or sales category is selected?

I appreciate if anyone can clarify.

 

Thank,

Hasti

Viewing all 73760 articles
Browse latest View live


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