Related Articles
alter table and make id as auto increment
ALTER TABLE internal MODIFY COLUMN id INT(32) NOT NULL auto_increment PRIMARY KEY;
Fixed Floating sidebar using HTML and CSS
By using simple HTML and CSS you will get Fixed Floating Right side bar and you can also make customization to it. Copy the code from the below Textarea box and see <br /> <br /> <html><br /> <head><br /> <br /> <script type=”text/javascript”><br /> function load()<br /> {<br /> document.getElementById(‘abc’).style.right=’25px’;<br /> }<br /> </script><br […]
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 […]