Posts

Showing posts from January, 2024

File upload as parameter on batch job parameter

Image
File upload as parameter on batch job parameter: Sometimes at run time, while running batch job we need to execute set of records through batch job. I  my case, I want to update setup of customer details using batch job. So for that I have created batch job and on batch job parameter, I will upload set of customer using file and batch job will update only those uploaded customer details instead of entire customer. Batch job parameter: Objects: 1. Contract class: XXX_CustomerStatmentReportContract [   DataContractAttribute,     SysOperationContractProcessingAttribute(classStr(XXX_CustomerStatmentReportUIBuilder)) ] public class XXX_CustomerStatmentReportContract {     AccountNum  accountNum;     boolean     includeAllCustomer;     container   storageResult;     [DataMemberAttribute,SysOperationLabelAttribute(literalStr("@XXX:CustomerEmailUpdateUpload")),SysOperationDisplayOrderAttribute('2...