How to make one to one maping using Data datatransform

I have a task like there two properties

  1. Entry Type which dropdown with some prompt Values

  2. SourceID

Now depending upon Entry type value I need to display SourceID Value

Eg. If Entry type = abc I need to display SourceID = CBA

Can Anyone tell me how to make one to one map using Data Trabsform

Hi @AVINASHL4108, there are many ways to achieve this:

  1. If the number of dropdown values are less then you can use “When” conditions in the data transforms like this:

  1. If you have a data table which has values mapped for entry type and source id, then create a Dpage which passes the entry type as param and return the source id

  2. If you do not have a table with mapped values, create a decision table which takes in entry type as param and return the source id. (Use ObtainValue function)

Hope this information helps!!

Thanks,

Saurabh.