By using this website, you agree to our Terms of Use (click here)
How can I change the AR301000 Invoice and Memos type name "Invoice" to "Tax Invoice"?
This is as I would like our invoices sent to customers to say Tax Invoice instead of just Invoice.
I can change Sales Order names at SO2010PL Order Types, but can't find something similar for invoices.
Or is there another way to do this?
Also the formula for this text box on the invoice form is =[ARInvoice.DocType]
Hey,
Try this formula, I believe you are from Australia?
=IIf([MYOrg.JurisdictionCountryID]='AU',
IIf(((InStr([@FirstTimePrintedEmailed], ',' + [ARInvoice.DocType.Raw] + ';' + [ARInvoice.RefNbr] + ',') >= 0)='True') Or ([CounterEmailsForReport.FirstEmail]='True' And [ARInvoice.Printed]='False') ,
IIf([ARInvoice.DocType]='CRM' Or [ARInvoice.DocType]='RCS','Credit Adjustment Note',
IIf([ARInvoice.DocType]='DRM' Or [ARInvoice.DocType]='SMC','Debit Adjustment Note','Tax Invoice')),
IIf([ARInvoice.DocType]='CRM' Or [ARInvoice.DocType]='RCS' ,'Credit Adjustment Note',
IIf([ARInvoice.DocType]='DRM' Or [ARInvoice.DocType]='SMC','Debit Adjustment Note',
'Tax Invoice'))),
IIf([MYOrg.JurisdictionCountryID]='NZ',
IIf(((InStr([@FirstTimePrintedEmailed], ',' + [ARInvoice.DocType.Raw] + ';' + [ARInvoice.RefNbr] + ',') >= 0)='True') Or ([CounterEmailsForReport.FirstEmail]='True' And [ARInvoice.Printed]='False') ,
IIf([ARInvoice.DocType]='CRM' Or [ARInvoice.DocType]='RCS' ,'Credit Note',
IIf([ARInvoice.DocType]='DRM' Or [ARInvoice.DocType]='SMC','Debit Note','Tax Invoice')),
IIf([ARInvoice.DocType]='CRM' Or [ARInvoice.DocType]='RCS' ,'Copy Credit Note',
IIf([ARInvoice.DocType]='DRM' Or [ARInvoice.DocType]='SMC','Copy Debit Note',
'Copy Tax Invoice'))),
IIf([ARInvoice.DocType]='CRM' Or [ARInvoice.DocType]='RCS' ,'Credit Note',
IIf([ARInvoice.DocType]='DRM' Or [ARInvoice.DocType]='SMC','Debit Note','Tax Invoice'))))
Thanks Carl, works perfectly!
Yes we are Australian based.