Mass changing state in 3.10a

yuppicideyuppicide Member Posts: 410
edited 2007-08-02 in Navision Attain
In our Navision 3.10a we have some addresses with VI for Virgin Islands and some with USVI for United States Virgin Islands.

Is there an easy way to take all the ones that say USVI and convert them to be just VI?

Comments

  • SavatageSavatage Member Posts: 7,142
    how about creating a 1 time update report.

    Make a new report using Customer as the dataitem
    on the report

    OnAfterGetRecord()
    Customer.State := 'VI';
    Customer.MODIFY;

    Save. & when you run it use the request form filters
    State :USVI

    then only customers with USVI will be selected and they will have their state changed to VI
    ----
    If you want to feel safer open the customer table filter on state for USVI.
    type VI in the first field->Highlight->Ctrl-C (to Copy) then arrow down & Ctrl-V (to Paste) & so on & so on. How many could there possibly be???
    ----
    Same thing works from the customer card. Filter on USVI on state, type VI in the first field->Highlight->Ctrl-C (to Copy) then click the next record & Ctrl-V (to Paste) & so on & so on.
Sign In or Register to comment.