Adjust currencies batch job

Fidelis_DereraFidelis_Derera Member Posts: 9
Is it possible to make the Adjust currencies batch job to adjust the Banks only and not Banks, Customers and Vendors? If i have to how would i customize it to adjust Banks only?

Comments

  • stanpstanp Member, Microsoft Employee Posts: 13
    Add a checkbox to the request form. Name it somehow like "Adjust Bank Only".
    Then in OnPreDataItem() triggers of dataitems for Customers/Vendors put:
    DataItemTable=Table18/23;
            ...
            OnPreDataItem=BEGIN
                            IF AdjustBankOnly THEN
                              CurrReport.BREAK;
    
    Stan Pesotskiy
    Senior SDE - Dynamics Nav Application - Microsoft

    This posting is provided "AS IS" with no warranties, and confers no rights.
  • Fidelis_DereraFidelis_Derera Member Posts: 9
    the solution works perfectly, thank you.
Sign In or Register to comment.