Create a Custom Service In D365

Поділитися
Вставка
  • Опубліковано 3 лют 2025

КОМЕНТАРІ • 23

  • @sounsysteme
    @sounsysteme 7 місяців тому +1

    Thank you for the explanation, it’s very clear. 🇲🇦

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

      Glad it was helpful!

  • @DarkWingZEROX
    @DarkWingZEROX 2 роки тому +3

    Your videos are always a treat to watch and learn!
    Thanks Peter and always keep it simple for dummies like me x)
    Can custom services be used for on-prem deployments?

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

      They should be. But I don’t know that for certainty. I am pretty much always using cloud based.

  • @jessievillareal2106
    @jessievillareal2106 3 роки тому +2

    Very well explained Peter! Thank you :)

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

      Thank you Jessie! I appreciate it!

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

    Good one Peter. Very clear

  • @mostaphasaid7250
    @mostaphasaid7250 8 місяців тому +1

    Thank you very much

  • @FernandoGarcia-wl6sh
    @FernandoGarcia-wl6sh 2 роки тому

    Thanks Peter! for share your knowledge with the mortals, always shows an easiest and clearly way, I would like to know if you have some information about Bearer authentication for make some tests with my ws
    Thxs :)

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

    Hi Peter thank you for this great video,
    is there any way to setup the service methods to decide the request type to respect web service best practices and not having all API as Post request?

  • @ankitadeore4175
    @ankitadeore4175 5 місяців тому

    Hi , Can this service be created for Dynamics 365 sales , what's the parallel option I can use is sales ?
    From what I have learned this can be done in Finance and Operations only ?
    Thanks in Advance

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

    just what i needed!

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

    love the tutorial

  • @parimalrajsscet
    @parimalrajsscet Рік тому

    I am unable to create service class object as such you specified. actually earlier i have pass data area id and created 3 response, request and 2 service group class as such mentioned.
    but now i am passing purch id and other 2 fields to pass and created response & request object created. but service object is not creating while on coding.

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

    I creating one new method in service class. But I got an error.(Not all path found method name)..

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

      After creating your service class make sure to also create the Service node and in the properties set it to the service class. Then right click and add a node to add a method and set the method in the properties. Then create a Service Group that contains that Service. Once all those are done you should be able to call the service class.

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

    How to check whether our process is correct or not?

  • @addyyy3stars
    @addyyy3stars 4 роки тому +1

    Very nice information peter. I am working on custom services now in D365foits my first time so i am quite stuck my my requirements. can i get your email id so that i can ask my doubts?

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

      Hello, instead of giving out my email, perhaps you can post your question in the forums at www.axug.com/home, and I can then respond there. Let me know if that doesn't work for you. Thanks.

  • @SohanKanti8
    @SohanKanti8 Рік тому

    Hi Peter!
    I created a Contract class. but the requirement is to hide the attributes when they have a Null value. How can I achieve it? I tried using Newtonsoft.Json.JsonPropertyAttribute(NullValueHandling = Newtonsoft.Json.NullValueHandling::Ignore) attribute in the parm method but it gives an error.