Community Tip - Visit the PTCooler (the community lounge) to get to know your fellow community members and check out some of Dale's Friday Humor posts! X
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 ?
Solved! Go to Solution.
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
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
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.