Hello,
I'm attempting to build an addin in C# (for EPDM 2011) which copies and pastes references into a DCN (Document Change Notice) in an automated manner, but I'm running into a problem referencing the document in my code; I was hoping to be able to match up the serial number assigned to the document from the serial number generator in the Admin tool to my code, but so far I've only managed to produce another serial number generator which parallels the numbering scheme assigned to the document; I'm wondering if any anyone has any hints as to how to specify a serial number generated in EPDM admin tool to Add-in Code?
Louis,
The serial number generator itself does not track where the serial numbers it issues are used.
What mechanism are you using to assign the serial number to the DCN?
I suspect it ends being being a variable of the DCN document. If that is the case then you need to use the variable APIs to read the value of the variable assigned by the the serial number generator.
I would start at this Method to start getting the variables : IEdmFile5::GetEnumeratorVariable.
Corey V