This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

DialognextId is there a way to reset the nextID

I have a requirement to have the sequence number from 1 to 10000 once it reaches 10000    this value NextID should be reset back to 1. I tried using designer process to reset the value it is giving permission denied error.

Is there a way to reset the limit once it reaches the set limit?

Parents
  • Hi

    If you try to update DialogNextID.NextNumber via the process component HandleObject.Update it will fail, because an update via the object layer other than the appropriate customizer method is not allowed. But you can update the value by using the SQL component and running the following command line:

    UPDATE DialogNextID SET NextNumber = 1 WHERE Ident_DialogNextID = N'<Enter here the corresponding value of Ident_DialogNextID>'

    -
    Regards
    Sven

Reply
  • Hi

    If you try to update DialogNextID.NextNumber via the process component HandleObject.Update it will fail, because an update via the object layer other than the appropriate customizer method is not allowed. But you can update the value by using the SQL component and running the following command line:

    UPDATE DialogNextID SET NextNumber = 1 WHERE Ident_DialogNextID = N'<Enter here the corresponding value of Ident_DialogNextID>'

    -
    Regards
    Sven

Children
No Data