DMN Tutorial

Поділитися
Вставка

КОМЕНТАРІ • 14

  • @rishab.huihui
    @rishab.huihui Рік тому

    Hi, I installed Extended Services but I'm still getting: "You are not connected to Extended Services". Any idea how to resolve this?

  • @Gsuresh_3
    @Gsuresh_3 7 місяців тому

    Can you make a video on how you run locally? Set up things

  • @onnoschmidt2859
    @onnoschmidt2859 2 роки тому

    I am trying out the "bonus for products" but can't get it to work somehow.
    Do you have this dmn available somewhere? So I can compare and try to find out what I am doing wrong?

    • @DonatoMarrazzo
      @DonatoMarrazzo  2 роки тому +1

      Hi Omno, here is my dmn gist.github.com/dmarrazzo/fcc827393ce31fc4896d6b5cda62b83a
      Actually, using the sandbox I've noticed that there was a glitch so it was not showing the input in the test form. I switched on another dmn and then coming back it was working, maybe it was tricking you as well.

    • @onnoschmidt2859
      @onnoschmidt2859 2 роки тому

      @@DonatoMarrazzo Great thank you, it works I had the same input glitch. Your workaround works for me as well.

  • @anilsparks4858
    @anilsparks4858 3 роки тому +1

    Can you please publish more vedios on DMN with diffrent use cases

    • @DonatoMarrazzo
      @DonatoMarrazzo  3 роки тому

      Hi Anil, yes I can. Can you suggest some use cases?

    • @claradimitrakis5722
      @claradimitrakis5722 3 роки тому

      @@DonatoMarrazzo Hi, tks for this video. Please, can you publish excercise about expressions with other logic type?, for example: functions with Java

    • @DonatoMarrazzo
      @DonatoMarrazzo  3 роки тому

      @@claradimitrakis5722 Hi Clara here how to call a Java function ua-cam.com/video/lKiyBbBzMVs/v-deo.html

  • @karthikt937
    @karthikt937 3 роки тому +1

    Good explanation. Quick question is this using Drools DMN approach ?

  • @rakee_v
    @rakee_v 2 роки тому

    Hi Sir, So how to handle two outputs from a DMN decision. Lets take ur example.. Consider I have two more DMN decisions(A and B) after Total Bonus which gets it input from Total Bonus.
    If the ouput from Total Bonus is more than 10 the DMN A should get activated or if it is is less than 10 the DMN B should be activated.can u explain?

    • @DonatoMarrazzo
      @DonatoMarrazzo  2 роки тому

      Hi, I'm not sure that I understand the question. All the decision nodes are the output of a DMN, so if you have 2 decision node you have 2 output, moreover the decision node can be a complex type: in such a way the outcome of a decision node can be a structured information (e.g. a customer record). There's no a way to activate a node, all node are computed. You can have "if then else" logic and call one or more BKM (functions) based on the "if" branch. Please send me a more detailed requirement, so I can provide an example.

    • @rakee_v
      @rakee_v 2 роки тому

      @@DonatoMarrazzo So u have total Bonus DMN ryt. If the total Bonus is greater than 10 that input should got another DMN called Elite membership which calculates some loyalty points. If the total Bonus is less than 10 that input should got to another DMN called BILL which calculates the total Bill(or any other action).