1. In admaxjmslistener.properties, change com.thesearchagency.admaxlistener.searchengines.google.maxCampaignsPerAccount to equal 1 and restart the listener. Create an order and deploy. Check the gce_googleAccount and searchEngineUsers tables to make sure that more than one account was created: mysql> SELECT id, accountID, customerID, descriptiveName, currencyCode, timeZoneId, parentClientCustomerID FROM content_editor_google.gce_googleAccount where descriptiveName like '42b3cad5-e34f-4cfa-95c3-ec8435ffca44%'; +-----+-----------+------------+----------------------------------------+--------------+------------------+------------------------+ | id | accountID | customerID | descriptiveName | currencyCode | timeZoneId | parentClientCustomerID | +-----+-----------+------------+----------------------------------------+--------------+------------------+------------------------+ | 625 | 651 | 1967875104 | 42b3cad5-e34f-4cfa-95c3-ec8435ffca44_1 | USD | America/New_York | 5920698163 | | 626 | 651 | 4081791875 | 42b3cad5-e34f-4cfa-95c3-ec8435ffca44_2 | USD | America/New_York | 5920698163 | +-----+-----------+------------+----------------------------------------+--------------+------------------+------------------------+ mysql> SELECT id, accountID, searchEngineIdentifier, description, enabled, inTsaMcc, managerIDs, lastChecked FROM tsacommon.searchEngineUsers where description like '42b3cad5-e34f-4cfa-95c3-ec8435ffca44%'; +-----+-----------+------------------------+----------------------------------------+---------+----------+------------+---------------------+ | id | accountID | searchEngineIdentifier | description | enabled | inTsaMcc | managerIDs | lastChecked | +-----+-----------+------------------------+----------------------------------------+---------+----------+------------+---------------------+ | 625 | 651 | 1967875104 | 42b3cad5-e34f-4cfa-95c3-ec8435ffca44_1 | true | true | 5920698163 | 2014-01-20 19:20:41 | | 626 | 651 | 4081791875 | 42b3cad5-e34f-4cfa-95c3-ec8435ffca44_2 | true | true | 5920698163 | 2014-01-20 19:20:41 | +-----+-----------+------------------------+----------------------------------------+---------+----------+------------+---------------------+ 2. Wait for sapi to set the budget accrual status to active (see aml-2378-resolved.txt for the successful request and response). Get the AdMax campaign ID from `st-tracker`.admaxCampaigns. mysql> SELECT * FROM `st-tracker`.admaxCampaigns where description like '42b3cad5-e34f-4cfa-95c3-ec8435ffca44%'; +------+------------+----------------------------------------------------+-----------+--------------------+--------+ | id | identifier | description | accountID | campaignGroupingID | status | +------+------------+----------------------------------------------------+-----------+--------------------+--------+ | 1212 | 3843 | 42b3cad5-e34f-4cfa-95c3-ec8435ffca44_10004_29_3843 | 651 | 0 | Active | +------+------------+----------------------------------------------------+-----------+--------------------+--------+ 3. Check the admaxCampaignBudgetAccrualStatus table to make sure the budget accrual was successfully set to active. mysql> SELECT * FROM `st-tracker`.admaxCampaignBudgetAccrualStatus where admaxCampaignID=1212; +------+-----------------+------------+---------+--------+ | id | admaxCampaignID | startDate | endDate | status | +------+-----------------+------------+---------+--------+ | 1847 | 1212 | 2014-01-20 | NULL | active | +------+-----------------+------------+---------+--------+