<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How do I get ReleaseNotice objects using JAVA? in Windchill Customization</title>
    <link>https://www.ptcusercommunity.com/t5/Windchill-Customization/How-do-I-get-ReleaseNotice-objects-using-JAVA/m-p/826137#M2790</link>
    <description>&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;DIV class="lia-message-author-with-avatar"&gt;&lt;SPAN class="UserName lia-user-name lia-user-rank-20-Turquoise lia-component-message-view-widget-author-username"&gt;&lt;A id="link_17" class="lia-link-navigation lia-page-link lia-user-name-link" href="https://community.ptc.com/t5/user/viewprofilepage/user-id/27334" target="_self" aria-label="View Profile of avillanueva"&gt;&lt;SPAN class=""&gt;avillanueva&lt;/SPAN&gt;&lt;/A&gt;, thank you very much for you answer&lt;/SPAN&gt;&lt;/DIV&gt;</description>
    <pubDate>Mon, 26 Sep 2022 12:42:09 GMT</pubDate>
    <dc:creator>VladiSlav</dc:creator>
    <dc:date>2022-09-26T12:42:09Z</dc:date>
    <item>
      <title>How do I get ReleaseNotice objects using JAVA?</title>
      <link>https://www.ptcusercommunity.com/t5/Windchill-Customization/How-do-I-get-ReleaseNotice-objects-using-JAVA/m-p/824275#M2787</link>
      <description>&lt;P&gt;Hello.&lt;BR /&gt;We have an object wt.change2.WTChangeOrder2&lt;/P&gt;
&lt;P&gt;Please tell me how to get its objects that are in the ReleaseNotice?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="VladiSlav_0-1663333075910.png" style="width: 400px;"&gt;&lt;img src="https://www.ptcusercommunity.com/t5/image/serverpage/image-id/65033i53510EDE3BAFD932/image-size/medium?v=v2&amp;amp;px=400" role="button" title="VladiSlav_0-1663333075910.png" alt="VladiSlav_0-1663333075910.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2024 14:07:26 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Windchill-Customization/How-do-I-get-ReleaseNotice-objects-using-JAVA/m-p/824275#M2787</guid>
      <dc:creator>VladiSlav</dc:creator>
      <dc:date>2024-03-15T14:07:26Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get ReleaseNotice objects using JAVA?</title>
      <link>https://www.ptcusercommunity.com/t5/Windchill-Customization/How-do-I-get-ReleaseNotice-objects-using-JAVA/m-p/824293#M2788</link>
      <description>&lt;P&gt;ChangeHelper2.service.getChangeablesAfter(wtchangeorder2)&lt;/P&gt;
&lt;P&gt;There are more useful methods in this server. Look at the Windchill API JavaDoc.&lt;/P&gt;
&lt;P&gt;I searched help docs for "ReleaseNotice", could not find it. Looks that like that is a ChangeNotice unless someone at site renamed it to say ReleaseNotice. Icon is certainly a change notice icon.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2022 13:28:07 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Windchill-Customization/How-do-I-get-ReleaseNotice-objects-using-JAVA/m-p/824293#M2788</guid>
      <dc:creator>avillanueva</dc:creator>
      <dc:date>2022-09-16T13:28:07Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get ReleaseNotice objects using JAVA?</title>
      <link>https://www.ptcusercommunity.com/t5/Windchill-Customization/How-do-I-get-ReleaseNotice-objects-using-JAVA/m-p/826135#M2789</link>
      <description>&lt;LI-CODE lang="java"&gt;public static java.util.ArrayList&amp;lt;wt.part.WTPart&amp;gt; getWTPartFromChangeOrder(wt.change2.WTChangeOrder2 wtChangeOrder2, String possibleStates) throws wt.util.WTException {
        java.util.ArrayList&amp;lt;wt.part.WTPart&amp;gt; wtParts = new java.util.ArrayList&amp;lt;&amp;gt;();
        wt.fc.QueryResult queryResult = wt.change2.ChangeHelper2.service.getChangeablesBefore(wtChangeOrder2);

        while (queryResult.hasMoreElements()) {
            Object obj = queryResult.nextElement();
            String objType = obj.getClass().getName();

            if ("wt.part.WTPart".equals(objType)) {
                wt.part.WTPart part = (wt.part.WTPart) obj;
                if (possibleStates.contains(part.getState().toString())) {
                    wtParts.add(part);
                }
            }
        }
        return wtParts;
    }&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 26 Sep 2022 12:30:49 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Windchill-Customization/How-do-I-get-ReleaseNotice-objects-using-JAVA/m-p/826135#M2789</guid>
      <dc:creator>VladiSlav</dc:creator>
      <dc:date>2022-09-26T12:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get ReleaseNotice objects using JAVA?</title>
      <link>https://www.ptcusercommunity.com/t5/Windchill-Customization/How-do-I-get-ReleaseNotice-objects-using-JAVA/m-p/826137#M2790</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;DIV class="lia-message-author-with-avatar"&gt;&lt;SPAN class="UserName lia-user-name lia-user-rank-20-Turquoise lia-component-message-view-widget-author-username"&gt;&lt;A id="link_17" class="lia-link-navigation lia-page-link lia-user-name-link" href="https://community.ptc.com/t5/user/viewprofilepage/user-id/27334" target="_self" aria-label="View Profile of avillanueva"&gt;&lt;SPAN class=""&gt;avillanueva&lt;/SPAN&gt;&lt;/A&gt;, thank you very much for you answer&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 26 Sep 2022 12:42:09 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Windchill-Customization/How-do-I-get-ReleaseNotice-objects-using-JAVA/m-p/826137#M2790</guid>
      <dc:creator>VladiSlav</dc:creator>
      <dc:date>2022-09-26T12:42:09Z</dc:date>
    </item>
  </channel>
</rss>

