Advertisement
Guest User

Untitled

a guest
May 24th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. 1) Object has autonumber
  2. 2) user creates record for object
  3. 3) entry form opens up and the user fills it out
  4. 4) a trigger is fired on save which turns the autonumber to a text, the trigger then changes the text of the auto number field to the text ([date] + ': ' + Owner.name)
  5. 5) the autonumber is turned back to an autonumber
  6.  
  7. 1) user opens record and fills in a date field (which is the only thing I'm interested in)
  8. 2) The user has to fill in a name field which is unnecessary (for the user, in a mobile setting this is problematic or at least not elegant)
  9. 3) User saves
  10. 4) name field is overwritten (date + ': ' + owner.name)
  11.  
  12. 1) user opens record and fills out date (and does not have to fill out a name field)
  13. 2) user saves
  14. 3) trigger updates "key" field to (date + ': ' + owner.name)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement