Guest User

Untitled

a guest
Feb 22nd, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. // Create bean
  2. $testAccountBean = BeanFactory::newBean('Accounts');
  3.  
  4. // Set the new flag
  5. $testAccountBean->new_with_id = true;
  6.  
  7. $id = SugarcrmSugarcrmUtilUuid::uuid1();
  8.  
  9. $testAccountBean->id = $id;
  10. $testAccountBean->name = generateRandomString();
  11.  
  12. $testAccountBeanId = $testAccountBean->save();
  13.  
  14. echo $testAccountBeanId;
Add Comment
Please, Sign In to add comment