Non-Persistable Entities

0
Here is my XSD and microflow, I want to show the text after clicking the import button. how I commit the data on server using non persistence activity.  what is the next step in my microflow. any idea about that!        
asked
3 answers
0

A non persistable entity by definition does not store any data on the server. If you want to show the data on screen there are several ways of doing that:

  1. When you create and set the attribute in the non persistable entity → pass this object as input to a page that you will open in the microflow and display the attribute.
  2. Save the content to a persistable entity and display on screen
  3. Add the content to a variable and display via an information popup (Show message).Add a create variable activity and set the content of the variable to IteratorString/Content. Use a show message activity and add a parameter which is set equal to the variable and display as {1}

 

What option you choose depends on what you want to do next with this data. Obviously there could be many other ways of doing what you asked!

Hope this helps.

answered
0

Hi Radhika

In 3rd case how I will show the content of xml file in popup 

 

answered
0

Its done Thank you Radhika for helping!!

answered