Save As feature

Is it possible to clear an attribute when using the Save As feature to create a new item?

Add Comment
4 Answer(s)

Yes, you may use a PX to ‘fine tune’ the SaveAs feature.

Agile Angel Answered on June 19, 2015.
Add Comment

Yes it is possible to clear attribute value. through Save As Event PX.  You have to set the particular attribute as blank in your PX.

Agile User Answered on June 20, 2015.
Add Comment

I have the same issue before,  I use the event trigger through Save as Event PX , but It must be notice if the old change name:ECO-001, the save as change name :ECO-002. the program get the dataObject is ECO-001. if you want to clean the ECO-002 some attribute where the data is from ECO-001,  currently I get the ECO-001 history  table, and the condition is Action status is Save as and get the Affected Object , it can get the ECO-002.

Agile User Answered on July 22, 2015.
Add Comment

Use this code :

ISaveAsEventInfo info = (ISaveAsEventInfo) request;
info.setCell(....);

Agile Angel Answered on July 27, 2015.
Add Comment

Your Answer

By posting your answer, you agree to the privacy policy and terms of service.