web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id :

Community blogs

Featured

Latest blog posts

View all
Like (0)
AX 2012 - SFTP Download

SFTP service of one of our customers had upgraded. Old code had been written with Tamir.SharpSSH.DLL which didn't upgraded since 2007. Unfortunately service won't work with Tamir anymore, given with "Tamir.SharpSsh.jsch.JSchException:...

metin emre 502
Like (0)
AX 2012/365 F&O - Settle customer/vendor transactions

   public static void settlement(CustVendTransOpen _trans1,CustVendTransOpen _trans2,        CustVendACType _type = CustVendACType::Vend)    {        Cu...

metin emre 502
Like (0)
D365 F&O - Add right-click popup menu to form control

 In 2015 I shared a sample  about this issue which run both of AX 2009 and AX 2012. Seem Microsoft decided to change this too with 365, so that code doesn't run on 365 anymore. Microsoft shared a white page as before-after, I learned...

metin emre 502
Like (0)
AX 2012 - Send filter with args

 If your filter just one record, you can run filter with args.record(). In the other case if you have to filter more than one record, you can't use record method. You can use InitialQueryParameter for this:      &...

metin emre 502
Like (0)
AX 2012 - Using Rest Api with AX

One of the our customers of AX partner which I work AGC Software applied a service requires using Rest Api. I found different samples on forums and blogs about AX 2012 but succeeded none of them. At that point I dediced to start from beginning. At...

metin emre 502
Like (0)
AX 2012 - Workflow form open error

 At one of our customers Workflow wasn't opening. Also error message wasn't so much explaining:After a review of Event log, couldn't find any log about this error. Tried all suggested solutions at web, still no success:-Incrementa...

metin emre 502
Like (0)
Axapta - Usable functions for queries

Thanks for that great page:https://thwidmer.wordpress.com/2013/07/31/function-to-use-in-queries-filters/

metin emre 502
Like (0)
AX 2012 - Add computed column to view.

When we add a computed column to AX view what we do actually is adding extra keywords to SQL Server view without any errors.First we add a table method to AX view:public static server str SNBisBuggedReverse(){return strFmt("select top 1 sign(...

metin emre 502