Unable to select billing location for quoteDescriptionThe customer cannot select a billing location for a quote because the reference qualifier condition doesn't result in any locations due to a malformed query. - Customer set the property "enable_account_address_sharing" to false since they are not using this; therefore, the control navigates to ethe lse condition in the getLocationsForAccount method- In the SI ReferenceQulifierUtilImpl line 97, we are querying on the cmn_location table on the field account, which is not present on the tableSteps to Reproduce The property enable_account_address_sharing should be set to false 1. Navigate to CSM/FSM Workspace > Quotes>All2. Click on 'New' and Select Customer(Account) as 'Testing 01' ( This account has location mapped)3.Click 'Add line items' it will redirect to the new Quote record created.4. Go to the 'Billing Location' field in the 'Billing Address' section and try to select a location. It will not display any location.WorkaroundIn the SI ReferenceQualifierUtilImpl and method getLocationsForAccount, line 97 "return this._getListForTable('cmn_location', 'account', account);" needs to be updated to "return this._getListForTable('cmn_location', 'company', account);"Related Problem: PRB1923450