tFlowToIterate vs tIterateToFlow

tFlowToIterate tIterateToFlow
This component is used to read data line by line from the input flow and store the data entries in iterative global variables. Allows you to transform non processable data into a processable flow.
tFlowToIterate is used to convert a data flow represented as rows of data into an iterable format, such as an array or a list. tIterateToFlow, on the other hand, is used to convert an iterable data structure, such as an array or a list, back into a data flow represented as rows of data.
This component takes an input data flow and outputs a single row that contains all the values from the input rows in an iterable format. This component takes an input iterable data structure and outputs multiple rows, each containing the values from the input data structure.
This is useful when you need to iterate over the data flow in a subsequent component. This is useful when you need to convert an iterable data structure into a format that can be processed by subsequent components.