Hi there,
In navision table Detailed Vendor Ledg. Entry
field name:Doc type-option,
In properties: Option string:,Payment,Invoice,Credit Memo,Finance Charge Memo,Reminder,Refund
when i select doc type using sql like this:
select doc type from Detailed Vendor Ledg. Entry
it will display result:
doc type
1
2
3
has anybody have an idea how to display data like this:
doc type
payment
invoice
credit memo
thank you..
0
Comments
@tmpTable and fill this temp table and make then a join in the select.
A other (fast) is a the following
Maybe it's also possible with a varchar variable and then with cast() and convert() and the IN() method. But i doesn't know this way.....
Regards