Hi, Can anyone help me that how to these activities (UiPath.IntegrationService.Activities.SWEntities.CF9566F41EC_curated_incident_List.Bundle.curated_incident_List) output variable in write line or log message.
Try this:
String.Join(Environment.NewLine, incidentList.Select(Function(incident) $"Incident ID: {incident.Id}, Description: {incident.Description}, Status: {incident.Status}"))
Regards
1 Like
Hi @suman_pulipati ,
Try this
String.Join(Environment.NewLine, incidentList.Select(Function(incident) incident.ToString()))
1 Like
Using list of all incident activities (servicenow) fetching details and out variable is Records_Incident and it showing null in output panel by using ur solution.
Try this:
String.Join(Environment.NewLine, incidentList.Select(Function(incident) "Incident ID: " & incident.Id.ToString() & ", Description: " & incident.Description & ", Status: " & incident.Status))
Regards

