you can right-click on this form and click personalize, the check query tab
RE: How to display "View History" list page ?
RE: How to convert number(8893) to arabic number(٨٨٩٣) in x++ ax 2012?
Hi Akshay,
please find the following method
public string ConvertToEasternArabicNumerals(string input)
{
System.Text.UTF8Encoding utf8Encoder = new System.Text.UTF8Encoding();
System.Text.Decoder utf8Decoder = utf8Encoder.GetDecoder();
System.Text.StringBuilder convertedChars = new System.Text.StringBuilder();
char[] convertedChar = new char[1];
byte[] bytes = new byte[] { 217, 160 };
char[] inputCharArray = input.ToCharArray();
foreach (char c in inputCharArray)
{
if (char.IsDigit(c))
{
bytes[1] = Convert.ToByte(160 + char.GetNumericValue(c));
utf8Decoder.GetChars(bytes, 0, 2, convertedChar, 0);
convertedChars.Append(convertedChar[0]);
}
else
{
convertedChars.Append(c);
}
}
return convertedChars.ToString();
}
RE: adjustment sales order transactions cost
what do you mean by "but not success because not coming sales order trans"
adjustment sales order transactions cost
dear ,
I have sales order transactions posted with wrong cost ,, how can I adjustment this cost to correct cost
- I am try to adjustment from closing and adjustment / transactions but not success because not coming sales order trans ‘
- all report :shows profit margin loss
Please help me to know how adjustment sales order posted cost to repair the old transactions
Thanks
RE: Extension on tmp table (onInserting method) not cleaning up table
Hi Oush Mi Ta,
You might have to debug standard report and see where reports data is cleaned up in standard code. Since you duplicated most of the elements you might be missing that particular part. we don't have visibility to what you have done, so better approach would be debugging standard part where deletes happen and replicate that in your custom part.
Extension on tmp table (onInserting method) not cleaning up table
Hello, I had to add some custom fields to the purchase Oder confirmation report (PurchPurchaseOrder). So I duplicated it in my project.
I then extended table PurchPurchaseOrderTmp and PurchPurchaseOrderHeader and added some custom fields. I have already extended the controller to point to the duplicate report design that I have modified. Everything worked fine up to this moment. But when I created a class and used the onInserting event of the tables to assign the values to my custom fields there seems to be a problem with the tables.
These are regular tables who are only populated when the report is run and then all the values are cleaned when we close the reports. But after I used the on inserting method the tables are not being cleaned each time I close the reports. This is resulting in lots of duplicate values on my reports and when I truncated the tables to test now no values are being returned.
Can someone explain why this is happening and how can I solve this?
RE: D365 error when generating report: Unable to find the report design PurchRanking.Report.
Add report to your project , right click on report and clicked on Deploy reports. Check the result in output window for any errors . Script to deploy all the reports is already pasted in my earlier post .
D365 error when generating report: Unable to find the report design PurchRanking.Report.
Dears,
Please note that i am not able to print reports using D365.
The following error is appearing when generating any repo: "unable to find the report design PurchRanking.Report."
kindly note that i deployed reports using command powershell from the file located at C:\AOSService\PackagesLocalDirectory\Plugins\AxReportVmRoleStartupTask\DeployAllReportsToSsrs.ps1
but any of the reports appears in Dynamics folder in reporting services configuration URL.
Your feedback is highly appreciated.
Regards,
Elie
RE: How to convert number(8893) to arabic number(٨٨٩٣) in x++ ax 2012?
Hi vinod,
thank you for this code,
but when i am running it giving me syntax error on
char[] convertedChar = new char[1];
byte[] bytes = new byte[] { 217, 160 };
char[] inputCharArray = input.ToCharArray();
foreach (char c in inputCharArray)
{
i have chenged, but still
please guide me thanks in advance
RE: How to display "View History" list page ?
The maximum number of current and future positions for job 'ACCOUNTS' have been created.
Hello guys!
I bump into this problem while creating a new position.
The maximum number of current and future positions for job 'ACCOUNTS' have been created.
What should I do?
Should I delete the old staff that left the company and replace new one onto the existing Accounts positions??
RE: Visual Studio and Dynamics 365
Hi All,
In case of my client, the VS license has expired in development VM and we are planning to uninstall VS and get a licensed Visual Studio 2015 Community Edition. Can anyone one please advise if Visual Studio 2015 Community Edition has any compatibility issue with D365 for Fin and Ops ? This thread is already marked as answered, creating a new thread for this question.
Thanks.
RE: GSTR1 and GSTR2 CSV reports in unreadable format in AX 2012 R3, After installation of KB 4038381, GSTCadence1, INDIA GST
Hi AjoyDey,
You just save GSTR Report with .zip extension and problem will get resolved.
GSTR1 and GSTR2 CSV reports in unreadable format in AX 2012 R3, After installation of KB 4038381, GSTCadence1, INDIA GST
Hi AX Experts,
After installation of KB 4038381 and GSTCadence1 upgrade scripts in AX 2012 R3 CU11 , we are facing an issue in fetching GSTR1 and GSTR2 report. The reports was fetched into CSV file format but data is not in readable format.
I checked the code with debugging, The file is initially written into binary file and then converted into given file format (CSV file).
The DLL is used for this is Microsoft.Dynamics365.Tax.Reports
I haven't found any issues in X++ code, but the final report is printing in unreadable format.
If anyone face this issue before or having any suggestions on the same, please let me know.
Thanks in advance.
RE: Extension on tmp table (onInserting method) not cleaning up table
Hello Sukrut Parab,
In the DP class I have the following line
recordList.insertDatabase(this.parmUserConnection()); //it is inserted within user user connection so the framework will delete it automatically after the report is done.
Is it where the deletion is being done?
And the problem is occuring when I use the onInserting event of the table. Maybe using a post method like a while select forupdate of the records of the table would be better?
RE: VS 2015 community edition compatibility
look at this community link
VS 2015 community edition compatibility
Hi All,
In case of my client, the VS license has expired in development VM and we are planning to uninstall current VS and install Visual Studio 2015 Community Edition. Can anyone one please advise if Visual Studio 2015 Community Edition has any compatibility issue with D365 for Fin and Ops ?
RE: Integrate Salesforce with D365 for Operations
HI Krishna ,
You can use out of the box data entities to integrate sales order from sales force.
Look at this video about sales order integration using data entities
(Please visit the site to view this video)
Also you can look at this blog post
Integrate Salesforce with D365 for Operations
Hi,
Greetings.
Requirement: Integrate D365 with Salesforce (eg: Sales orders will be synced from Salesforce to Dynamics)
Salesforce -> AX (sync data).
Could you please suggest available methods in D365 to integrate and sync data with Salesforce.
Thanks,
Krishna.
RE: Display Account Name in the CustLedgerTrans.Report
Hi Chaitanya
Thank you very much for your cooperation, what I want to get is the Account Name and that Account Name should be assign to CustLedgerTransTmp Table wich is used in the report CustLedgertTrans.report only I want to Display the Account Name in the report ,becuse the CustLedgerTrans.Report is displaying the Account Number by using this Expression
=IIf(Parameters!MainAccountsOnly.Value, Fields!MainAccountId.Value, Fields!LedgerAccount.Value)
So that I am getting confuse which table to use to get the Account Name display in the report
according to the following expression
=IIf(Parameters!MainAccountsOnly.Value, Fields!MainAccountId.Value, Fields!LedgerAccount.Value)
waiting for your valuable answer
Best regards Jamil