Is there something similar to the famous toString() method of C# in Axapta?
I try to run underlying code:
info(this.dataSource());
But it gives me this error message: "Argument 'txt' is incompatible with the required type."
|
Is there something similar to the famous toString() method of C# in Axapta? I try to run underlying code:
But it gives me this error message: "Argument 'txt' is incompatible with the required type." |
||||
|
The
This gives this output:
Probably you knew that already! However the query datasource does give something useful:
gives the corresponding SQL query:
|
|||||||||
|
|
If you are only looking for the name of the dataSource you can do the following:
|
|||
|
|
|
You can also use
not tested... |
|||
|
|
Unfortunately not, but there are a number of "...2Str()" methods for converting base data types to string, for example;
Plus others. |
|||||
|
infoexpects a string value. There is no automatic conversion. – Jan B. Kjeldsen Mar 7 '12 at 15:53