I have 4 linked entities: 1) Accounts, 2) TaxTable 3) Purchase Order 4) Case
Here is my code:
//Link Builder to Job
accountId = case.accountId;
taxCity = case.siteAddressCity;
//Figure Tax
ifThenElse(
account.taxExempt == true,
applicableTax = 'EXEMPT',
applicableTax = number\round(taxRate1 * subtotal, 2)
);
I need to link taxCity to taxTableName
Maximus Can you help me figure out why the taxTable does not auto-link if I use:
taxTableName = taxCity;
???
Here is my code:
//Link Builder to Job
accountId = case.accountId;
taxCity = case.siteAddressCity;
//Figure Tax
ifThenElse(
account.taxExempt == true,
applicableTax = 'EXEMPT',
applicableTax = number\round(taxRate1 * subtotal, 2)
);
I need to link taxCity to taxTableName
Maximus Can you help me figure out why the taxTable does not auto-link if I use:
taxTableName = taxCity;
???
Comment