It looks like you're new here. Sign in or register to get started.
SHELL(STRSUBSTNO ....
=FORMAT(ae."Cross-Reference No.")
Comments
I do need help in this field..Cause I've tried everything.. ](*,) ](*,) ](*,)
A Code and a text variable are almost treated the same in Navision.
The only difference is that a code field is always in uppercase.
You can 'convert' a text to code and vica versa without a Navision function
So:
TextVariable := CodeVariable
Or:
CodeVariable := TextVariable
Or in your case something like this:
SHELL(STRSUBSTNO('%1',ae."Cross-Reference No."));
You are using FORMAT coprrectly... there must be error somewhere else...
text := FORMAT(code); is correct....
PLease, send part o the code or more info...
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
I've solved my problem.I should read more FAQ's and manuals and I did so.Anyway,thnx for help!