Dell Boomi Tutorial - Process Route

Поделиться
HTML-код
  • Опубликовано: 5 ноя 2024

Комментарии • 8

  • @varunsai5750
    @varunsai5750 Год назад

    In main process notify shape what you mentioned?

  • @b-t3chwithme357
    @b-t3chwithme357 2 года назад +1

    Thanks for this informative video.
    Could you please upload connector call function related video.

  • @rajdas1779
    @rajdas1779 2 года назад +1

    It is very helpful, thank you sir for such a wonderful video.

  • @varunsai5750
    @varunsai5750 Год назад

    can u upload xml doc?

  • @nandavarapumanivardhanredd336
    @nandavarapumanivardhanredd336 4 года назад +1

    Can you post groovy script code for this video

    • @techcompilation4338
      @techcompilation4338  4 года назад +1

      Sorry for late reply here you go:
      if (opcode.equalsIgnoreCase('ADD')) {
      output=operand1 + operand2;
      }
      else if (opcode.equalsIgnoreCase('SUB')) {
      output=operand1 - operand2;
      }
      else if (opcode.equalsIgnoreCase('MULT')) {
      output=operand1 * operand2;
      }
      else if (opcode.equalsIgnoreCase('DIV')) {
      output=operand1 / operand2;
      }
      else {
      output=0;
      }

  • @nandavarapumanivardhanredd336
    @nandavarapumanivardhanredd336 4 года назад +1

    Because of i got some error.

    • @techcompilation4338
      @techcompilation4338  4 года назад

      if (opcode.equalsIgnoreCase('ADD')) {
      output=operand1 + operand2;
      }
      else if (opcode.equalsIgnoreCase('SUB')) {
      output=operand1 - operand2;
      }
      else if (opcode.equalsIgnoreCase('MULT')) {
      output=operand1 * operand2;
      }
      else if (opcode.equalsIgnoreCase('DIV')) {
      output=operand1 / operand2;
      }
      else {
      output=0;
      }