Skip to main content

Checking Multiple values

Comments

1 comment

  • David Paras

    Your business scenario can be achieved by using string contains( ) function. Below are the high level steps for achieving your scenario:

    1) Create a global variable in the data mapping in which you have you have to provide the pool of values with which you want to compare the incoming source values.

    2) Apply the textual rule in which use the contains ( ) function which will check whether the incoming value is contained in the values defined in global variable or not. The values will be returned as True or False.

     

    But we recommend to use this only when you are concatenating a small set of values for larger and more values it is not recommended.

    In that case you can store these values in file and can create a second source schema for that file and apply Key function on the basis of which you can transform the output value.

    Refer below link for implementing Key Function:
    http://support.adeptia.com/entries/21281176-Use-Key-function-to-group-source-Header-Details

    0

Post is closed for comments.