Advertisement
f0rsakenbg

Untitled

May 14th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. EventPersonLs1 = compute [list(Person=Result)] where
  2. (
  3. Ppl = m:obj.find ($pckg_007:cl_prsn_events_007, [l_events = Event_oid]) &
  4. Person = get:Ppl.l_prsn &
  5. :Person.get_details (Result)
  6. )
  7.  
  8. -------------------------------------------------------------
  9.  
  10. void get_details (out list Details)
  11. get_details( Prsn ) :-
  12.  
  13. Fnm = get:fnm &
  14. Lnm = get:lnm &
  15. Eml = get:eml &
  16. Bday = get:bday &
  17.  
  18. Prsn = [
  19. Fnm ,
  20. Lnm,
  21. Eml,
  22. Bday
  23. ]
  24. ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement