Change ItemType and Affected Item
Good day all. I am working on modifying our change ItemTypes (don't use the OOTB ones). I have been looking at the Simple ECO as an example. Our current changes are associated to a single document/part. So if someone is updating a drawing that affects a part, they would have to submit two changes, it gets worse if this affects multiple things. I would like to modify (or create a new ItemType) these changes to have the Affected Items tab. I have been testing this with a custom ItemType, but am running into problems with the Has Changes getting updated. I looked at Changes Pending in Part post and saw that there were a few Methods that I needed to look at. I modified the Methods PE_update_has_change_pending and PE_ChangeItemTransition to include my change ItemType, but my test document will not get marked as Change Pending. I tested the Simple ECO and it does mark the document. Thank you for any help you can provide.Solved5.6KViews1like6CommentsWhen exposing the affected items tab on express eco I get TypeError: Cannot create property 'width' on string 'image'
Any ideas on how to resolve this? It doesn't seem to affect anything other than UI response after it appears but it is quite an annoyance to anyone that clicks on the tab. I am trying to display some properties for review.3.4KViews1like7CommentsIdentify when affected Items' server methods are being invoked on Express ECO Release/Revise?
I have some Custom BOM Item Types controlled by the Express ECO. On the custom Items we have the on Before Update and On after Update Server Events responsible for formulating the name(based on some specific field values) of these Items. Is there a standard way to ensure that the server methods are not called while the Items are promoted to the released state from the Express ECO(Release/Revise)? P.S. When it is called the On Before Update Method doesn't receive the entire context of the affected Item and sets the name to blank value. Thanks :)Solved1.8KViews0likes1CommentAffected Items List
I am adding the Change Notice information including the affected items to my email notification. My current email message Body Html returns only the first affected item row data. How do I script the Body Html to return each row of the affected items? (loop through the available rows)1.5KViews0likes0CommentsCN ID
I am trying to add the affected_name to my email notification. In the bottom part of this script, how do get the CN id so I am accessing the correct related affected items in the script below? <Item type="a_CN" action="get" select="id,cn_number,title,a_businessunit,customer(keyed_name),top_assy_pn(keyed_name),team_id,change_reason,change_summary"> <id>${Item/id}</id> <team_id> <Item type="Team" action="get"> <Relationships> <Item type="Team Identity" action="get"> <team_role>52C5CF6C021A443D845CF6F623EF48C4</team_role> <related_id> <Item type="Identity" action="get" select="name"></Item> </related_id> </Item> </Relationships> </Item> </team_id> </Item> <Item type="a_CN_Affected_Item" action="get" source_id="${a_CN/id} select="affected_name"> </Item>907Views0likes0Comments