Hi i have a commonad and i am working with C# Legacy

cmcli INS" str_finalresult “ims/cscf/scscf System.SPSConfigTable” Str_ExcelOutput “NetworkIdentifier= EventTrigger=E2 Direction=EGRESS SessionSide=BOTH TriggerPoint=”004030[.Forbidden - 41.]0CSeq[.register.]" ServiceName=sip:mm@localhost;clist=register_resp_code_change ActualVersion=1 ApplicableRoleTypes=SCSCF’

Note:-str_finalresult and Str_ExcelOutput are variables. i want to set this into assign activity Means into another variables but its showing some error please give me some solution

@rakeshcm456

If you need to concatenate two strings you need to use plus sign + between them

Eg : "string 1" + variable1+ "string2" + variable2

Please change accordingly

Cheers

can you please assign for me

Hi @rakeshcm456

"cmcli INS" +str_finalresult +“ims/cscf/scscf System.SPSConfigTable” +Str_ExcelOutput +“NetworkIdentifier= EventTrigger=E2 Direction=EGRESS SessionSide=BOTH TriggerPoint"

@rakeshcm456

Here it is

cmcli INS" + str_finalresult + "ims/cscf/scscf System.SPSConfigTable" + Str_ExcelOutput + "NetworkIdentifier= EventTrigger=E2 Direction=EGRESS SessionSide=BOTH TriggerPoint=""004030[.Forbidden - 41.]0CSeq[.register.]"" ServiceName=sip:mm@localhost;clist=register_resp_code_change ActualVersion=1 ApplicableRoleTypes=SCSCF’"

Cheers