Please someone help me on my embedded view :o(

Hi everyone,

I really need some help on the problem I’m experiencing - it’s really doing my head in. I do apologise if it’s something simple but I just can’t see what is causing the following problem…

Can anyone suggest why when I make a change on my embedded view, the changes dont appear?

I have created a form and inserted an embedded view which displays information regarding which user is assigned to which call problem.

If I go into a field within the embedded form and re-assign a new user to a problem, save the changes, the new user that I had assigned does not appear to have changed. I have also tried hitting F9 and it still remains as the old user. I have noticed that if i go back into the same field to view the assigned users, the change i had made appears.

How do i resolve this problem so that the changes made appear on the embedded view?

I have tried all sorts to get this working but none have worked. I have tried putting the document in edit mode and pressing F9 after saving changes, used @command([ViewRefreshFields]) and just F9 itself etc…

Please someone help me…

BTW this is in Notes…

Any help will be greatly appreciated.

Thanks

Holly

Subject: Please someone help me on my embedded view :o(

Also Try NotesUIView.ViewRebuild method

Subject: Please someone help me on my embedded view :o(

If you are updating the documents by opening then from embedded view, then try the following code

Dim Vu as NotesView

Set Vu = Doc.ParentView

Call Vu.Refresh

Otherwise if you are updating the doc using an action button on the embedded view, then try refreshing the current NotesUIView object after the operation.