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

RE: Payment advice using Electronic Reporting

$
0
0

Hi Lan,

I have not worked with BACS in D365 but with other comparable payment formats and what D365 does is generateing a zip file that includes the payment file and the payment advices. You should thus be able to save the remittance advices and send them to your vendors. Doesn't this work correctly for you?

What files are generated when you make the payment via the generate payment button?

Can you share that?

Best regards,

Ludwig


Question regarding hotfix KB 4017763 - impact of hotfix on sales tax calculation and posting?

$
0
0

Hi,

we have installed hotfix KB#4017763 on a customer's AX2012 R2 installation and since then, maybe coincidentally, we are facing the issue that articles (products) in automatically generated customer invoices for POS-transactions are sometimes not posted with sales tax although the sales tax and item sales tax are shown in the generated order and posting proposal journal. There is no systematic in this as this hits various articles and shops without the same articles appearing each time.

Does anyone has the same issue? Any idea if this is connected to the hotfix mentioned above?

I would appreciate your quick feedback as our customer is closing the financial year as of September 30th.

Thanks!

Thomas

RE: Displaying Form

$
0
0

As said add some code to Create method to read the values from Contrat table. something like this:

contrat  contrat;

select contrat  where contrat.NoContrat==@NoContrat(field name.text());

if(contrat)

{

   contratlines.Natture=contrat.Nature;

}

RE: Converting to text file after XSL transformation

$
0
0

Hi Kavanka,

Thanks for your reply..

Could you please let me know which XSLT file you have used for input and outbound port transforms..?

Thanks

HariBabu

RE: Get all Users in X++

Sharepoint linked Dynamics AX to Azure Dynamics AX

$
0
0

Hi,

In On-Premises, Dynamics Ax 2012 R3 is linked to SharePoint. Is it possible to migrate from On-premises to Azure Dynamics AX 2012 R3?

If so,

    - Please provide brief steps involved in that.

    - Can I use Azure SQL(PaaS) for Dynamics AX backend DB. 

RE: Converting to text file after XSL transformation

$
0
0

Hi kavanka,

I have created the above two classes by extending classes as you said, And I have set the textfile adapter to outbound port.

Batch job are running successfully but not generating any file..

Could you please let me know what are the other steps..to generate.

Thanks

Hari

Converting to text file after XSL transformation

$
0
0

I managed to perform the XSLT transformation in an input XML file and generate the transformed output XML file. Now, the requirement I am getting is that the output file should be a text file instead of a XML file. Is there any standard functionality to generate the transformed text file instead of XML file in AX 2012?


RE: Payment advice using Electronic Reporting

$
0
0

Hi Ludwig

In order to get the payment reports along with the payment file, in D365 we have 2 choices. Using the standard available format like we have been doing in AX 2012. Other option is building the template yourself using GER.

I am using 2nd option.

My problem at the moment is due to my environment setup - I could not see the remittance advice from the BACSUK template therefore I could not use BACS UK as the base to modify it.

Another approach is I am building the template from scratch and currently run into 2 issues:

1/ I could not have the excel format in option to import external template

2/ I got an error message when trying to import the Microsoft sample template in from the article I mentioned above "The attached template file is not found in Azure storage"

That is why I stuck - could not know how to import the template to proceed further with mapping the data.

I used another approach to create reports but it is not in excel format - it is in txt or csv instead and could not get any data for addresses.

Regards

Lan

RE: DAX 2012 AIF Outbound XML to CSV Transform

$
0
0

Hi John,

Where Can I wright the above code..

Thanks

hari

DAX 2012 AIF Outbound XML to CSV Transform

$
0
0

Greetings. I am running an AIF service (VendPaymentService) which exports an XML file with the payment information. I must convert this to a CSV format and research has shown me that I have to use a .NET Assembly to Transform do that. Microsoft has step-by-steps for creating an Inbound/Import .NET Assembly (CSV to XML), but not an Outbound/Export. I am a .NET amateur and MS's example shows how to call XML building tools and CSV reading tools, but I don't know how to build CSV building tools and XML Reading ones.

Here is the MSDN Article: msdn.microsoft.com/.../gg863930.aspx

To recap, I understand the overall concept that you build the .NET tranform and how to attach it to the AIF service but I am stuck on building the .NET Assembly itself and would like to know if anyone can provide me with help or an example of building the .NET transform from XML to CSV.

Thank you so much!

RE: DAX 2012 AIF Outbound XML to CSV Transform

Cascading parameter in UI Builder

$
0
0

Hi,

I am facing an issue regarding cascading parameter.I have created the first parameter cross company(lists all the company and also it is a multi select parameter).I have stored companies is in  list.Now i need to pass this list next parameter to filter it out based on the dataareaid's .my code is below.

In Dp class i have written this code to iterate the dataarea id 

     ListIterator lstItrRegion;


    ProductStatusIdAuditReportContract=this.parmDataContract();


    lstItrRegion=new ListIterator(productStatusIdAuditReportContract.parmRegions());
    reportingCategory = ProductStatusIdAuditReportContract.parmReportingCategory();



    qry = new Query();
    qry.allowCrossCompany(true);

       while(lstItrRegion.more())
    {
        qry.addCompanyRange(lstItrRegion.value());
        lstItrRegion.next();
    }


In ui builder i have created a look up for the 2 ndparameter

private void ReportingCategoryLookup(FormStringControl    _control)
{
    Query query = new Query();
    SysTableLookup sysTablelookup;
    QueryBuildDataSource qbds,qbds2;
    ListIterator lstItrRegion;
    QueryRun qry;




    query.allowCrossCompany(true);
    sysTablelookup=sysTablelookup::newParameters(tableNum(TECItemReportingGroup),_control);
    sysTablelookup.addLookupfield(fieldNum(TECItemReportingGroup,Num));
    sysTablelookup.addLookupfield(fieldNum(TECItemReportingGroup,Description));


    qbds = query.addDataSource(tableNum(TECItemReportingGroup));
    qbds.addRange(fieldNum(TECItemReportingGroup,Code)).value(queryValue(TECItemReportingCode::ReportingCategory));
    qbds.addSelectionField(fieldNum(TECItemReportingGroup,Num));
    qbds.addSelectionField(fieldNum(TECItemReportingGroup,Description));



    sysTablelookup.parmQuery(query);
    sysTablelookup.performFormLookup();



}

Now i want to have to customize the code to get the 1st parameter and pass in to the above look up range to filter .

Thanks Advance

Lakshmikanthan K

RE: DAX 2012 AIF Outbound XML to CSV Transform

RE: Get all Users in X++

$
0
0

Hi Mena,

Using X++ you cannot get the users from multiple partitions. Possibly you can execute a direct SQL statement?


RE: Payment advice using Electronic Reporting

$
0
0

Hi Lan,

There seem to be a couple of issues with the payment advice for BACS. I found a couple of Hotfixes on LCS. Have you already checked them? Please see: fix.lcs.dynamics.com/.../Results;dm=0&v=1_2_8&i=2_1_3_4&ct=1_3_5_4_2_6&ft=1_2_3&cu=&pi=&pm=&pc=&rd=&d=&envId=&permission=&x=0&y=0

Best regards,

Ludwig

Norton techNical support Number toll free Number #1{{(844)+(200)+(3985)}} NORTON techNical support Number toll free Number

$
0
0

Norton techNical support Number toll free Number #1{{(844)+(200)+(3985)}} NORTON techNical support Number toll free Number
norton 360 tech support number norton 360 helpline phone number phone for norton customer support norton antivirus help phone number norton instant security help phone number norton antivirus customer care number phone number for norton 360 norton antivirus telephone number customer service norton technical support telephone number norton contact number for customer service norton problems
18442003985 www.bookwitty.com/.../5a01e41f50cef7358b04a649
www.surveymonkey.com/.../ZKGN37H
we have a hosted CRM 4.0 (with Update Rollup 1) customer using Windows Vista, Internet Explorer 7 and Norton Internet Security (v15.5.0.23).
They are experiencing poor view and form load times (4-5 seconds) compared to 1s from our office. Latency is low (7-8ms) and bandwidth is OK (2MB/s in a 10-person office).
We have seen issues before with McAfee's script scanning feature which impairs performance by scanning the script in every web page. But I couldn't see a similar feature in Norton. Nor could I find a way to temporarily disable Norton to allow me to test it - it looks like I might have to try uninstalling it.
Norton toll free customer care Number {{1(,)844(,)200(,)3985}} Norton toll free customer care Number
Norton toll free customer care Number {{1(,)844(,)200(,)3985}} Norton toll free customer care Number
www.bookwitty.com/.../5a01e41f50cef7358b04a649
www.mapmyrun.com/.../1851615185
www.mapmyrun.com/.../1851615185
www.surveymonkey.com/.../ZKGN37H
www.bookwitty.com/.../5a01e41f50cef7358b04a649
www.surveymonkey.com/.../ZKGN37H
medium.com/.../norton-antivirus-customer-support-phone-number-1-844-200-3985-norton-antivirus-customer-c28c62a3de9e
medium.com/.../norton-antivirus-customer-support-phone-number-1-844-200-3985-norton-antivirus-customer-c28c62a3de9e
Norton Antivirus Tech Support Phone Number
Norton Antivirus Phone Number
Norton customer care phone number
Norton Customer Service Number
Norton Customer Support
Norton Tech Support Phone Number
Norton Support Number
Norton Total Support
Norton Antivirus Tech Support Number
Norton Antivirus Support Phone Number
Norton Antivirus Customer Service Phone Number
Norton Tech Support Number
Norton Antivirus Contact Number
Support Norton
Norton Antivirus Support
Norton Contact Support
Norton Helpline Phone Number
Norton Antivirus Support Number
Phone Number For Norton Customer Service
Norton Phone Support
Norton Number
Contact Norton Tech Support
Norton toll free customer care Number {{1(,)844(,)200(,)3985}} Norton toll free customer care Number
Norton Customer Support Phone Number
Norton Phone Number Tech Support
Contact Norton Support
Contact Norton Customer Support
Norton Antivirus Helpline Number
Norton Customer Support Number
Norton Helpline Number
Norton Com Tech Support
Norton Help Phone Number
Norton Support Contact
Norton Antivirus Customer Support Number
Norton Help Number
Norton Customer Support Phone
Norton Customer Number
Norton Contact Info
Norton customer care phone number Usa
Norton Customer Service Phone Number Usa
Norton Customer Service Phone Number Us
Norton Tech Support Number Usa
Norton customer care phone number Us
Norton Support Hotline
Norton Contact Number
Norton Customer Care
Norton Customer Care Number
Norton Customer Care Phone Number
Norton Customer Care Toll Free Number
Norton Customer Service Telephone Number
Norton Antivirus Customer Care
Norton Antivirus Customer Care Number
Norton Antivirus Customer Service
Norton Antivirus Customer Service Number
Norton Antivirus Customer Support
Norton Antivirus Customer Support Phone Number
Norton Antivirus Tech Support
Norton Antivirus Technical Support
Norton Antivirus Technical Support Number
Norton Antivirus Technical Support Phone Number
Norton Antivirus Toll Free Number
Norton tech support number
Norton customer support telephone number
Norton antivirus customer support number
Norton internet security technical support
Norton antivirus customer support phone number
Norton antivirus customer support phone number
Norton antivirus customer support number
Norton antivirus customer support number
phone number for Norton antivirus customer support
Norton antivirus customer support
Norton antivirus customer support phone number us
Norton antivirus phone number customer support us
phone number Norton antivirus customer support
Norton antivirus phone number customer support
customer support number for Norton antivirus
Norton antivirus customer support phone
Norton tech support phone number us
Norton tech support number
Norton customer support phone number
Norton customer support phone number
Norton phone number customer support
Norton security phone number customer support
phone number for Norton customer support
Norton customer support phone number
Norton internet security customer support phone number
Norton Antivirus tech support phone number aus free
Norton Antivirus technical support phone number aus
Norton Antivirus technologies phone number aus
Norton Antivirus telephone support number aus
Norton Antivirus support telephone number aus aus
Norton telephoNe Number
Norton antivirus toll free Number usa
Norton support services Number
techNical support for Number Canon
Norton customer care phone number usa
Norton Number customer care Number usa
Norton antivirus customer care Number
Norton customer care ceNter
Norton customer support
Norton customer support phoNe
Norton customer helphNorton
Norton customer care phone number
Norton antivirus support phoNe Number
Norton tech support phoNe Number
Norton customer support phoNe Number
Norton tech support phoNe Number
Norton helpliNe Number
Norton helpdesk phoNe Number
Norton toll free Number
Norton coNtact Number
Norton telephoNe Number.
Norton customer care phone number
Norton customer care phone number
Norton techNcal support phoNe Number.
Norton techNical support Number
Norton tech support Number
Norton customer support Number
Norton customer care phone number
Norton helpliNe Number
Norton coNtact Number
Norton telephoNe Number
Norton customer & techNical support
Norton customer portal
Norton customer care phoNe Number usa
Norton customer care email
Norton helpliNe
Norton tech support coNtact
Norton customer care toll free
Norton customer service Number
Norton protectioN
Norton customer service Number
Norton software customer service Number
Norton customer care phone number us
how to coNtact Norton by email
Norton free phoNe support
Norton techNical support phoNe Number
Norton techNical support Number
Norton techNical support help desk phoNe Number
Norton techNical support Number toll free Number
Norton techNical support phoNe Number
Norton customer support phoNe Number
Norton customer care phone number
Norton techNical support Number
Norton techNical support phoNe Number
Norton tech support Number
Norton customer support
Norton customer care phone number
Norton techNical support reviews
telephoNe Norton Number
Norton tech support phoNe Number
Norton tech support phoNe Number
Norton customer service billiNg
Norton customer service email address
Norton customer service reviews
coNtact Norton customer service
Norton tech support Number usa
Norton coNtact Number
Norton customer care phone number
Norton tech support phoNe
Norton tech support Number
Norton customer service telephoNe Number
Norton customer support Number
Norton customer support phoNe Number
Norton customer care phone number
coNtact Norton Number customer service phoNe Number
Norton security support phoNe Number
Norton iNterNet security phoNe Number iN usa
Norton coNtact phoNe Number iN usa
Norton tech support phoNe Number free iN usa
Norton customer care phone number support for techNical issue iN usa
phoNe Number for Norton Number techNical support
Norton customer service telephoNe Number
Norton toll free customer care Number
Norton customer service telephoNe Number
Norton support telephoNe Number
Norton support telephoNe Number
Norton Number techNical support phoNe Number
Norton customer care phone number
Norton customer care phone number customer service
Norton antivirus customer support phoNe Number
Norton security phoNe Number customer service
phoNe Number for Norton customer service
Norton Number customer support phoNe Number
Norton Number help desk support phoNe Number free iN usa
phoNe Number for Norton Number techNical support
Norton techNical support Number free iN usa
Norton techNical support cutomer phoNe Number
Norton iNterNet security techNical support
Norton customer support Number
Norton customer service Number
Norton customer service billiNg
Norton customer service email address
Norton customer care phone number customer service us
Norton customer care phone number
Norton antiviru support phoNe Number
Norton tech support phoNe Number
Norton antiviru techNical support Number
Norton telephoNe Number
Norton customer care phoNe Number.__
www.mapmyride.com/.../1851594233
www.mapmyride.com/.../1851594233
medium.com/.../norton-antivirus-customer-support-phone-number-1-844-200-3985-norton-antivirus-customer-c28c62a3de9e
medium.com/.../norton-antivirus-customer-support-phone-number-1-844-200-3985-norton-antivirus-customer-c28c62a3de9e
medium.com/.../norton-antivirus-customer-support-phone-number-1-844-200-3985-norton-antivirus-customer-c28c62a3de9e
www.bookwitty.com/.../5a01e41f50cef7358b04a649
www.surveymonkey.com/.../ZKGN37H
www.mapmyrun.com/.../1851615185
www.mapmyrun.com/.../1851615185
www.mapmyrun.com/.../1851615185
www.bookwitty.com/.../5a01e41f50cef7358b04a649
www.surveymonkey.com/.../ZKGN37H
www.bookwitty.com/.../5a01e41f50cef7358b04a649
www.surveymonkey.com/.../ZKGN37H
Norton toll free customer care Number {{1(,)844(,)200(,)3985}} Norton toll free customer care Number
Norton toll free customer care Number {{1(,)844(,)200(,)3985}} Norton toll free customer care Number
Contact Nℴrtℴn ©™/1844_&200_&3985/ Nℴrtℴn 360 phone number .__New Hampshire Contact Nℴrtℴn ©™/1844_&200_&3985/ Nℴrtℴn 360 phone number .__New Hampshire Contact Nℴrtℴn ©™/1844_&200_&3985/ Nℴrtℴn 360 phone number .__New Hampshire Contact Nℴrtℴn ©™/1844_&200_&3985/ Nℴrtℴn 360 phone number .__New HampshireContact Nℴrtℴn ©™/1844_&200_&3985/ Nℴrtℴn 360 phone number .__New Hampshire Contact Nℴrtℴn ©™/1844_&200_&3985/ Nℴrtℴn 360 phone number .__New Hampshire Contact Nℴrtℴn ©™/1844_&200_&3985/ Nℴrtℴn 360 phone number .__New Hampshire Contact Nℴrtℴn ©™/1844_&200_&3985/ Nℴrtℴn 360 phone number .__New Hampshire Contact Nℴrtℴn ©™/1844_&200_&3985/ Nℴrtℴn 360 phone number .__New Hampshire Contact Nℴrtℴn ©™/1844_&200_&3985/ Nℴrtℴn 360 phone number .__New Hampshire norton internet security contact phone number norton security phone support contact norton by phone norton canada norton virus customer service norton symantec customer service phone number norton 360 tech support number norton 360 helpline phone number phone for norton customer support norton antivirus help phone number norton security help phone number norton antivirus customer care number phone number for norton 360 norton antivirus telephone number customer service norton technical support telephone number norton contact number for customer service norton problems

Ax 2012 R3 Positive Pay Output file extension to CSV.

$
0
0

HI ALL,

I am working on ax 2012 R3.

I have requirement to setup positive pay for bank.

I have managed to do all the setups and able to generate output file as xml file with bank details ,for this I have provided the XSLT file as an input. 

Now I have to generate the CSv file instead of XML..for this I dont know how to change the extension of out put file.

I have tried below XSL output method to change the extension but no use still I am getting XML file.

<xsl:output method="text" encoding="utf-8" omit-xml-declaration="yes"/>

Please suggest if you have any idea how to change the extension of file.

Thanks

Haribabu

Deployment of AX2012 R3 CU12 Demo Environment from LCS only has 20 days left for Windows Server 2012 Licence

$
0
0

Hi,

I deployed a new AX2012 R3 CU12 demo environment to Azure today via the LCS portal but the demo server image deployed only has 20 days left for the Windows Server 2012 license and it can't be extended via "slmgr -rearm" because the "Remaining Windows rearm count" is zero.

Anyone know how to get this resolved?

Thanks,

RV

RE: XDS Security on InventDim / InventSum

Viewing all 175888 articles
Browse latest View live


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