Client will give us the Excel file Format shown above .. We will run our JOB which will read the excel and store the values in the Table in the Table in the pattern shown ......
PROBLEM .. At the moment my job simple copy pastes into the table... How can I modify my job so that the above 1 Excel Record is classified and then stored as 4 Records into the AX Table... I reckon below part of my job needs to be modified
// Just Example Codes.....
table1.clear();
table1.initValue();
table1.Lname = excel.fieldValue(1);
table1.Fname = excel.fieldValue(2);
table1.Salary = str2int(excel.fieldValue(3));
table1.Lname = excel.fieldValue(4);
HELP please