Skip to main content
Solved

Copy Paste fails to save on third layer master-detail-detail screen


aaghaei
Captain II
Forum|alt.badge.img+10

I have customized Acumatica’s Cost Projection Screen (PM305000) as follow

 

It basically have added a second grid to “Revision Log” as child to “Projection Line” grid to keep the history of changes on projection lines. Also I have customized Acumatica’s standard copy paste function to copy the “Revision Log” to the new projection revisions. The method code is as follow:

 

        protected virtual void CreateNewProjectionWithLog(PMCostProjection original, PMCostProjectionCopyDialogInfo info)
        {
            PMCostProjection newDoc = new PMCostProjection();
            newDoc.ProjectID = original.ProjectID;
            newDoc.ClassID = original.ClassID;
            newDoc.Description = original.Description;
            newDoc.RevisionID = info.RevisionID;

            CostProjectionEntry target = PXGraph.CreateInstance<CostProjectionEntry>();

            target.Clear();
            target.SelectTimeStamp();

            newDoc = target.Document.Insert(newDoc);

            foreach (PMCostProjectionLine line in Base.Details.Select())
            {
                    PMCostProjectionLine copy = (PMCostProjectionLine)Base.Details.Cache.CreateCopy(line);
                    copy.RevisionID = newDoc.RevisionID;
                    copy.NoteID = null;
                    copy.Mode = ProjectionMode.Manual;

                    copy = target.Details.Insert(copy);
                    copy.Mode = line.Mode;

                target.Save.Press();
                foreach (UDCTPMCostProjectionRevisionLog log in RevisionLogsView.Select())
                    {
                        UDCTPMCostProjectionRevisionLog logCopy = (UDCTPMCostProjectionRevisionLog)RevisionLogsView.Cache.CreateCopy(log);
                        logCopy.RevisionID = copy.RevisionID;
                        logCopy.LineNbr = copy.LineNbr;
                        logCopy.NoteID = null;

                        logCopy = RevisionLogsView.Insert(logCopy);
                        target.Save.Press();
                }
            }

            target.Save.Press();
            PXRedirectHelper.TryRedirect(target, PXRedirectHelper.WindowMode.Same);
        }

 

My copy operation successfully copies Projection Document (Acumatica Table) and Projection Line (Acumatica Table) but fails to “SAVE” the Revision Log (Custom Table) . Can someone shed some light what I’m doing wrong?

Best answer by darylbowman

Ok, yeah. You should get the graph extension from 'target' with:

var targetExt = target.GetExtension<yourGraphExtension>();

Then:

logCopy = targetExt.RevisionLogsView.Insert(logCopy);
target.Save.Press();

 

View original
Did this topic help you find an answer to your question?

7 replies

Leonardo Justiniano
Jr Varsity II
Forum|alt.badge.img+4

Change

newDoc = target.Document.Insert(newDoc);

for

target.Document,Current =  target.Document.Insert(newDoc);


aaghaei
Captain II
Forum|alt.badge.img+10
  • Author
  • Captain II
  • 1204 replies
  • April 6, 2022

Thank @Leonardo Justiniano 

My Document is inserted and saved as Lines do. My issue is on the third table “RevisionLogsView” which is not been saved. By the way I tested your suggestion but it didn’t work.


darylbowman
Captain II
Forum|alt.badge.img+13

I believe this is incorrect, unless I’m misunderstanding your situation:

logCopy = RevisionLogsView.Insert(logCopy);
target.Save.Press();

 

I believe it should be:

logCopy = target.RevisionLogsView.Insert(logCopy);
target.Save.Press();

 


aaghaei
Captain II
Forum|alt.badge.img+10
  • Author
  • Captain II
  • 1204 replies
  • April 6, 2022

Thank you @darylbowman  

 

“target” is Acumatica’s original graph. “RevisionLogsView” doesn’t exist in that graph. It is a dataview in my graph extension.


darylbowman
Captain II
Forum|alt.badge.img+13

My mistake. I believe you’d want:

logCopy = RevisionLogsView.Insert(logCopy);
Base.Actions.PressSave();

 


aaghaei
Captain II
Forum|alt.badge.img+10
  • Author
  • Captain II
  • 1204 replies
  • April 6, 2022

@darylbowman  I have tried this and I get an error “Error: Another process has updated the 'PMCostProjection' record. Your changes will be lost.”


darylbowman
Captain II
Forum|alt.badge.img+13
  • 1718 replies
  • Answer
  • April 6, 2022

Ok, yeah. You should get the graph extension from 'target' with:

var targetExt = target.GetExtension<yourGraphExtension>();

Then:

logCopy = targetExt.RevisionLogsView.Insert(logCopy);
target.Save.Press();

 


Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings