I have an excel file with me, now i need to read a particular column from that excel file(one by one) and paste it in SAP. ExportFile(09.10.2019).xlsx (5.0 KB) I have attached excel file - i need to copy data from Document ID(one by one0 and paste it in SAP.
Kindly help me with this.
Hi
1.Read your excel and keep in datatable (excelDatatable)
2.Add that particular column in Array using below query in assign operator
documentArr = excelDatatable.AsEnumerable().Select(function(r) r(“Document Id”).ToString).ToArray
3.Now using for each iterate your Array variable(documentVar)
4.Now you can pass the every item one by one in your SAP