I would write on the forum because I can not find a viable solution to my problem.
I have a variable of type string "1002" for example. The problem is that this variable can contain letters such as the value "AC31". Or if I have a letter, I want to assign the following value "Aircraft_NA'' to my variable. If instead I do not have a letter I do my usual treatment is a simple concatenation.I initiated a solution which is as follows:
Code: Select all
If(StringToNumber(vMsn) > 0);
vNewMSN = 'MSNID_' | vMSN;
Else;
vNewMSN = 'Aircraft_NA';
EndIf;
So I'm stuck. I have can not be taken the right angle of attack can be you get to tell me what to follow. Thank you in advance for your help
