Skip Sync records in PM

how to skip sync record node in process module if no change in the data to previous data 

here there is no change in data so it is showing error

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer

    I suggest you add an xor node between the Execute SP node and sync record node. Put condition in the xor to check whether the cdt or value in field 'rowId_int' is null or not. 

    or(pv!CR_APP_EntityRating,a!isNullOrEmpty(property(pv!CR_APP_EntityRating,"rowId_int",{})))
     

    If its true then process should skip the sync record node else it should flow into it. 

    Note: If you have a record then accordingly provide the record field reference for rowId_int instead of "rowId_int" within the property() function in XOR condition.

Reply
  • 0
    Certified Lead Developer

    I suggest you add an xor node between the Execute SP node and sync record node. Put condition in the xor to check whether the cdt or value in field 'rowId_int' is null or not. 

    or(pv!CR_APP_EntityRating,a!isNullOrEmpty(property(pv!CR_APP_EntityRating,"rowId_int",{})))
     

    If its true then process should skip the sync record node else it should flow into it. 

    Note: If you have a record then accordingly provide the record field reference for rowId_int instead of "rowId_int" within the property() function in XOR condition.

Children
No Data