I have some jobs scheduled on the SAP system. I want to execute the SAP jobs or modify the timings of the jobs. How can I execute the jobs.
I know how to connect to SAP system via .NET Connector.
RfcDestination dest = RfcDestinationManager.GetDestination(rfcConfigParams);
RfcRepository repository = dest.Repository;
IRfcFunction rfcFunc = epository.CreateFunction("TH_GET_USER_LIST");
fcFunc.Invoke(dest);
This way I can call the function module, but don't know how to call SAP jobs.