hi guys
little correction its not a job it is class and am trying to call that class using custom web service integration.
succesfully am able create the order and now i have to save the data in the form
here is the code that i have used
args.name(formStr(InventTransferOrders));
args.caller();
args.record(InventTransferLine::find(inventTransFerLine));
formRun = ClassFactory.formRunClass(args);
formRun.init();
formRun.run();
for (int i = 0; i <= formRun.dataSourceCount(); i++)
{
if(formDataSource.table() == tablenum(InventTransferLine))
formDataSource = formRun.datasource(i);
formdatasource.validateWrite();
}
when i click the save button manually it hits the formdataource.inventTransFerLine.validatewrite()
here am able to call that method but its not performing the standard validation