how can i search a particular variable in variable list

saif1234saif1234 Member Posts: 2
ant body can solve my problem if we declare more variablers in globles how can i search a particular varibles in list

Comments

  • krikikriki Member, Moderator Posts: 9,110
    [Topic moved from Navision Exams & Certification forum to Navision forum]

    You can't. But you can help to avoid the problem:
    -put them in order used by standard Navision.
    -use as much as possible LOCAL variables.
    Regards,Alain Krikilion
    No PM,please use the forum. || May the <SOLVED>-attribute be in your title!


  • Revolution1210Revolution1210 Member Posts: 161
    saif1234 wrote:
    ant body can solve my problem if we declare more variablers in globles how can i search a particular varibles in list

    You can't search C/AL Globals unfortunately.

    If you structure and maintain your variables well then this should reduce the need to search, e.g., Record type variables first, then Codeunits, then forms, reports, text, code, integer, etc. etc.

    Keep everything of the same type together and you should find things a lot easier.
    Ian

    www.NextEqualZero.com
    A technical eye on Dynamics NAV
  • DenSterDenSter Member Posts: 8,305
    IIRC there was a discussion about finding field names in the table designer, and that might also work on variables. Something about selecting the whole line and pressing the key, and it would jump to the first field starting with that letter. I don't know for sure though, so give it a try.
  • Revolution1210Revolution1210 Member Posts: 161
    DenSter wrote:
    IIRC there was a discussion about finding field names in the table designer, and that might also work on variables. Something about selecting the whole line and pressing the key, and it would jump to the first field starting with that letter. I don't know for sure though, so give it a try.

    it's true, it does yes - however you have to then reselect the line agin if you want to search again :?
    Ian

    www.NextEqualZero.com
    A technical eye on Dynamics NAV
  • DenSterDenSter Member Posts: 8,305
    Better than "it's not possible" :mrgreen:
  • BeliasBelias Member Posts: 2,998
    and than ctrl+c, paste in excel, ctrl+f, search the variable, read fieldno (or note the approx position in the list), go back to nav and find the variable/field :mrgreen:
    -Mirko-
    "Never memorize what you can easily find in a book".....Or Mibuso
    My Blog
  • Revolution1210Revolution1210 Member Posts: 161
    DenSter wrote:
    Better than "it's not possible" :mrgreen:

    true, but only just :D
    Ian

    www.NextEqualZero.com
    A technical eye on Dynamics NAV
  • DenSterDenSter Member Posts: 8,305
    Indeed, a very close call :mrgreen:
Sign In or Register to comment.