The values from my second input are being passed into the functional map. However the value from my first input is not. I am doing a LOOKUP using the first input which it is reading fine. The code I am using is below:
FM_Billing_Record3( Record:Group:In_Metavante, LOOKUP (Record:In_Metavante_Table , FILLLEFT(NUMBERTOTEXT( Division_ID Data:Record:In_Metavante_Table ), "0", 11) = Organizational_Unit_ID# Data:HI_Record<>Record:Group:In_Metavante) )
In the In_Metavante file I am trying to pass one of the fields from the record and it is not reading it in. I have tried several snipets of code including:
=FM_Billing_Record3( Record:Group:In_Metavante, LOOKUP (Record:In_Metavante_Table , FILLLEFT(NUMBERTOTEXT( Division_ID Data:Record:In_Metavante_Table ), "0", 11) = Organizational_Unit_ID# Data:HI_Record<>Record:Group:In_Metavante), Card_Open_Date Data

A_Record<>Record:Group:In_Metavante)
Which should bring the date into the functional map but it is not. I had got to the point where I got caught in an cartesian product. Do you have any other ideas I can try?