Hi everybody,
I prepared an attribute rule (batch) that will transfer the attributes in the "OutrunNumber" field in the Device layer to the "OutrunNumber" field in the Electric Line layer. It transfers this information to the line that intersects with the device layer. But the line consists of more than one piece. How can I transfer this information to the following parts?
I want to transfer this information to the green line and the following lines in the screenshot, how can I do this.

var fc_OutRunNumber = FeatureSetByName($datastore, "main.ElectricDevice", ["OutrunNumber"] ,false)
var fc_MVS = Filter(fc_OutRunNumber,"ASSETGROUP in (37)")
var fc_Line_Intersect = Intersects(fc_MVS,$feature)
var fc_Outrun = First(fc_Line_Intersect)
if (fc_Outrun == null) return {"errorMessege": "OutrunNumber Not Found"}
return fc_Outrun.OutrunNumber