Skip to main content
10-Marble
September 3, 2025
Solved

WT part attributes linked to SAP in Windchill

  • September 3, 2025
  • 1 reply
  • 525 views


Hello,
The Windchill WT part has the Classification attribute that is connected to the SAP side.
It received the data from SAP side every time the  WT part webpage is accessed.
But the WT part webpage loads all attributes immediately and takes time to pull the data from SAP side for classification attributes.  (Attached screenshot for reference)

As of now the WT part at any state pulls the classification data from SAP.

My goal is that the WT part at Released lifecycle state must store the classification attribute and need not connect to the SAP. Only the WT part at 'in progress' state must pull data from SAP.

Kindly suggest how can this be achieved ?

RT_11397061_0-1756915982945.png

 

Best answer by HelesicPetr

Hi @RT_11397061 

Is it OOTB solution? or do you use any customized DataUtility? also what type of attribute do you use? 

I would write a DataUtility where I would read a local attribute value if is not there check a part state if it is in progress load it from the SAP if it is released and local value is empty, load it form sap and save locally and use it next time if you loading the page.

 

Yes you have to write own code to do so.

PetrH

1 reply

HelesicPetr
22-Sapphire II
22-Sapphire II
September 5, 2025

Hi @RT_11397061 

Is it OOTB solution? or do you use any customized DataUtility? also what type of attribute do you use? 

I would write a DataUtility where I would read a local attribute value if is not there check a part state if it is in progress load it from the SAP if it is released and local value is empty, load it form sap and save locally and use it next time if you loading the page.

 

Yes you have to write own code to do so.

PetrH

10-Marble
September 5, 2025

Hi @HelesicPetr ,
Its not OOTB solution. Its customized to pull the data from SAP.
Yes I will test this on the development environment for now.
Thank You.