Skip to main content
Solved

Update data one Screen to another Screen

  • February 15, 2023
  • 2 replies
  • 131 views

Hello 

 

I have a new screen and

 

I call with

 

 

var graph = PXGraph.CreateInstance<CrTaskMaintv2>();

Guid noteidL = oppor.NoteID.Value; 

graph.inicializar(noteidL, oppor.BAccountID.Value    );

string screenID = "US306020";

throw new PXRedirectRequiredException(PXSiteMap.Provider.FindSiteMapNodeByScreenID(screenID).Url, graph, PXBaseRedirectException.WindowMode.NewWindow, "Tareas");

 

but from the new instance, I want refresh, grid of activity in CROpportunity

 

I review

https://community.acumatica.com/customizations-187/update-data-one-screen-to-another-screen-8152

 

but don't undertand

Best answer by Patrick Chen

You’re not actually sending the graph object.  Try the following

throw new PXRedirectRequiredException(graph, true, “Tareas”);

2 replies

Patrick Chen
Varsity III
Forum|alt.badge.img+2
  • Varsity III
  • Answer
  • February 16, 2023

You’re not actually sending the graph object.  Try the following

throw new PXRedirectRequiredException(graph, true, “Tareas”);


Yuriy Zaletskyy
Jr Varsity I
Forum|alt.badge.img+3

What is inicializar internals?