How to add new value in container with code?
TraceParser Open Trace: The requested operation requires elevation
Hi,
I traced a posting process. Saved it to file. And now when I'm trying to open the file it's throwing this error:
This is the first time I'm using it after installation. The user has the admin rights and is the same user with which I did the installation.
Moreover AOS service is also running with this domain user.
Attachments in Workflow
Hi,
Can somebody please explain the parameter add attachments in system admin and its function for workflow?
What attachments are allowed and how will this work during workflow approvals?
Thanks,
Monika
D365 - Safe pay file generation on a recurring batch
Hi,
I am looking to put the safe pay file generation process on a recurring batch. Couldn't find it...
Thanks
Sam
Collection Aging form and pool field
Hi,
In the collection aged balances form, the pool field is disabled. I have a established a pool where the preview shows some records. However I need to use the pool field in that form. Any setup is missing?
Sam
FirstOnly query property
Hi all
Running AX 2012 R3 CU9.
Have spent a long time with workarounds for this in various projects because I can't get the simple methods to work.
I have created a small simple query to show the problem I'm having. See below query TEE_FirstConfirmation linking SalesLine parent table with CustConfirmTrans child table :
As you can see I've selected "firstOnly" property (on both of these data sources, though I've also tried only header and only footer). But when I look at an order which has multiple CustConfirmTrans records, it's still splitting and giving me multiple CustConfirmTrans.
I need a way of selecting only the first CustConfirmTrans record - currently I use a view which fetches the first record in behaviour similar to a subquery, but that small complication magnifies into long wait times on reports with multiple similar joins.
I'm so sure there must be something simple I'm missing on such a common use case. Any help would be much appreciated
Thanks very much in advance
Luke
Financial Dimensions on SSRS Reports
Hi Guys,
I have created a report which is related to Purchase orders where I need to display the financial dimensions from the PO lines. I am using below code for that and it works fine with Department & Cost center I need to add dimension Machine also in the report but it doesn't work. what could be the reason ?
below I used to get the cost center:-
void Costcenter(DimensionDefault _defaultDimension)
{
DimensionAttributeValueSet dimensionAttributeValueSet;
DimensionAttributeValueSetItem dimensionAttributeValueSetItem;
DimensionAttribute dimensionAttribute;
DimensionAttributeValue DimensionAttributeValue;
DimensionFinancialTag dimensionFinancialTag;
;
select Value,Description from dimensionFinancialTag
join dimensionAttributeValue where dimensionFinancialTag.RecId == dimensionAttributeValue.EntityInstance
join dimensionAttribute where dimensionAttributeValue.DimensionAttribute == dimensionAttribute.RecId
join dimensionAttributeValueSetItem where dimensionAttributeValue.RecId == dimensionAttributeValueSetItem.DimensionAttributeValue
&& dimensionAttributeValueSetItem.DimensionAttributeValueSet == _defaultDimension
&& DimensionAttribute.Name == 'Center';
Costcenter = dimensionFinancialTag.Value;
}
below for Machine which doesn't work.
void Machine(DimensionDefault _defaultDimension)
{
DimensionAttributeValueSet dimensionAttributeValueSet;
DimensionAttributeValueSetItem dimensionAttributeValueSetItem;
DimensionAttribute dimensionAttribute;
DimensionAttributeValue DimensionAttributeValue;
DimensionFinancialTag dimensionFinancialTag;
;
select Value,Description from dimensionFinancialTag
join dimensionAttributeValue where dimensionFinancialTag.RecId == dimensionAttributeValue.EntityInstance
join dimensionAttribute where dimensionAttributeValue.DimensionAttribute == dimensionAttribute.RecId
join dimensionAttributeValueSetItem where dimensionAttributeValue.RecId == dimensionAttributeValueSetItem.DimensionAttributeValue
&& dimensionAttributeValueSetItem.DimensionAttributeValueSet == _defaultDimension
&& DimensionAttribute.Name == 'Machines';
Machine = dimensionFinancialTag.Value;
}
Microsoft Dynamics AX 2012 Retail Statement posting error
A change from origin with lot ID 025777372 to origin with lot ID 025777770 is not allowed because the values in field ItemInventDimId are not identical. I get this error when posting retail statements. From investigations this is because I have retail kits in the retail sales transactions. The error happens in InventTransOriginKeyValueTransfer class method checkCanTransfer. I stepped through the code for a normal item and then for the retail kit and noticed that the normal item has the inventTransOrigin inventDimID for the statement record and the SO that is created during statement post set to ALLBLANK but the retialkit has the inventTransOrigin.inventDimID set to something else and the SO set to ALLBlank hence the error. Any help will be much appreciated. Thanks
Lifecycle Services - Customization Analysis
Hi Folks,
I have to do run Customization Analysis for AX 2012 R3. I extracted a model file (.axmodel) via AxUtil.exe. When I try to upload .axmodel file on Lifecycle Services - Customization Analysis, it is saying "File type is mismatched". FYI - I used to do the same in past without failure. This is something new I am facing for the first time. Any clue?
Thanks!
Invoiced PO did not created Retail journal.
Hello frds,
I am having issue. today PO was created to back out entries in 1-11081. The PO status indicates it fully executed, but the retail journal did not create.
any insight please?
Regards,
Hassan
How to find this error in a table or class final dimension value doesn't exist
Please help.
TOTAL DOSCOUNT
HI,
Can I To Know how i can use Two Total Discount in the same invoice ?
MultiSelect lookup in a SSRS report in D365FO
I am trying to follow this tutorial to make the multi-select lookup working without success.
Here is what I have for look up function in UIBuilder class
Query query; QueryBuildDataSource qbds; MyTableItems tmpEnumValues; TableId multiSelectTableNum = tableNum(MyTableItems); container selectedFields = [multiSelectTableNum, fieldName2id(multiSelectTableNum, fieldStr(MyTableItems, Code))]; query = new Query(); qbds = query.addDataSource(tableNum(MyTableItems )); qbds.addSelectionField(fieldNum(MyTableItems , Code)); qbds.addSelectionField(fieldNum(MyTableItems , Name)); SysLookupMultiSelectGrid::lookup( query, _control, _control, _control, selectedFields);
And this is how I am calling the lookup function in the postBuild.
listField = this.bindInfo().getDialogField(this.dataContractObject(),methodStr(MyContract, ParmMyList)); listField .registerOverrideMethod(methodStr(FormStringControl, lookup),methodStr(MyContract,multiLookup), this); if (listField) { listField.lookupButton(1); }
What I am doing wrong here?
WAX: Work creation for load release to warehouse
hi
is there any setting within ax that gives the user advance notification that all work will not be created when they try to release a sales load to the warehouse so that they can stop/reverse the release?
at the moment, the work releases and then says not all work was created, which could be for numerous reasons eg replenishment work etc is still outstanding to move stock to a pick location.
any ideas?
mal
Picked Sales order lines
Hello,
I’m trying to create a powerbi report that presents how many sales order lines that was picked by the warehouse staff the previous working day and I have a hard time finding the correct table that have the time stamp when the picking of a sales order line (counting of all wmsorderid for sales orders or Lot ID)have been finished? Any ideas?
Br
Christoffer
Running page summary on invoice
Hello,
we wan't to create a running summary over the amount on each page of an invoice.
Is it possible in principle?
How can we achieve this with the AXD365 SSRS reporting technology.
Thank you for your answers.
Retail Store Scale Unit
Hello Experts,
Can anyone help and guide me on the installation & configuration of Retail Store Scale Unit in Dynamics 365 Finance and Operations Enterprise Edition on Premise.
1 - Please help me the pre-requisite setup and steps for configuration of Retail Store Scale Unit.
Thanks
Data import export framework validation error - installation
Hi All,
We have installed AX in one server and SQL 2016 in another server, now we are trying to install Data import export framework services in AX machine, while validating getting the below errors :
We already have SQL server installed in another machine , does it requires to install again in AX machine to fulfill the validations?
Errors:
Install Microsoft Integration Services for the version of SQL Server that you are using.
Install Microsoft SQL Server Management Studio for the version of SQL Server that you are using.
We have installed SSDT tools Visual studio - 2017 in AX server , still the validation throwing the same error,
Kindly advise us how to proceed.
Regards,
Akbar
Installation Issue
Hello Friends,
This is Harnish. I am trying to install MSD 2012 Ax R3 on windows 7(x64) system but at the time of Installation installer is not created default path on C drive.
When I try to create installation folder manually it give me error which I am attached here. Please help me to resolve this issue.
Link Between General Ledger and Purchasing
Hi,
I have to create a query that traces a record from general ledger to purchase order i-e link between GENERALJOURNALENTRY and PURCHLINE. Can someone identify the tables and joins between them