This is what I suspected.. When ResolveToDataset is false (as I understand) you have a couple of ways to proceed for custom updates (e.g. read only views).. 1) intercept control at the OnUpdateData which gives you access to the entire delta packet.. you could, for example, send this off through an xml-rpc call to a java program running on the Oracle box.. 2) intercept control via the BeforeUpdateRecord event which gives you control at each dataset.. (once for the master, once for each child below the master, etc).. this is where I usually intercept and either employ a custom resolver strategy or pass to a stored proc.

thanks for the info -


david buitenveld