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

MaxItemsInObjectGraph quota error upon printing ssrs report ax 2012 R2

$
0
0

Hi Guys,

Anyone knows to resolve this issue. This error message appears upon generating some standard reports (Fixed Asset Journals, AP/AR payment journal) in AX 2012 R2


Validation on EP

$
0
0

Hi,

I have unbound control on EP. I want to put validation(server side) for it before record gets saved.

How to get the selected value of the control and where to write the code to validate it?

Calendar on Resource Group

$
0
0

Hi

Hope all are well.

I know I must attach a calendar to my resource group.  However can anyone tell me the reason why? If all my resources attached to this Resource Group have a calendar that I still need to do this.  I'm running operation scheduling and yes I do have the Resource Group attached to my Operation. 

 

Thanks

CEL1967

SSRS report to bring in the details of the top 100 customer based on the sale amount for a defined time period

$
0
0

How to set a date range ( time period) inside a query for SSRS Report Generation.? 


AX 2012 - running on VMware

$
0
0

Hello,

Found few posts on forum related to VMware and Ax running on it - but in general not much exhaustive details are there. Did anyone installed AX 2012 using VMware infrastructure? I am trying to have it working smoothly, but still have some performance issues. Thing is that all virtual machines used (AOSes, AX itself, SQL etc) seem to have lot of resources not used (CPU/MEM), but users are complaining agains application response times - and it is true it does not seem to be fast at all.

Are there any general rules related to VMware setup I may be not aware of? Or maybe anyone who is running AX 2012 on VMware could share things he/she needed to do to have performance of whole environment at acceptable level?

regards

Tomasz

outerjoin with type equal specific type

$
0
0

Hi all,

I'm new in Development of AX 2009, previously I was from SQL background.

Is AX possible to accomplish this type of table join with Query ?

-------------------------------------------------------------------------------------

-- sample data

create table #temp1 (tid int,ttype char(1),tname char(100))
create table #temp2 (tid int,tname2 char(100))

insert into #temp1 values(1,'a','a1')
insert into #temp1 values(2,'b','b1')
insert into #temp2 values(1,'a11')
insert into #temp2 values(1,'a12')
insert into #temp2 values(2,'b11')

-- the SQL syntax like to accomplish in AX.
select *
from #temp1 left outer join #temp2
    on #temp1.tid = #temp2.tid and #temp1.ttype = 'a'

drop table #temp1
drop table #temp2

/* expected result

tid         ttype tname      tid         tname2
----------- ----- ---------- ----------- ----------
1           a     a1         1           a11       
1           a     a1         1           a12       
2           b     b1         NULL        NULL

*/

Description entry of movement journal cast voucher

$
0
0

I am using AX 2012. When I get General Ledger-> Reports ->Transaction -> Ledger Transaction List for the offset account of movement journal. I did not give any description for the entries which is passed by the movement journal. I want to get some description here like the Item name and its qty for which the entry is passed.

How I can save any description with the entry, so it can be reflect on report. Movement Journal pass this entry in GeneralJouranEntry and GeneralJournalAccountEntry tables. I have check the sources of Movement Journal form, these two table are not there. But these table are getting the entries from movement journal.

license AX 2012 R2

$
0
0

Hello , I buy AX 2012 R2 , I need how download license AX 2012 From mbs website  (Partner Microsoft ) ?


Not install Enterpise portal in Dynamics AX2012 r2 CU7

$
0
0

What is the impact of not installing enterprise portal in Dynamics AX 2012 R2 CU7

Default Order Type set against an Item

$
0
0

Hi

What dictates the default order type held against the Default Order Setting of an item.  Does it always default to "Purchase Order" and requires manual update?

 

Thanks

CEL1967 

Parameter date in form

$
0
0

Can i create parameter date in form?

Example : If i select in from date : 10/1/2014 and i select to date 10/8/2014.

So, i can see in my grid just date between 10/1/2014 until 10/8/2014.

What can i do?

Please help me.

Thanks

upgrading data in form with few data sources...

$
0
0

Hi Experts,

I'm beginner I do programming occasionally :) I built a form with few data sources using standard relations defined in AOT/Tables/<table_x>. In form I connected all of them to one using OUTER JOIN - meaning take me data from database even there is no related records. When I try to modify field in one of those data sources it looks that form is trying to update all of data sources and for another of them (where there is no data at all) sends me warnings and does not allow changes. Is it possible in that case to modify some fields from some data sources even in others could not be records ?

Thanks for help

Witold Adamiak

C# -> AX, How do I switch which aos the visual studio project is pointed to?

$
0
0

I am working on directly integrating the AX customer list (CustTable) into a standalone application within C#. However whenever I did this I had it pointed to my DEV AOS. How do I go about changing which aos it is pulling its data from?

I've tried loading my other environments config file for visual studio (devenv.exe /AXConfig <config file>.axc) but that did nothing. I also tried removing my table proxies and re-adding them while connected to my other AOS from within visual studio. I tried running a grep on all the files within my project folder but it doesn't even find the aos name in any of the files.

Is there is a way to manually (via code) point it to a specific config file or aos server? If not is there even a way to repoint the project to another aos through the VS IDE?

Ledger account not specified at Bank Reconciliation

$
0
0

Hi, 

Encountered the error 'Ledger account not specified' during bank reconciliation. Please advise where to set the ledger account. Thank you. 

Terms of Payment - Net End of Month

$
0
0

I am working on setting up a ton of Terms of Payment and have gotten through all BUT one.

How do I set up one with "Net End of Month". I had a suggestion to set one up with Payment date as the 30th...but that is THE exact answer and not sure what AX will do in February.

How do I set up a Terms of Payment so that it always picks the last day of the month...regardless of month?

(i.e. - February 28th or 29th, July 31st, November 30th, etc.)

I am sure that someone knows this one and would definitely appreciate your insight.
Thanks,

Michael


Adjust PO -> error when confirming the PO

$
0
0

Hi all,

When i create a PO with one line, confirm the PO but then i change the PO-line (for example i change the quantity from 5 to 6), the system gives following error:

Debugging the code is apparently not possible...

Can someone give me the explanation and th path to add a right ledger account?

Thanks a lot!

Frederik Vanhaelst

DIXF: references (FKs) are not validated during insert/update

$
0
0

Hi guys,

When setting up the processing groups for AX 2012 DIXF, there are two places where you can say that the import has to go through insert()/update() methods on the target entity (instead of doInsert() and doUpdate()) and to execute the validateWrite():

  1. DIXF > Setup > Target entities > Entity structure
  2. DIXF > Common > Processing group > Entities

Both (or all 4) options have to be set in order for DMF to run through insert()/update() and validateWrite().

Now, I have created a custom entity and added the relation to InventTable. I would expect, that defining the relationship on the DMF staging table to the referenced master table should be enough. And when I try to import invalid FKs, the standard warning/error like

"The value 'XXXX' in field 'Item number' is not found in the related table 'Items'."

should be logged in the DIXF logs.

I am OK with the fact that we still have to set these option on Processing group and Entity, but such primitive tests should not be skipped I think.

Am I overlooking something? Or do we need to write validation logic for every FK field if it doesn't exist in insert()/update()/validateWrite() explicitly? Shouldn't the super() call of these methods take care of it on the target table?

So in my test:

  • The staging DMF table has FK relationship to the InventTable
  • All options in DIXF are set to validate / run through insert and update methods
  • The source file has invalid item numbers
  • The debugger jumps into insert()/validateWrite()

Any ideas what else I should check?

Or can you explain the idea behind this design?

Thanks!

Waldemar

Customer Top 100 Report

$
0
0

HI,

I would like to seek help from you guys, may i ask if where i can find the Customer top 100 SSRS report under Sales & Marketing > Reports > Statistics >Customer > Top 100. I need to edit the report form.

I cannot identify because the output is "smmSalesRanking" but in Visual Studio SSRS is missing. Thank you.

Customer permission on form by Group

$
0
0

Hi,

I am new to Dynamic AX and trying to figured out something about permission.

I am using AX Dynamics 2009. Now a customer asked me to restrict access to a form for specific group allow them to see only specific fields.

Using User Group permission I restricted access to the table field and indeed they are not visible anymore but I have some issues:

1)The label are still there and I cannot find a way to hide these only to the specific group so what is left on the form is all messed up.

2) One of the field is not populated directly from a table but call a function/method like this:

display Name namex()
{
return name_active.namex;
}

How can I restrict access to this? From user group permission I cannot see this function and I cannot figured out how to do it through AOT.

Hope this was clear enough.

Any help would be appreciated.

Regards

Federico

Salesperson in AX 2012 R3 POS

$
0
0

How to add salesperson to the transaction in retail POS R3 ?

Viewing all 73760 articles
Browse latest View live




Latest Images