Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
Show only
|
Search instead for
Did you mean:
This page has been translated for your convenience with an automatic translation service. This is not an official translation and may contain errors and inaccurate translations. Autodesk does not warrant, either expressly or implied, the accuracy, reliability or completeness of the information translated by the machine translation service and will not be liable for damages or losses caused by the trust placed in the translation service.Translate
When a record is cloned, the change log on the new item does not display what record it was cloned from. it just states the record was created. this log should list what item it was cloned from.
You can achieve this by configuration & scripting already with the few steps mentioned below. With this configuration, users will not only find this information in the Change Log, but also have a direct link in the details page to the clone's source:
If this is an option, here are the configuration steps required. In my example, I added this field to workspace Products but you can do the same with any workspace.
In the given workspace, add a hidden field to store the current item's DMSID
Add another read-only field which links the clone to its source. This must be of type pick list for the same workspace.
Place these two new fields anywhere in your details page
During creation of new records, run the following script code to set and use the DMSID field to identify clones and to set the clone's reference automatically. This script code an be included in an onCreate script or in the initial workflow transition's script.
setClonedFrom();
function setClonedFrom() {
if(item.DMS_ID !== null) {
var elem = loadItem(item.DMS_ID);
item.CLONED_FROM = elem;
}
item.DMS_ID = dmsID;
}
these types of work arounds just cause more issues. more fields, scripts, and links cause too many issues. why couldn't the system just log how an item is created? (Cloned from Item XXX)