I want to save generated text file in 'FILES' section on the Acumatica page, by clicking on the action 'Save File Up There'. This is my current code for generating the text file:
string[] lines = { fileLine1, fileLine2, fileLine3 };
File.WriteAllLines(path, lines);
This just generates a text file in the specified path on my machine.
Screenshot of the Batch Payment Screen
Any help would be appreciated.