ServiceNow MOCK Interview ||

แชร์
ฝัง
  • เผยแพร่เมื่อ 30 ม.ค. 2025

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

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

    AJAX = Asynchronous JavaScript And XML

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

    Is this the latest interview?

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

    Sir plz interview me

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

      Please reach me 9066921316
      based on my availability, i can plan (it will be chargable)

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

    Background script only crud operation

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

    I thinks she is faking becz having a 10 year exp can't descripe simple love task

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

    function onChange(control, oldValue, newValue, isLoading) {
    if (isLoading || newValue === '') {
    return;
    }
    // Get the selected customer value
    var customer = g_form.getValue('customer');
    // Query the User table to get the managers for the selected customer
    var userGr = new GlideRecord('sys_user');
    userGr.addQuery('customer', customer);
    userGr.query();
    // Set the values of the manager fields
    while (userGr.next()) {
    if (userGr.getValue('manager_type') === 'Technical Manager') {
    g_form.setValue('technical_manager', userGr.getValue('manager'), userGr.getDisplayValue('manager'));
    } else if (userGr.getValue('manager_type') === 'Business Manager') {
    g_form.setValue('business_manager', userGr.getValue('manager'), userGr.getDisplayValue('manager'));
    }
    }
    }

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

      You should not right glide record on client script...

    • @justtryit....
      @justtryit.... ปีที่แล้ว

      @@SKfacts_ITcareers yes,how to achieve this

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

      I written the script in notepad of the session

    • @justtryit....
      @justtryit.... ปีที่แล้ว

      @@SKfacts_ITcareers ok

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

      In a same session?