Related Articles
How to Know Adsense Earning of an Article or a Blog Page?
If you are a blogger and using Adsense then you can know adsense earning of each page/article by using Google analytics. To know how much each page or article is generating adsense income you must use Google Analytics on your blog or website. Adsense Earning of an Article First Enable AdSense Linking on Google Analytics: […]
On page SEO Checklist
Below is the list of On page SEO Checklist On page SEO Checklist Keyword placement: Keyword in Title Keyword in Permalink Keyword in first paragraph Keyword in Image Alt tag Tweaked Keyword in H2 or H3 Bold Important Keywords and related keywords Italics 1-2 important Keywords Outbound Link to relevant high-quality sites Internal links to […]
Bonitasoft Groovy Scripts to Get Users Data
Using below Groovy Script code you will get the complete information of a particular user in Bonitasoftt To get Manager Email address in Bonitasoft: ${import org.ow2.bonita.facade.IdentityAPI;import org.ow2.bonita.facade.identity.User;IdentityAPI api = apiAccessor.getIdentityAPI();User user = api.findUserByUserName(processInstance.getStartedBy());User manager1 = api.getUserByUUID(user.getManagerUUID());return manager1.email;} To get Professional Email of a user : ${import org.ow2.bonita.facade.IdentityAPI;import org.ow2.bonita.facade.identity.User;IdentityAPI api = apiAccessor.getIdentityAPI();User user = api.findUserByUserName(processInstance.getStartedBy());User manager1 […]