Hi,
Like Fábio mentioned, if you're trying to convert a Text to an Id of type Integer you need to:
- Convert text to integer or long integer and then to identifier, so something like this IntegerToIdentifier(TextToInteger(<textValue>);
If you're trying to convert a Text to an Id of type Text you only need to apply TextToIdentifier(<textValue>).
If you do this, the warnings will go away because you're assigning integer identifiers to integer identifiers and text identifiers to text identifiers.
Cheers,
João