May 2012
M T W T F S S
« Apr    
 123456
78910111213
14151617181920
21222324252627
28293031  

Recent Posts

Archives

Analytical Accounting

Page 9 of 21« First...567891011121314...20...Last »

On the complicated name “Jivtesh”

My parent’s gave me a “unique” name, and it has been an entertaining journey since. I am sure others out there with complicated names have similar stories. Feel free to share in the comments! In school, my friends thought “ Jivtesh ” rhymed with “ Givetake ”, and that stuck Continue reading

Analytical Accounting Security Tasks and Security Roles issue

While working on a case recently with a colleague we noticed that a user received a security privileges error for some windows which were part of Analytical Accounting.  We used the Support Debugging Tool's Security Information window to have a look at what was happening and found that there were Security Tasks and Security Roles set up for Analytical Accounting, but due to some data issues they were not working properly. You can see the problems if you run the following queries in the DYNAMICS database: select * from SY09100 where SECURITYROLEID like 'AA%' select * from SY10600 where SECURITYROLEID like 'AA%' select * from SY09000 where SECURITYTASKID like 'AA%' select * from SY10700 where SECURITYTASKID like 'AA%' Look closely at the returned data and you can see the SECURITYROLEID for AA CLERK* has an extra space before CLERK (two spaces rather than one) in the SY09100 table. Also the SECURITYTASKID for AADEFAULTUSER* has a space before the asterisk (*) in the SY10700 table Continue reading

Everything Dynamics GP #26

DYNAMICS GP POST OF THE MONTH -  21 Reasons why every workstation should have the Support Debugging Tool installed . Pure Gold, easy to understand with lots of examples. In other news, ZDNet picked up my video -  How Microsoft's Kinect could bring gesture recognition to business apps | ZDNet , (via ZDNet picks up on Dynamics GP MVP's Kinect and Dynamics GP demo ) Continue reading

Using Gestures with Business Analyzer for Dynamics GP

When Kinect for XBOX came out last year, I immediately fell in love with it. Wii was good, but Kinect was a whole different ball game. All my friends wanted to have a go at each other in Boxing, Bowling and everything else Continue reading

Vendor Notifications on EFT Bank Transfer

  I got a request from one of my clients to notify vendors by mail once they release his payment to the EFT bank, where I had to create a trigger on CM20202 to monitor payments and send the mail to the vendor, below the script I used: Create TRIGGER dbo.SendVendorMails    ON  dbo.CM20202    FOR INSERT AS BEGIN   DECLARE @MAILPROFILE VARCHAR(8000) DECLARE @ToMAIL  VARCHAR(8000) DECLARE @MESSAGE     VARCHAR(8000) DECLARE @HEADER         VARCHAR(8000) SET @HEADER = 'Payment Transfer' SET @MESSAGE = 'Dear Esteemed Vendor,' + char(10) + char(10) + 'Kindly be advised that we have processed payment with the amount of (' + CONVERT(VARCHAR(500), (SELECT Checkbook_Amount FROM INSERTED)) + ') to your account. ' + char(10) + char(10) + 'Your kind confirmation of subject payment to the following email is highly appreciated ( payables@XXXX.com)' + char(10) + char(10) + char(10) + 'Regards,' + char(10) + char(10) + 'Accounts Payable Unit' + char(10) SELECT @ToMAIL = COMMENT1 FROM PM00200 WHERE VENDORID = (SELECT CustomerVendor_ID FROM INSERTED) SET @MAILPROFILE        = 'Administrator' EXEC msdb.dbo.sp_send_dbmail @Profile_Name = @MAILPROFILE, @recipients = @ToMAIL, @body = @MESSAGE, @subject = @HEADER; END Note: the vendor e-mail address was saved in COMMENT1 field in the vendor card, you can modify the query to pull vendor mail from different field. Regards, -- Mohammad R Continue reading

Recovered!

  Last couple of months, I been very very very much engaged, mainly with the below: 1. Did huge enhancements to my house, it took me around 21 days to finalize. 2 Continue reading

Taking A Much Needed Break

As you all know by now, I have not been active on my blogging due to a very stringent schedule for past 5 months. And I had been burning my energy for past 2 years without a halt Continue reading
Page 9 of 21« First...567891011121314...20...Last »