Hi @GOKUL35 ,
You can use the below JS in the campaign Workflow to retrieve the Campaign Internal Name
var query = xtk.queryDef.create(<queryDef schema="nms:operation" operation="select"><select><node expr="@id"/><node expr="@internalName"/></select><where><condition expr={"@id = '"+instance.operation_id+"'"}/></where></queryDef>); var eventExistss = query.ExecuteQuery(); for each (var eventT in eventExistss.operation){instance.vars.CampaignInternalName = eventT.@internalName;}
logInfo("Campaign Internal Name: "+instance.vars.CampaignInternalName);