hexagon logo

Reporting in Loops and Patterns

Hello all, I'm back.Wink

The organization I'm at currently likes to run multiple parts in programs using "Paste with Pattern". I'm writing a program that measures 4 parts, and I would like it to print 4 clean reports. If I use 4 "PRINT/REPORT" commands, I worry the the report for the second part will include all the dimensions for the first part, the third including the first and second, and the fourth including the first second and third. Is there a command to clear the report buffer after each printing so that this doesn't happen?

extra credit: The reason my org pastes with pattern is because they have trouble make loops cooperate. They get the DCC to repeat the measurements and the reports execute, but the actuals in all the dimensions are in relation to the alignment of the first part. So if a program measured three 1-2-3 blocks, and DIM1 was the x coordinate of a point on the 2in side, the third part's actual would be 6in rather than 2in. There is an alignment in the loop, it references an alignment outside the loop, and to my recollection I believe its comprised of features within the loop. I cant manage to work out what is impeding this process. I'd post code but I don't have it handy, I'm weekend shift and they are weekday shift.



Years ago, these would have been short work for me, but I have been in the Calypso, CMM-Man, and OGP ecosystems since then and I am just now dipping my feet back into PC-DMIS. Any help would be appreciated.
  • Well, I just tried running my program as is, and it appears as though it worked the way I desired to. Now I'd like to know how and why it did so. Another question would be, If i actually wanted it to behave as I described above, what would I need to change. Does a command actually exist to just clear a report without outputting anything?

    Ok, now for the extra credit question.
  • The PRINT sets internals and any following PRINT will only output commands executed since the prior PRINT.
  • The PRINT sets internals and any following PRINT will only output commands executed since the prior PRINT.


    Ok, this helps me with my immediate problem, thank you. Just to help me further understand what's going on, let's say in the future I wanted a cumulative printout that included all previous iterations every time a new iteration is executed. So, the exact situation I was worried was going to happen in my original post. What would I have to change to bring that result about?
  • Have 1 PRINT command at the end of the PRG.
    If you wish to retain all prints but have another containing all executed items, insert a REPORT/TEMPLATE command using the report template desired with the INSERT mode at the end of the PRG. This should populate the template with all data which was executed.
    Followed by a PRINT command or if none, pcdmis will use the defined report output the user has set by the setup dialog.