Demand T-Shirt size on PRJ

Michael Bachme1
Kilo Guru

I am trying to get some fields from the DMND record copied to the PRJ artifact. So far I have been able to get most fields added with appropriate data. Now I am having issues getting the Demand T-Shirt size to come over. I tried configuring the form to display the "Demand.T-Shirt size" field on the Score section, but the field does not even appear. What am I missing?

3 REPLIES 3

amaradiswamy
Kilo Sage

Hi Michael,

We ran into the same issue, Can you please share the solution if you are able to resolve this issue?

 

We created a T-Shirt size field, similar to that on the dmn_demand table. Then added the following calculation:

 

(function calculatedFieldValue(current) {

var pts = new GlideRecord('dmn_demand');

pts.get(current.demand);

return pts.size;

})(current);

Abbie Van Ruth
Giga Contributor

According to the thread below, there was a bug in Madrid where demand T-Shirt Size couldn't be added to Project, however SN had planned to fix this in the Orlando release:

https://community.servicenow.com/community?id=community_question&sys_id=1dbf6076dbb0fb40fff8a345ca96...