Hello @Archana Metkari,
There is no direct out-of-the-box transformation in ADF, but I have done it using the Derived Column Expression, Please have a look at the below DataFlow, I hope it may be helpful with your initial query!
In the Derived Column, i have mentioned something similar to capture the XML formatted tag value.
'<salesheader SysRowID="' + toString(SysRowID) + '" LSN="' + LSN + '" LastProcessedChangeDateTime="' + toString(LastProcessedChangeDateTime) + '" DataLakeModifiedDateTime="' + toString(DataLakeModifiedDateTime) + '" RecID="' + RecID + '" LINEDISC="' + LINEDISC + '"/>'
Please check the below Data Flow for more info.
Source is as usual to read the CSV file.
Use the Derived Column Transformation.
Use the Sink as usual to map the Derived Column in the Sink.
Sink: Mapping:
As you can see my output is in XML tag format which I will use for further processing!
If the response is helpful, please click "Accept Answer" and upvote it. So that we can close this thread.