
Question:
How can I control changes in SalesLogix , when two users are making changes at the same time???
Answer:
Create a Retry/Cancel loop:
Sub DoSomething
….
Do While FieldStillInUse()
If MsgBox(“The xxx is still in use, do you want to retry”, vbYesNo) = vbNo then
Exit Sub
End If
Loop
‘Out of loop, good to continue
‘Do Mail Merge, etc, etc
End Sub
Function FieldStillInUse
‘Add your test here, if ok to continue return false
FieldStillInUse = result
End Function
Subscribe To Our Newsletter
Join our mailing list to receive the latest Infor CRM (Saleslogix) and Creatio (bpm'online) news and product updates!
You have Successfully Subscribed!