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

RE: POS Fee Collection

$
0
0

I'll try to share some of what I know about this process. I do not know if it will be suitable for the country you want to implement.

In Brazil, we work in the following scenario, homologated and defined according to location-specific rules and central bank authority.

The Microsoft Brazilian localization offers an "plug-in" with a brazilian partner that interfaces with several credit card operators (Visa, Mastercard, American Express, Telecommunications companies for mobile phone credit...).

Payment POS is made by this credit card service. The service only sends to POS if the payment with the card was approved or not, to finalize the purchase. This service does all the management with the credit card operators and offers reports for auditing and conferencing.

In the next day, following the operation, the payment of credit card transactions is deposited to the company's bank account by the card operators (totalized by the number of transactions, or transaction by transaction, depends on the card and the type of transaction.). A bank file statement is import and performed to reconciliation values with AX.

Also check this links with related subjects:

http://gyaneshmsd.blogspot.com.br/2016/10/payment-methods-configuration-in.html

https://technet.microsoft.com/en-us/library/jj680904.aspx

https://community.dynamics.com/ax/f/33/t/241318

https://blogs.msdn.microsoft.com/axsa/2013/01/08/importing-credit-card-statements-into-microsoft-dynamics-ax-2012-using-aif-and-transformation-library/

https://technet.microsoft.com/en-us/library/jj729753.aspx

I Hope this Helps!

Regards,

Rodolfo Recalde.


POS Fee Collection

$
0
0

I'm sorry if this has been asked, but I can't find a search function on this forum. I just joined today. We are implementing AX 2012 and also looking at a possible new POS system. I've been tasked with looking into Dynamics for Retail as an option. One key feature we need is for the daily deposit to include the full price of the sale and then a separate transaction to the credit card processor to pay the fee. For example, let's say we have a $100 purchase and the credit card fee is $3. Most processors will skim the fee and deposit $97. In our case we require the full $100 to be deposited and then a separate transaction where we pay the $3 fee. Does anyone know if Dynamics will allow this?

RE: How to close opened from using X++

$
0
0

static void _Product(Args _args)

{

   EcoResProduct    product;

   DetailsTable   DetailsTable;

   Contract    contract;    // Class

   Model2       Model2;   // Class

   Table2        Table2;    // Table

   Args                            args;

   contract= new Contract    ();

   Model2= new Model2();

    args = new Args();

   while select DetailsTable where DetailsTable .EcoResCategory !=0

   {

       select product

           where product.DisplayProductNumber == DetailsTable .ProductCode

                               && product.DisplayProductNumber == "ABC";

       if (product)

       {

           args.record(product);

           contract.parmRecId(args.record().RecId);

           contract.parmArgs(args);

           Model2.Data(contract);

       }

   }

}

This is my complete code and Model2 is class where I am doing operation on this product. Model2.Data(contract) is the method from where its calling menu item for every record processed.

Actually this operation is performed from button click from product details form. But we have to do this for more than 500 records so its time consuming to do that one by one to all product .

In production we don't have any option to make change in  Model2 class .

@Rudi I already tried code suggested by you earlier with FormRun.Run().

But this not worked .

Actually form is opened by class not from Job code.

How to close opened from using X++

$
0
0

Hi ,

I am running a custom class in JOB . In class we are calling one Action menu item after completing the process. This is ok when user doing this process from Client .

But we have to do this process on more then 500 records. For every record its calling the menu item .

Any option to close that menu item before my second records is selected for process.

I already tried the below code

args.name(formstr(EcoResProductListPage));

formRun = ClassFactory.formRunClass(args);

formRun.init();

 

formRun.close();

RE: How to add new user defined project stage AX 2012

$
0
0

Hi,

By default D365FO ships with 3 additional project stages. Have you used all of them and need an additional one? If this is not the case then I would suggest that you use those standard stages.

Best regards

Ludwig

RE: How to add new user defined project stage AX 2012

$
0
0

Hi Ludwig,

I used the 3 additional project stages and need to add additional one. I am working in AX 2012. Any suggestions will be greatly appreciated.

Thanks

Sreeni

RE: AX 2009 Sales Return Tax Calculation

$
0
0

Hi,

If the calculated tax is not exactly identical then you should be able to overwrite the calculated tax in the invoice form via the sales tax form available there.

Have you tried doing that?

Best regards

Ludwig

RE: How to close opened from using X++

$
0
0

what code is written in data method of classs model 2?


RE: Fixed Assets with Status Not Yet acquired not appeared in "Fixed Assets not Acquired" form

$
0
0

Hi Nada,

There seems to be an update problem in your form. I would suggest that you talk to a developer and explain him what you wrote here. A developer should be able to quickly update all of your records to get this fixed.

Best regards

Ludwig

Fixed Assets with Status Not Yet acquired not appeared in "Fixed Assets not Acquired" form

$
0
0

There are Fixed Assets with status "Not Yet Acquired" in the Fixed Assets List but they don't appear in the Form Called "Fixed Assets Not Acquired" opened from screen path Fixed Assets Module>> Common>> Fixed Assets>> Fixed Assets not acquired

  

RE: How to close opened from using X++

$
0
0

Hi Sukrut,

model 2 class doing some customization on product and then its calling Menu item

MenuFunction(MenuItemDisplayStr(EcoResProductListPage),MenuItemType::Display).run();

model 2 class is ok we don't have to make any change in that class.

RE: KPI in Role centers

$
0
0

Hi Ludwig,

Tnx for your response, yes i checked it and we  implement some role centers already, but can you provide me mere details about setting goals for kpis?

RE: KPI in Role centers

RE: How to add new user defined project stage AX 2012

$
0
0

Hi Sreeni,

This requires some development. I consequently reclassified your post to SDK so that some development experts can identify it and give your some feedback how to get this resolved.

Best regards,

Ludwig

RE: KPI in Role centers


KPI in Role centers

$
0
0

Hi all,

we are going to implement role center in our company, as you know we have  key performance indicators lists that is shown in some roles, i just need to know goals are populated from where and how it can be managed? cause we are not using budgeting module yet it is not clear for me.

RE: Sales Credit Note on T&M project

$
0
0

Hello Sam,

Have you been able to get this issue resolved?

Best regards,

Ludwig

Sales Credit Note on T&M project

$
0
0

Hi,

If my project is T&M, is the billing rule definition in the contract a required step to be able to generate invoice proposals? 

Thanks

Sam

RE: Customer lookup form customization AX7

$
0
0

Hi TomC. ,

You need to look at AmbiguousReferenceResolver class PKReferenceQuery and AlternativeReferenceQuery methods. There you will find next line

filterValue = SysQueryRangeUtil::literalFilterValue(_userEnteredValue) + "*";

As you can see "begins with" is hard coded there, so you need to extend this method to add new behavior.

AX Crashes when open any table on AOT

$
0
0

Hi Experts 

when i'm trying to open any table on  tables node on AOT 

AX closes . 

- there is no customization changes done 

- i tried to use record info  form to rename purchase order number  

-i restated servers and run script to re-index this table .  

- AS service is running 

the event viewer showing these messages : 

Application: Ax32.exe
Framework Version: v4.0.30319
Description: The process was terminated due to an unhandled exception.
Exception Info: System.AccessViolationException
at <Module>._wWinMainCRTStartup()

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

Faulting application name: Ax32.exe, version: 6.2.1000.4051, time stamp: 0x5272b5ea
Faulting module name: MSVCR90.dll, version: 9.0.30729.8387, time stamp: 0x51ea24a5
Exception code: 0xc0000005
Fault offset: 0x00059e74
Faulting process id: 0x24fc
Faulting application start time: 0x01d3ba8cc0127b32
Faulting application path: C:\Program Files (x86)\Microsoft Dynamics AX\60\Client\Bin\Ax32.exe
Faulting module path: C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.8387_none_5094ca96bcb6b2bb\MSVCR90.dll
Report Id: 1ccc8e88-2680-11e8-80f5-3ca82a0d24cf
Faulting package full name:
Faulting package-relative application ID:

any suggestions please 

Viewing all 175888 articles
Browse latest View live


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