You need to sign in to do that
Don't have an account?

Invalid type Error
i have custom controller with following signature
public with sharing class ScheduleRebillingCycle implements Schedulable
But when i try to instantiate it in other controller like below
ScheduleRebillingCycle ss = new ScheduleRebillingCycle();
It give me error "Invalid type: ScheduleRebillingCycle"
Please somebody help me how i can fix it.
Thanks,
Shahab
public with sharing class ScheduleRebillingCycle implements Schedulable
But when i try to instantiate it in other controller like below
ScheduleRebillingCycle ss = new ScheduleRebillingCycle();
It give me error "Invalid type: ScheduleRebillingCycle"
Please somebody help me how i can fix it.
Thanks,
Shahab
public ScheduleRebillingCycle(List<Rebilling_Cycle__c> cycles, Boolean isBatchFile)
And i have tried following but still same problem
ScheduleRebillingCycle cycle = new ScheduleRebillingCycle(cycleTest, isFromBatchFile);
Thanks,
Balaji