3.1 WarehouseCalloutService ****************************** public with sharing class WarehouseCalloutService implements Queueable { private static final String WAREHOUSE_URL = 'th-superbadge-apex.herokuapp.com/equipment';
//class that makes a REST callout to an external warehouse system to get a list of equipment that needs to be updated. //The callout’s JSON response returns the equipment records that you upsert in Salesforce.
@future(callout=true) public static void runWarehouseEquipmentSync(){ Http http = new Http(); HttpRequest request = new HttpRequest();
if (response.getStatusCode() == 200){ List jsonResponse = (List)JSON.deserializeUntyped(response.getBody()); System.debug(response.getBody());
//class maps the following fields: replacement part (always true), cost, current inventory, lifespan, maintenance cycle, and warehouse SKU //warehouse SKU will be external ID for identifying which equipment records to update within Salesforce for (Object eq : jsonResponse){ Map mapJson = (Map)eq; Product2 myEq = new Product2(); myEq.Replacement_Part__c = (Boolean) mapJson.get('replacement'); myEq.Name = (String) mapJson.get('name'); myEq.Maintenance_Cycle__c = (Integer) mapJson.get('maintenanceperiod'); myEq.Lifespan_Months__c = (Integer) mapJson.get('lifespan'); myEq.Cost__c = (Integer) mapJson.get('cost'); myEq.Warehouse_SKU__c = (String) mapJson.get('sku'); myEq.Current_Inventory__c = (Double) mapJson.get('quantity'); myEq.ProductCode = (String) mapJson.get('_id'); warehouseEq.add(myEq); }
if (warehouseEq.size() > 0){ upsert warehouseEq; System.debug('Your equipment was synced with the warehouse one'); } } }
public static void execute (QueueableContext context){ runWarehouseEquipmentSync(); }
} ---------------------------------------------------------------- After saving the code open execute anonymous window ( CTRl+E ) and run this method , ------------------------------------------- System.enqueueJob(new WarehouseCalloutService());
The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. Could not find a Product2 record named 'UPS 3000 VA' with the correct maintenance cycle and lifespan. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.this type error sir
Challenge Not yet complete... here's what's wrong: The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.
Those who are getting the error about "WarehouseCalloutService class does not appear to have run successfully ", recheck the url in remote site setting
Dont miss the "implements Queueable" beside the "WarehouseCalloutService" class, and then execute the last line of the WonderStudies comment in the anonymous window (Ctrl + E).
Challenge Not yet complete... here's what's wrong: The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully. please answer me
Challenge Not yet complete... here's what's wrong: The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.\ give me solution
Challenge Not yet complete... here's what's wrong: The WarehouseCalloutService class does not appear to have run successfully. Make sure that you run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully. iam facing this error
This schedulable class has jobs pending or in progress - CronTrigger IDs ({0}) - CronTrigger IDs (08edM000003nPOX) got this in problems section what can i do?
Check Scheduled Jobs: Go to Salesforce Setup. Search for “Scheduled Jobs” in the Quick Find box. Look for the CronTrigger IDs mentioned (08edM000003nPOX) to find the specific jobs. Click on del across the job. and try to save and run again.
Challenge Not yet complete... here's what's wrong: The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure X that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully. Then what can I do please reply
If you get error try to clear it . if the error not able to clear just switch to new playground and redo the same process without leaving any single things and then check the challenge again .
Challenge Not yet complete... here's what's wrong: The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully. tried all the solutions but didnt work pls do help sir
Challenge Not yet complete... here's what's wrong: The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.
In the error it give that it can't found warehousecalloutservice Check once which class do you imported once again copy the code and save it and click on runall
After saving the code open execute anonymous window ( CTRl+E ) and run this method , ------------------------------------------- System.enqueueJob(new WarehouseCalloutService());
After saving the code open execute anonymous window ( CTRl+E ) and run this method , ------------------------------------------- System.enqueueJob(new WarehouseCalloutService());
Challenge Not yet complete... here's what's wrong: The WarehouseCalloutService class does not appear to have run successfully. Make sure that you run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.
The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully. not cmoing pls slove it
Challenge Not yet complete... here's what's wrong: The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully. Could you please hlep me bro?
Challenge Not yet complete... here's what's wrong: The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully help me out of this
Challenge Not yet complete... here's what's S wrong: The WarehouseCallout Service class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully. How can it solve brother help
Challenge Not yet complete... here's what's wrong: The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully please provide video sir please
please bro you can explain it (Challenge Not yet complete... here's what's wrong: The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.) now what we doooo?
The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. Could not find a Product2 record named 'UPS 3000 VA' with the correct maintenance cycle and lifespan. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.this type error sir
Challenge Not yet complete... here's what's wrong: The WarehouseCalloutService class does not appear to have run successfully. Make sure that you run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully. Can you help me please
The warehousecalloutservice does not appear to have run successfully.Make sure that you run this class atleast once before attempting this challenge.Since this class is implementing the queueable interface,you may want to wait to ensure that it has processed successfully. Error i got pls anyone help me
IAM NOT SUCCESS IN THIS CHALLENGE STEP 3.GIVE ME SUGGISTION. IAM ALREADY ENTER CTRL+R CODE BUT NO SUCCESS .WOULD YOU PLEASE HELP . IAM NOT YET CHALLENGE STEP 3 I DID TRY SO MANY MORE TIMES. BUT IAM NOT SUCCESS.😥😥😥
i am getting this error in execute anonymous window plz help Line: 1, Column: 1 System.AsyncException: Class WarehouseCalloutService must implement the Queueable interface.
@@challavinay303 04t46000001Zch4 this is the package id step1:go to setup step2:In QuickFing search for Playground Starter and beside the welcome there INstall apackage otion will there in that paste the pakageID 04t46000001Zch4 try this wishing you a good luck i reslove the error so i wishing you too reslove it
Challenge Not yet complete... here's what's S wrong: The WarehouseCallout Service class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully. Error cmggg how can it solve brother
i am getting this error in execute anonymous window plz help Line: 1, Column: 1 System.AsyncException: Class WarehouseCalloutService must implement the Queueable interface.
Challenge Not yet complete... here's what's wrong: The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.
Challenge Not yet complete... here's what's wrong: The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.
Challenge Not yet complete... here's what's wrong: The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.
Challenge Not yet complete... here's what's wrong: The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.
Challenge Not yet complete... here's what's wrong: The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.
Challenge Not yet complete... here's what's wrong: The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.
Challenge Not yet complete... here's what's wrong: The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.
Challenge Not yet complete... here's what's wrong: The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.
Challenge Not yet complete... here's what's wrong: The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.
3.1 WarehouseCalloutService
******************************
public with sharing class WarehouseCalloutService implements Queueable {
private static final String WAREHOUSE_URL = 'th-superbadge-apex.herokuapp.com/equipment';
//class that makes a REST callout to an external warehouse system to get a list of equipment that needs to be updated.
//The callout’s JSON response returns the equipment records that you upsert in Salesforce.
@future(callout=true)
public static void runWarehouseEquipmentSync(){
Http http = new Http();
HttpRequest request = new HttpRequest();
request.setEndpoint(WAREHOUSE_URL);
request.setMethod('GET');
HttpResponse response = http.send(request);
List warehouseEq = new List();
if (response.getStatusCode() == 200){
List jsonResponse = (List)JSON.deserializeUntyped(response.getBody());
System.debug(response.getBody());
//class maps the following fields: replacement part (always true), cost, current inventory, lifespan, maintenance cycle, and warehouse SKU
//warehouse SKU will be external ID for identifying which equipment records to update within Salesforce
for (Object eq : jsonResponse){
Map mapJson = (Map)eq;
Product2 myEq = new Product2();
myEq.Replacement_Part__c = (Boolean) mapJson.get('replacement');
myEq.Name = (String) mapJson.get('name');
myEq.Maintenance_Cycle__c = (Integer) mapJson.get('maintenanceperiod');
myEq.Lifespan_Months__c = (Integer) mapJson.get('lifespan');
myEq.Cost__c = (Integer) mapJson.get('cost');
myEq.Warehouse_SKU__c = (String) mapJson.get('sku');
myEq.Current_Inventory__c = (Double) mapJson.get('quantity');
myEq.ProductCode = (String) mapJson.get('_id');
warehouseEq.add(myEq);
}
if (warehouseEq.size() > 0){
upsert warehouseEq;
System.debug('Your equipment was synced with the warehouse one');
}
}
}
public static void execute (QueueableContext context){
runWarehouseEquipmentSync();
}
}
----------------------------------------------------------------
After saving the code open execute anonymous window ( CTRl+E ) and run this method ,
-------------------------------------------
System.enqueueJob(new WarehouseCalloutService());
When i'm exciting this program its come error. Bro solve the error is unauthorized end point the operator is futurehandler
Give me reply
The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. Could not find a Product2 record named 'UPS 3000 VA' with the correct maintenance cycle and lifespan. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.this type error sir
Challenge Not yet complete... here's what's wrong:
The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.
@@geethaallu1183 warehouse URL is wrong. So its came a error
@@geethaallu1183 do u want solution say hai to my E mail account
Those who are getting the error about "WarehouseCalloutService class does not appear to have run successfully ", recheck the url in remote site setting
Dont miss the "implements Queueable" beside the "WarehouseCalloutService" class, and then execute the last line of the WonderStudies comment in the anonymous window (Ctrl + E).
Hello guys if challenge is not complete then (2:05) ,,give remote site URL in a correct way and do next process ..it works
2:05 what brroo
Thanks bro
Thank you bro
thanks...it worked
@@PoojaJadhav-nl1rh hmm
Challenge Not yet complete... here's what's wrong:
The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.
please answer me
i am also facing same problem to help me to reslove this problem
is the problem resolved?? help me
Line: 1, Column: 1
System.AsyncException: Class WarehouseCalloutService must implement the Queueable interface.
Same problem raised
we have to save the code first and execute the apex code
@@Error-vf5nr Same issue is arising after saving the apex and then executing the code... Is there any other way???
what u presss for geting that enter apex code option in 4:08
Control E
Challenge Not yet complete... here's what's wrong:
The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.\
give me solution
Bro did u get the solution??
Nice Video Bro ...Thanks a lot
Challenge Not yet complete... here's what's wrong:
The WarehouseCalloutService class does not appear to have run successfully. Make sure that you run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.
iam facing this error
This schedulable class has jobs pending or in progress - CronTrigger IDs ({0}) - CronTrigger IDs (08edM000003nPOX)
got this in problems section what can i do?
Check Scheduled Jobs:
Go to Salesforce Setup.
Search for “Scheduled Jobs” in the Quick Find box.
Look for the CronTrigger IDs mentioned (08edM000003nPOX) to find the specific jobs.
Click on del across the job. and try to save and run again.
Challenge Not yet complete... here's what's wrong: The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure X that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully. Then what can I do please reply
Don't copy paste everything given.just copy the code to the end of the braces.
@@keerthanakancharla9778 code send chayara please
i have also same issue please any one tel me anyone how to slove
If you get error try to clear it . if the error not able to clear just switch to new playground and redo the same process without leaving any single things and then check the challenge again .
Challenge Not yet complete... here's what's wrong:
The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.
tried all the solutions but didnt work pls do help sir
same problem
Same problem
Redo again in new playground
@@afrinashu5388 but it cannot be showing the warehousecallout
Challenge Not yet complete... here's what's wrong:
The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.
In the error it give that it can't found warehousecalloutservice Check once which class do you imported once again copy the code and save it and click on runall
I imported right class plz read next lines in the error. Do i need to add equipment record to database?
After saving the code open execute anonymous window ( CTRl+E ) and run this method ,
-------------------------------------------
System.enqueueJob(new WarehouseCalloutService());
After saving the code open execute anonymous window ( CTRl+E ) and run this method ,
-------------------------------------------
System.enqueueJob(new WarehouseCalloutService());
@@WonderStudies thanks it worked
Getting error of
Line: 1, Column: 1
System.AsyncException: Class WarehouseCalloutService must implement the Queueable interface.
how u complete bro this prblm
we have to save the code first and execute the apex code
Thank you. so helpful
Challenge is not yet completed...sir,can anyone tell me the solution for this problem please
Challenge Not yet complete... here's what's wrong:
The WarehouseCalloutService class does not appear to have run successfully. Make sure that you run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.
Slove ayedha problem chepu bro
@@Ganesh-rr1wd chepandi bro same problem
okasari remote settings lo url check chesukondi, evarikaithe error vosthundho
The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully. not cmoing pls slove it
Simply debug loo execut chesthy avthundhi
Same problem please tell how to complete it
Same problem please tell me how to complete this
Debug.. loo test chyandii bro
Chesa bro but resolve kaledu
4:14 / ERROR Line: 1, Column: 1
System.AsyncException: Class WarehouseCalloutService must implement the Queueable interface.
How to solve this anyone?
How you get enter apex code in developer console
In comments and pinned at top
Challenge Not yet complete... here's what's wrong:
The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.
Could you please hlep me bro?
same problem bro did u resolve ?
In the place of Warehouse in the remote site settings give warehouse_URL because that's the class name so give this as Warehouse_URL@@NithinGottipati
Challenge Not yet complete... here's what's wrong:
The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully
help me out of this
Bro Have you solved this problem?
Same problem plz help me anyone
@@syedgamer589 can you help me how to solve this problem
Go to debug in tool bar and make the log..ones true
@@natureloversever8897 but i did'nt got.........
Thank you soo much bro
thanks bro its 100% work
You are welcome
Challenge Not yet complete... here's what's
S
wrong: The WarehouseCallout Service class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully. How can it solve brother help
@@WonderStudies sir please upload the code in the comment
@@WonderStudies sir please upload the code on the comment section as soon as you can
Challenge Not yet complete... here's what's wrong:
The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully
please provide video sir please
please bro you can explain it (Challenge Not yet complete... here's what's wrong:
The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.) now what we doooo?
same problem to me also .... sir can you help me to solve this
Go to debug in tool bar and make the log..ones true
@@natureloversever8897 where is the debug tool bar? Please tell me the exact location
@@aravindashok7706 the tool bar there is debug option
@@natureloversever8897 sorry there is no option
Warehouse callout of service class does not appear to have run successfully as the equipment records are not found in the database
What is this not working i tried 4 times
I think you had used warehousecallouttest or some other class once check class name
hi did you figure this out? i got the same problem!
@@WonderStudies bro 6 errors from replacement.... What should I do
@@pangulurinavya8651 Did you Solved the problem ????
Thankyou😁
The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. Could not find a Product2 record named 'UPS 3000 VA' with the correct maintenance cycle and lifespan. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.this type error sir
Bro I am also getting same erorr
url is wrong u have to change tht@@jarupulamanyam9003
getting an error in remote site settings...plz comment the solution to get rid of error
Challenge Not yet complete... here's what's wrong:
The WarehouseCalloutService class does not appear to have run successfully. Make sure that you run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.
Can you help me please
same problem to me also .... sir can you help me to solve this
Go to debug in tool bar and make the log..ones true
@@natureloversever8897 bro how can we do that plz help me
@@sssudarshan5534 how
Bro how to solve this problem
bro warehousecalloutservice 52 line error that error is " at '--' bro solution for this
Bro eala solve chesaru
@@surepallivenky same problem
For me also same problem
Pls help me to resolve this error
I have one problem missing at" '--'
please help me
please give the code
whats that solution
Thank you😍😍😍
You are welcome bro
Thank you completed..
how are u retified that error could u plz tell me
The warehousecalloutservice does not appear to have run successfully.Make sure that you run this class atleast once before attempting this challenge.Since this class is implementing the queueable interface,you may want to wait to ensure that it has processed successfully.
Error i got pls anyone help me
Bro did you solved it? 🥲
Same pblm
Go to debug in tool bar and make the log..ones true
@@natureloversever8897 how it is can u plz explain
@@natureloversever8897 im able to go into debug but how to make log ones true
Bro!what is the shotkey to open apexcode
Ctrl+E
IAM NOT SUCCESS IN THIS CHALLENGE STEP 3.GIVE ME SUGGISTION. IAM ALREADY ENTER CTRL+R CODE BUT NO SUCCESS .WOULD YOU
PLEASE HELP . IAM NOT YET CHALLENGE STEP 3 I DID TRY SO MANY MORE TIMES. BUT IAM NOT SUCCESS.😥😥😥
bro video middle lo enter apex code ani vasthadhi kadha adhi raavalante em press cheyali plz reply im in middle of programe
ctrl+e
This schedulable class has jobs pending or in progress
@wonder studies I am not getting this challenge solved. I am getting error, I tried as you say. plz help me out
Bro on 18 ,18,20 line it is showing that variable does not exist:reponce
Error message :'The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table'
2:05 .....Give Remote site URL in a correct way..avoid typing copy the site URL and paste clearly and do next process..it works definitely
change remote site setting warehouse into WAREHOUSE_URL that will do it
@@kodaudaykiran4567 System.AsyncException: Class WarehouseCalloutService must implement the Queueable interface.
@@Sweety78527 akka chonchem ardam ayyela cheppava
i am getting this error in execute anonymous window plz help
Line: 1, Column: 1
System.AsyncException: Class WarehouseCalloutService must implement the Queueable interface.
verify that you have install the package or not i too have that problem but now i resolve it
@@lalithasri5962 which package should I install
@@challavinay303 04t46000001Zch4 this is the package id step1:go to setup
step2:In QuickFing search for Playground Starter and beside the welcome there INstall apackage otion will there in that paste the pakageID 04t46000001Zch4
try this wishing you a good luck i reslove the error so i wishing you too reslove it
@@lalithasri5962 how to resolve the problem
@@madhukarri1513 follow thw above steps
showing a problem in line -1
This schedulable class has jobs pending or in progress
Use the code given in comments which are pinned max Your problem will be resolved
Bro how u solved this
Bro please provide code
while debugging use this code to debug:
WarehouseCalloutService job = new WarehouseCalloutService();
System.enqueueJob(job);
22 records aney problem ki solution = remote site setting loki velli https anedhi first nunchi addit cheyandi
bro code please
please help me
Bro I'm Getting 6 errors ...
I'm Done the Same procedure of this Video..
Please give me reply
Do clearly..step by step
have u entered apex code
Thanku :)
With my pleasure
very helpful : )
With my pleasure
@@WonderStudies sir please reply me
@@WonderStudiescode send chayara please
developer console not errors
Enter apex code where located bro
CTRL+E
Ha https ni addit cheysi code run cheyandi 💯 avudhi and run all cheyandi 💯 avudhi
Remote site URL link bro send comment
It is showing error Variable does not exist from : Replacement_part_c to myEq.Cureent
Same bro
how to make log files as true
can u plz explain
Challenge Not yet complete... here's what's
S
wrong: The WarehouseCallout Service class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully. Error cmggg how can it solve brother
Excute anonymous error
System .ayncEXception:class warehousecalloutsservice must implement the queueable interface
Please help me
After saving the saving code click on the crtl+E now it will open a window some paste that another code which is present in comment box
It is not working i tries many times bro
same problem bro did u resolve ?
Your video are so helpful.. thanks..may i know your LinkedIn id
Line: 1, Column: 1
System.AsyncException: Class WarehouseCalloutService must implement the Queueable interface.
Hi How you overcome it
i am getting this error in execute anonymous window plz help
Line: 1, Column: 1
System.AsyncException: Class WarehouseCalloutService must implement the Queueable interface.
Me also facing same problem
bro i to help if u resolved
Kindly add "implements Queueable" in your class name.
like this :
public with sharing class WarehouseCalloutService implements Queueable {
Please don't copy paste entire code it is only 49 code not 53 lines he is mention after process also we are writing it in code watch carefully
we have to save the code first and execute the apex code
Challenge Not yet complete... here's what's wrong:
The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.
I'm also facing same error brro
Reply ee brrro
@@Hellohgf same bro
@@Hellohgf iam also facing
Oho
please give the code
Challenge Not yet complete... here's what's wrong:
The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.
i get same problem to solve bro tell me
i get same problem to solve bro tell me
same problem did u resolve ?
@@NithinGottipati did u solve this?
RUN ALL TEST
Challenge Not yet complete... here's what's wrong:
The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.
Same error occurred to me
Can you sloved the error
Same error you will solve this
same problem bro did u resolve ?
Challenge Not yet complete... here's what's wrong:
The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.
Bro did u get the solution
Challenge Not yet complete... here's what's wrong:
The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.
Same problem please help me
@@benyash5077 @hussen kakarla
same
ame problem to me also .... sir can you help me to solve this
please provide video sir
Challenge Not yet complete... here's what's wrong:
The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.
run all cheyandii
Remote site setting lo https addit cheysi code run cheyandi 💯💯 avudhi
@@konadurga3054 thank you bro work ayyindhi..
Challenge Not yet complete... here's what's wrong:
The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.
What's the solution for it
bro ur typing the url wrong type it correctly and it doesnt show a error@@107.aishwaryabhosale5
Creat new playground and redo the same process again correct ly
Challenge Not yet complete... here's what's wrong:
The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.
pls any one help me how to complete this challenge
Challenge Not yet complete... here's what's wrong:
The WarehouseCalloutService class does not appear to have run successfully as the equipment records are not found in the database. The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table. Make sure that you successfully run this class at least once before attempting this challenge. Since this class is implementing the queueable interface, you may want to wait to ensure that it has processed successfully.
rectified?