fields!!

Yohn

Member
Hy!
I'm having a problem! This is sample of code:

if available (ev-zaduzenja) THEN

potpis = CAPS(substring(ev-zaduzenja.korisnik,1,1)) + "."
+ CAPS(substring(ev-zaduzenja.korisnik,2,1)) + substring(ev-zaduzenja.korisnik,3).

and I need to print field naziv from table sysKorisnik, but ev-zaduzenja.korisnik = sysKorisnik.naziv. How do I do that?

thx.
 
Your requirement isn't clear. If you need a field from a table other than the current one, then you need to find it. But, if as you seem to say, the value of the field in the other table is the same as a different field in the current table, then why do you need the other table?
 
Back
Top