When we convert a demand to safe epic(Having safe epic plugin) we are not populating the portfolio field so the epic is not syncing automatically after conversionDescriptionWhen we convert a demand to safe epic(Having safe epic plugin) we are not populating the portfolio field so the epic is not syncing automatically after conversion.Steps to Reproduce Setup assumptions: 1. We assume that customer has installed all the below apps: Agile - Scaled Agile Framework - Portfolio SAFeAgile - Scaled Agile Framework - Essential SAFeAlignment Planner Workspace (v4.0.0)Alignment Planner Workspace integrations for PPM and Agile 2.0 (v3.0.1)PPM Standard 2. We assume customer has an integration between alignment planner workspace and PPM, SAFe. Customer has table maps for dmn_demand, sn_safe_epic and portfolio. Steps to reproduce: 1. Create a demand(dmn_demand record) with the type as SAFe epic and populate a value in Portfolio field.2 Convert the demand to safe epic by clicking related link 'Create SAFe Epic'. Expected: the portfolio field should be populated and the SAFe epic should be interfaced to alignment planner workspace.Actual: The SAFe epic is not populating the portfolio rather it is populating planning org filed.Workaround-> Open the AgileDemandConversionUtil script include. -> Locate the below mentioned code snippet in the existing script include.var demandFieldValue = { "fieldName": "demand", "fieldValue": current.getValue("sys_id") }; -> After above mentioned code snippet please add below mentioned code snippet. var portfolioFieldValue = { "fieldName": "portfolio", "fieldValue": current.getValue("portfolio") }; -> And also portfolioFieldValue should be pushed to preFields array. So locate below mentioned code snippet in script includeif (JSUtil.nil(preFields)) preFields = [demandFieldValue]; else preFields.push(demandFieldValue); -> Add below mention one liner to push the value of portfolioField in preFields array. preFields.push(portfolioFieldValue);Related Problem: PRB1553482