Synchronize Salesforce data with an external system | Apex Specialist | Salesforce

แชร์
ฝัง
  • เผยแพร่เมื่อ 23 ธ.ค. 2024

ความคิดเห็น • 325

  • @WonderStudies
    @WonderStudies  2 ปีที่แล้ว +56

    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());

    • @Hellohgf
      @Hellohgf 2 ปีที่แล้ว +1

      When i'm exciting this program its come error. Bro solve the error is unauthorized end point the operator is futurehandler
      Give me reply

    • @shaikdarveeshkalam5506
      @shaikdarveeshkalam5506 2 ปีที่แล้ว +2

      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

    • @geethaallu1183
      @geethaallu1183 2 ปีที่แล้ว +9

      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.

    • @Hellohgf
      @Hellohgf 2 ปีที่แล้ว +1

      @@geethaallu1183 warehouse URL is wrong. So its came a error

    • @Hellohgf
      @Hellohgf 2 ปีที่แล้ว +1

      @@geethaallu1183 do u want solution say hai to my E mail account

  • @denishishere8501
    @denishishere8501 ปีที่แล้ว +13

    Those who are getting the error about "WarehouseCalloutService class does not appear to have run successfully ", recheck the url in remote site setting

  • @mutyalasaisasankmallavalli6563
    @mutyalasaisasankmallavalli6563 ปีที่แล้ว +5

    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).

  • @kishorel.2124
    @kishorel.2124 2 ปีที่แล้ว +6

    Hello guys if challenge is not complete then (2:05) ,,give remote site URL in a correct way and do next process ..it works

  • @l.chaitanyakumar4821
    @l.chaitanyakumar4821 2 ปีที่แล้ว +5

    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

    • @krupa6237
      @krupa6237 2 ปีที่แล้ว +1

      i am also facing same problem to help me to reslove this problem

    • @nirbhaykumar2675
      @nirbhaykumar2675 11 หลายเดือนก่อน

      is the problem resolved?? help me

  • @kotipedaiah1398
    @kotipedaiah1398 2 ปีที่แล้ว +7

    Line: 1, Column: 1
    System.AsyncException: Class WarehouseCalloutService must implement the Queueable interface.

    • @immadisukanya9036
      @immadisukanya9036 2 ปีที่แล้ว

      Same problem raised

    • @Error-vf5nr
      @Error-vf5nr 2 ปีที่แล้ว +7

      we have to save the code first and execute the apex code

    • @kavyathyadi528
      @kavyathyadi528 ปีที่แล้ว

      @@Error-vf5nr Same issue is arising after saving the apex and then executing the code... Is there any other way???

  • @NanitheGamer7092
    @NanitheGamer7092 2 ปีที่แล้ว +1

    what u presss for geting that enter apex code option in 4:08

  • @gantasailakshman
    @gantasailakshman 2 ปีที่แล้ว +4

    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

    • @harish2404
      @harish2404 2 ปีที่แล้ว

      Bro did u get the solution??

  • @echaithu5925
    @echaithu5925 7 หลายเดือนก่อน +1

    Nice Video Bro ...Thanks a lot

  • @LAparvathi
    @LAparvathi 2 ปีที่แล้ว +2

    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

  • @sujanmidatani6992
    @sujanmidatani6992 4 หลายเดือนก่อน

    This schedulable class has jobs pending or in progress - CronTrigger IDs ({0}) - CronTrigger IDs (08edM000003nPOX)
    got this in problems section what can i do?

    • @KeerthiKS-e9c
      @KeerthiKS-e9c 4 หลายเดือนก่อน

      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.

  • @apoorvachavan9349
    @apoorvachavan9349 ปีที่แล้ว +3

    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

    • @keerthanakancharla9778
      @keerthanakancharla9778 ปีที่แล้ว +1

      Don't copy paste everything given.just copy the code to the end of the braces.

    • @PurnasaiPurnasai
      @PurnasaiPurnasai ปีที่แล้ว

      ​@@keerthanakancharla9778 code send chayara please

    • @haripriyanallapula7934
      @haripriyanallapula7934 ปีที่แล้ว

      i have also same issue please any one tel me anyone how to slove

  • @afrinashu5388
    @afrinashu5388 2 หลายเดือนก่อน

    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 .

  • @nikithaharishachari6229
    @nikithaharishachari6229 2 ปีที่แล้ว +4

    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

    • @srilaxmiporandla
      @srilaxmiporandla 6 หลายเดือนก่อน

      same problem

    • @srilaxmiporandla
      @srilaxmiporandla 6 หลายเดือนก่อน

      Same problem

    • @afrinashu5388
      @afrinashu5388 2 หลายเดือนก่อน

      Redo again in new playground

    • @ThirekhaV
      @ThirekhaV 2 หลายเดือนก่อน

      @@afrinashu5388 but it cannot be showing the warehousecallout

  • @saurabhpandey4604
    @saurabhpandey4604 2 ปีที่แล้ว +4

    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.

    • @WonderStudies
      @WonderStudies  2 ปีที่แล้ว

      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

    • @saurabhpandey4604
      @saurabhpandey4604 2 ปีที่แล้ว

      I imported right class plz read next lines in the error. Do i need to add equipment record to database?

    • @WonderStudies
      @WonderStudies  2 ปีที่แล้ว +2

      After saving the code open execute anonymous window ( CTRl+E ) and run this method ,
      -------------------------------------------
      System.enqueueJob(new WarehouseCalloutService());

    • @WonderStudies
      @WonderStudies  2 ปีที่แล้ว +1

      After saving the code open execute anonymous window ( CTRl+E ) and run this method ,
      -------------------------------------------
      System.enqueueJob(new WarehouseCalloutService());

    • @mohdsafiuddin7379
      @mohdsafiuddin7379 2 ปีที่แล้ว

      @@WonderStudies thanks it worked

  • @rrsouri
    @rrsouri 2 ปีที่แล้ว +4

    Getting error of
    Line: 1, Column: 1
    System.AsyncException: Class WarehouseCalloutService must implement the Queueable interface.

    • @UNKNOWN.SSCWALA
      @UNKNOWN.SSCWALA 2 ปีที่แล้ว

      how u complete bro this prblm

    • @Error-vf5nr
      @Error-vf5nr 2 ปีที่แล้ว +2

      we have to save the code first and execute the apex code

  • @markgenesissuba6481
    @markgenesissuba6481 2 ปีที่แล้ว +1

    Thank you. so helpful

  • @SasiKumar-no6nl
    @SasiKumar-no6nl ปีที่แล้ว +1

    Challenge is not yet completed...sir,can anyone tell me the solution for this problem please

  • @kotipedaiah1398
    @kotipedaiah1398 2 ปีที่แล้ว +2

    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.

    • @Ganesh-rr1wd
      @Ganesh-rr1wd 2 ปีที่แล้ว

      Slove ayedha problem chepu bro

    • @Karthik__vr46q
      @Karthik__vr46q 2 ปีที่แล้ว

      @@Ganesh-rr1wd chepandi bro same problem

  • @kamadenuvu
    @kamadenuvu ปีที่แล้ว

    okasari remote settings lo url check chesukondi, evarikaithe error vosthundho

  • @SanthoshKumar-hv1ft
    @SanthoshKumar-hv1ft 2 ปีที่แล้ว +5

    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

    • @BASaimanikanta
      @BASaimanikanta 2 ปีที่แล้ว +1

      Simply debug loo execut chesthy avthundhi

    • @ameerabakshu
      @ameerabakshu 2 ปีที่แล้ว

      Same problem please tell how to complete it

    • @BharathKumar-sr2ui
      @BharathKumar-sr2ui 2 ปีที่แล้ว

      Same problem please tell me how to complete this

    • @BASaimanikanta
      @BASaimanikanta 2 ปีที่แล้ว

      Debug.. loo test chyandii bro

    • @BharathKumar-sr2ui
      @BharathKumar-sr2ui 2 ปีที่แล้ว

      Chesa bro but resolve kaledu

  • @vinaysaikumarpedapati
    @vinaysaikumarpedapati 2 ปีที่แล้ว +1

    4:14 / ERROR Line: 1, Column: 1
    System.AsyncException: Class WarehouseCalloutService must implement the Queueable interface.
    How to solve this anyone?

  • @shibiyarasusd9532
    @shibiyarasusd9532 11 หลายเดือนก่อน

    How you get enter apex code in developer console

    • @WonderStudies
      @WonderStudies  11 หลายเดือนก่อน

      In comments and pinned at top

  • @kasinadh0217
    @kasinadh0217 2 ปีที่แล้ว +1

    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?

    • @NithinGottipati
      @NithinGottipati 2 ปีที่แล้ว

      same problem bro did u resolve ?

    • @aakansha5045
      @aakansha5045 ปีที่แล้ว

      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

  • @Simbhaa_The_Traveller
    @Simbhaa_The_Traveller 2 ปีที่แล้ว +2

    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

    • @syedgamer589
      @syedgamer589 2 ปีที่แล้ว

      Bro Have you solved this problem?

    • @kondasofia4814
      @kondasofia4814 2 ปีที่แล้ว

      Same problem plz help me anyone

    • @rambabalaji8359
      @rambabalaji8359 2 ปีที่แล้ว

      @@syedgamer589 can you help me how to solve this problem

    • @natureloversever8897
      @natureloversever8897 2 ปีที่แล้ว

      Go to debug in tool bar and make the log..ones true

    • @rambabalaji8359
      @rambabalaji8359 2 ปีที่แล้ว

      @@natureloversever8897 but i did'nt got.........

  • @preetham4135
    @preetham4135 2 ปีที่แล้ว +1

    Thank you soo much bro

  • @sagarjagtap6214
    @sagarjagtap6214 2 ปีที่แล้ว +2

    thanks bro its 100% work

    • @WonderStudies
      @WonderStudies  2 ปีที่แล้ว

      You are welcome

    • @udhayadesamsetti5392
      @udhayadesamsetti5392 ปีที่แล้ว

      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

    • @little_menace8659
      @little_menace8659 ปีที่แล้ว

      @@WonderStudies sir please upload the code in the comment

    • @little_menace8659
      @little_menace8659 ปีที่แล้ว

      @@WonderStudies sir please upload the code on the comment section as soon as you can

  • @AmmuSrinath
    @AmmuSrinath 2 ปีที่แล้ว +1

    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

  • @Badri360
    @Badri360 2 ปีที่แล้ว +4

    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?

    • @rambabalaji8359
      @rambabalaji8359 2 ปีที่แล้ว

      same problem to me also .... sir can you help me to solve this

    • @natureloversever8897
      @natureloversever8897 2 ปีที่แล้ว

      Go to debug in tool bar and make the log..ones true

    • @aravindashok7706
      @aravindashok7706 2 ปีที่แล้ว

      @@natureloversever8897 where is the debug tool bar? Please tell me the exact location

    • @natureloversever8897
      @natureloversever8897 2 ปีที่แล้ว

      @@aravindashok7706 the tool bar there is debug option

    • @aravindashok7706
      @aravindashok7706 2 ปีที่แล้ว

      @@natureloversever8897 sorry there is no option

  • @nagasandeep9475
    @nagasandeep9475 2 ปีที่แล้ว +1

    Warehouse callout of service class does not appear to have run successfully as the equipment records are not found in the database

    • @nagasandeep9475
      @nagasandeep9475 2 ปีที่แล้ว

      What is this not working i tried 4 times

    • @WonderStudies
      @WonderStudies  2 ปีที่แล้ว

      I think you had used warehousecallouttest or some other class once check class name

    • @kanikakala8061
      @kanikakala8061 2 ปีที่แล้ว

      hi did you figure this out? i got the same problem!

    • @pangulurinavya8651
      @pangulurinavya8651 2 ปีที่แล้ว

      @@WonderStudies bro 6 errors from replacement.... What should I do

    • @shaikjubedha155
      @shaikjubedha155 2 ปีที่แล้ว

      @@pangulurinavya8651 Did you Solved the problem ????

  • @sanjays5885
    @sanjays5885 ปีที่แล้ว

    Thankyou😁

  • @rambabalaji8359
    @rambabalaji8359 2 ปีที่แล้ว +2

    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

    • @jarupulamanyam9003
      @jarupulamanyam9003 ปีที่แล้ว

      Bro I am also getting same erorr

    • @Ahhhh_135
      @Ahhhh_135 ปีที่แล้ว

      url is wrong u have to change tht@@jarupulamanyam9003

  • @RoshanShaik-vk3jg
    @RoshanShaik-vk3jg 2 ปีที่แล้ว

    getting an error in remote site settings...plz comment the solution to get rid of error

  • @rrsouri
    @rrsouri 2 ปีที่แล้ว +3

    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

    • @rambabalaji8359
      @rambabalaji8359 2 ปีที่แล้ว

      same problem to me also .... sir can you help me to solve this

    • @natureloversever8897
      @natureloversever8897 2 ปีที่แล้ว

      Go to debug in tool bar and make the log..ones true

    • @sssudarshan5534
      @sssudarshan5534 2 ปีที่แล้ว

      @@natureloversever8897 bro how can we do that plz help me

    • @natureloversever8897
      @natureloversever8897 2 ปีที่แล้ว

      @@sssudarshan5534 how

    • @prasanthboyapati9873
      @prasanthboyapati9873 2 ปีที่แล้ว +1

      Bro how to solve this problem

  • @madithamadarsh9279
    @madithamadarsh9279 2 ปีที่แล้ว +1

    bro warehousecalloutservice 52 line error that error is " at '--' bro solution for this

    • @surepallivenky
      @surepallivenky 2 ปีที่แล้ว

      Bro eala solve chesaru

    • @venkunaiduk6366
      @venkunaiduk6366 ปีที่แล้ว

      @@surepallivenky same problem

    • @soumyaa3334
      @soumyaa3334 ปีที่แล้ว

      For me also same problem

    • @soumyaa3334
      @soumyaa3334 ปีที่แล้ว

      Pls help me to resolve this error

  • @venkunaiduk6366
    @venkunaiduk6366 ปีที่แล้ว

    I have one problem missing at" '--'

  • @little_menace8659
    @little_menace8659 ปีที่แล้ว

    please give the code

  • @hussenkakarla
    @hussenkakarla 2 ปีที่แล้ว

    whats that solution

  • @ramreddy-tb1dk
    @ramreddy-tb1dk 2 ปีที่แล้ว

    Thank you😍😍😍

  • @rrsouri
    @rrsouri 2 ปีที่แล้ว

    Thank you completed..

    • @karunkarkarun142
      @karunkarkarun142 2 ปีที่แล้ว

      how are u retified that error could u plz tell me

  • @vamsigandham648
    @vamsigandham648 2 ปีที่แล้ว +4

    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

    • @kushalpatlegar.78
      @kushalpatlegar.78 2 ปีที่แล้ว

      Bro did you solved it? 🥲

    • @kushalpatlegar.78
      @kushalpatlegar.78 2 ปีที่แล้ว +1

      Same pblm

    • @natureloversever8897
      @natureloversever8897 2 ปีที่แล้ว

      Go to debug in tool bar and make the log..ones true

    • @JhansikalipriyaKesana
      @JhansikalipriyaKesana 2 ปีที่แล้ว

      @@natureloversever8897 how it is can u plz explain

    • @musushaik2109
      @musushaik2109 2 ปีที่แล้ว

      @@natureloversever8897 im able to go into debug but how to make log ones true

  • @namburipraneeth2924
    @namburipraneeth2924 2 ปีที่แล้ว

    Bro!what is the shotkey to open apexcode

  • @gopinandyala95
    @gopinandyala95 2 ปีที่แล้ว +1

    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.😥😥😥

  • @Moin8758
    @Moin8758 2 ปีที่แล้ว

    bro video middle lo enter apex code ani vasthadhi kadha adhi raavalante em press cheyali plz reply im in middle of programe

  • @srikanth_chowdary19
    @srikanth_chowdary19 2 ปีที่แล้ว

    This schedulable class has jobs pending or in progress

  • @anuradhabadgujar6706
    @anuradhabadgujar6706 2 ปีที่แล้ว +1

    @wonder studies I am not getting this challenge solved. I am getting error, I tried as you say. plz help me out

  • @nanim.v.pranaayreddy912
    @nanim.v.pranaayreddy912 2 ปีที่แล้ว

    Bro on 18 ,18,20 line it is showing that variable does not exist:reponce

  • @bhudurusanjay8969
    @bhudurusanjay8969 2 ปีที่แล้ว +2

    Error message :'The REST endpoint returns 22 records so your org should have at least 22 records in the Product2 table'

    • @kishorel.2124
      @kishorel.2124 2 ปีที่แล้ว +5

      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

    • @kodaudaykiran4567
      @kodaudaykiran4567 2 ปีที่แล้ว +4

      change remote site setting warehouse into WAREHOUSE_URL that will do it

    • @Sweety78527
      @Sweety78527 2 ปีที่แล้ว +1

      @@kodaudaykiran4567 System.AsyncException: Class WarehouseCalloutService must implement the Queueable interface.

    • @manihemanthprasadbodapathi8073
      @manihemanthprasadbodapathi8073 2 ปีที่แล้ว +1

      @@Sweety78527 akka chonchem ardam ayyela cheppava

  • @Varma7137
    @Varma7137 2 ปีที่แล้ว +2

    i am getting this error in execute anonymous window plz help
    Line: 1, Column: 1
    System.AsyncException: Class WarehouseCalloutService must implement the Queueable interface.

    • @lalithasri5962
      @lalithasri5962 2 ปีที่แล้ว

      verify that you have install the package or not i too have that problem but now i resolve it

    • @challavinay303
      @challavinay303 2 ปีที่แล้ว

      @@lalithasri5962 which package should I install

    • @lalithasri5962
      @lalithasri5962 2 ปีที่แล้ว

      @@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

    • @madhukarri1513
      @madhukarri1513 2 ปีที่แล้ว

      ​@@lalithasri5962 how to resolve the problem

    • @lalithasri5962
      @lalithasri5962 2 ปีที่แล้ว

      @@madhukarri1513 follow thw above steps

  • @vistilishailareddy6051
    @vistilishailareddy6051 2 ปีที่แล้ว

    showing a problem in line -1
    This schedulable class has jobs pending or in progress

    • @WonderStudies
      @WonderStudies  2 ปีที่แล้ว +1

      Use the code given in comments which are pinned max Your problem will be resolved

    • @ashokreddy332
      @ashokreddy332 2 ปีที่แล้ว

      Bro how u solved this

  • @PurnasaiPurnasai
    @PurnasaiPurnasai ปีที่แล้ว +1

    Bro please provide code

    • @mallabhuvana3743
      @mallabhuvana3743 11 หลายเดือนก่อน

      while debugging use this code to debug:
      WarehouseCalloutService job = new WarehouseCalloutService();
      System.enqueueJob(job);

  • @konadurga3054
    @konadurga3054 2 ปีที่แล้ว

    22 records aney problem ki solution = remote site setting loki velli https anedhi first nunchi addit cheyandi

  • @golladeepika8827
    @golladeepika8827 ปีที่แล้ว

    bro code please

  • @localguidedineshtech
    @localguidedineshtech 2 ปีที่แล้ว +1

    please help me

  • @shaikjubedha155
    @shaikjubedha155 2 ปีที่แล้ว

    Bro I'm Getting 6 errors ...
    I'm Done the Same procedure of this Video..
    Please give me reply

  • @MsMitalis
    @MsMitalis 2 ปีที่แล้ว

    Thanku :)

  • @sravanishankar4665
    @sravanishankar4665 2 ปีที่แล้ว

    very helpful : )

  • @vriseinurlife
    @vriseinurlife 2 ปีที่แล้ว

    developer console not errors

  • @purushothamreddy4859
    @purushothamreddy4859 2 ปีที่แล้ว

    Enter apex code where located bro

  • @konadurga3054
    @konadurga3054 2 ปีที่แล้ว

    Ha https ni addit cheysi code run cheyandi 💯 avudhi and run all cheyandi 💯 avudhi

  • @purushothamreddy4859
    @purushothamreddy4859 2 ปีที่แล้ว

    Remote site URL link bro send comment

  • @pricelessbrains678
    @pricelessbrains678 2 ปีที่แล้ว

    It is showing error Variable does not exist from : Replacement_part_c to myEq.Cureent

  • @JhansikalipriyaKesana
    @JhansikalipriyaKesana 2 ปีที่แล้ว

    how to make log files as true

  • @udhayadesamsetti5392
    @udhayadesamsetti5392 ปีที่แล้ว

    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

  • @saisureshkoppula8793
    @saisureshkoppula8793 2 ปีที่แล้ว +1

    Excute anonymous error
    System .ayncEXception:class warehousecalloutsservice must implement the queueable interface
    Please help me

    • @WonderStudies
      @WonderStudies  2 ปีที่แล้ว +1

      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

  • @savariyadasari8701
    @savariyadasari8701 2 ปีที่แล้ว

    It is not working i tries many times bro

    • @NithinGottipati
      @NithinGottipati 2 ปีที่แล้ว

      same problem bro did u resolve ?

  • @mohinibodake0217
    @mohinibodake0217 ปีที่แล้ว

    Your video are so helpful.. thanks..may i know your LinkedIn id

  • @chandu-by1iw
    @chandu-by1iw ปีที่แล้ว +1

    Line: 1, Column: 1
    System.AsyncException: Class WarehouseCalloutService must implement the Queueable interface.

  • @lalithasri5962
    @lalithasri5962 2 ปีที่แล้ว +3

    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
      @challavinay303 2 ปีที่แล้ว

      Me also facing same problem

    • @navyap1838
      @navyap1838 2 ปีที่แล้ว

      bro i to help if u resolved

    • @shahrukhahmed2142
      @shahrukhahmed2142 2 ปีที่แล้ว +3

      Kindly add "implements Queueable" in your class name.
      like this :
      public with sharing class WarehouseCalloutService implements Queueable {

    • @dhanisetti.sunilkumar
      @dhanisetti.sunilkumar 2 ปีที่แล้ว

      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

    • @Error-vf5nr
      @Error-vf5nr 2 ปีที่แล้ว

      we have to save the code first and execute the apex code

  • @localguidedineshtech
    @localguidedineshtech 2 ปีที่แล้ว +4

    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.

  • @little_menace8659
    @little_menace8659 ปีที่แล้ว

    please give the code

  • @vriseinurlife
    @vriseinurlife 2 ปีที่แล้ว +1

    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.

  • @someswararao7949
    @someswararao7949 2 ปีที่แล้ว +1

    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.

  • @NithinGottipati
    @NithinGottipati 2 ปีที่แล้ว +1

    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.

  • @hussenkakarla
    @hussenkakarla 2 ปีที่แล้ว +4

    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.

    • @benyash5077
      @benyash5077 2 ปีที่แล้ว +1

      Same problem please help me

    • @shivanshrawat6617
      @shivanshrawat6617 2 ปีที่แล้ว

      @@benyash5077 @hussen kakarla

    • @AmmuSrinath
      @AmmuSrinath 2 ปีที่แล้ว

      same

    • @AmmuSrinath
      @AmmuSrinath 2 ปีที่แล้ว

      ame problem to me also .... sir can you help me to solve this

    • @AmmuSrinath
      @AmmuSrinath 2 ปีที่แล้ว

      please provide video sir

  • @DevarintiHarshitha
    @DevarintiHarshitha 2 ปีที่แล้ว +1

    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.

    • @chiranjeevikaranam690
      @chiranjeevikaranam690 2 ปีที่แล้ว

      run all cheyandii

    • @konadurga3054
      @konadurga3054 2 ปีที่แล้ว +1

      Remote site setting lo https addit cheysi code run cheyandi 💯💯 avudhi

    • @tarunkumar3970
      @tarunkumar3970 2 ปีที่แล้ว

      @@konadurga3054 thank you bro work ayyindhi..

  • @sukeshbunny4398
    @sukeshbunny4398 ปีที่แล้ว +9

    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.

    • @107.aishwaryabhosale5
      @107.aishwaryabhosale5 11 หลายเดือนก่อน

      What's the solution for it

    • @vishwarajsingh
      @vishwarajsingh 11 หลายเดือนก่อน

      bro ur typing the url wrong type it correctly and it doesnt show a error@@107.aishwaryabhosale5

    • @afrinashu5388
      @afrinashu5388 2 หลายเดือนก่อน

      Creat new playground and redo the same process again correct ly

  • @haripriyanallapula7934
    @haripriyanallapula7934 ปีที่แล้ว

    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.

  • @Deepika_Dupakuntla
    @Deepika_Dupakuntla 11 หลายเดือนก่อน +2

    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.