I hope somebody knows something that can help me out here.
I’m in the process of building a CRM system in Notes 6.5, and I have one NSF which contains Regions (each Region contains a tex list of countries, taken from a profile document). In another database, when creating a Customer, the user must select a region. What I wat is for them to select a region name (which works already) and then have the UNID of that region placed into a field.
The only way I’ve managed to do this is with a double forall (pseudo-code):
forall entries in Regions field
forall regiondocs in a certain view
if regiondocs.Name=entries then
append the UNID to a field
end if
end forall
end forall
This seems horrbly inefficient, and in fact takes a noticable amount of time to run when using lots of data. Is there an easier way to accomplish the same thing? Thanks!
Chris, the rookie in WAY over his head…