Is it possible to provide a registration number to the customer after he/she registering a dispute?

Hello Everyone,

I am working on an application named water tax billing. In that application, when ever any user register any kind of dispute like dispute in bill or dispute in meter etc., After successful registration, we need to provide a registration number to the customer for that dispute.

I don’t know how to solve this user story.

Kindly help me out with this.

Thank you.

Hi @KaratamM

Check if any of below helps

  1. pxGetNewGUID()
  2. @Default.GenerateID(Prefix)
  3. @Default.CreateUniqueID()
  4. @java(“java.util.UUID.randomUUID().toString()”)
  5. Using the pega case ID itself by removing the work id prefix and storing the value in another property.

@SanthoshRanga OKay where should I use them.

@KaratamM After the case has been created, you can configure the function in any of data transform or activities called during the flow and set it in a property and then display that property on UI.

@SanthoshRanga I got it. Thank you.