Getting error A price change cannot be made at this time

While updating the In App Purchase through itms we are getting following error,
A price change cannot be made at this time. (auto-renewable price for 'Apple product', territory 'MM', tier '40')." at Software/SoftwareMetadata/SoftwareInAppPurcha.

How do I solve this issue?
Hello all! Same here, we're trying to upload a new price with iTMSTransporter and we've got the next error:

Code Block
ERROR ITMS-4326: "A price change cannot be made at this time. (auto-renewable price for '*** *** ***', territory 'BG', tier '30')." at Software/SoftwareMetadata/SoftwareInAppPurchaseGroup/SoftwareInAppPurchase/SoftwareSubscriptionPriceList/SoftwareSubscriptionPrice

We are also facing the same problem, also it seems as if price changes with a format like this:

Code Block
<price>
<territory>KG</territory>
<tier>26</tier>
</price>

Are accepted you even get a success response, but then later on there is no actual change in prices.

If we are using this here:

Code Block
<price>
<territory>KG</territory>
<tier>26</tier>
</price>
<price>
<territory>KG</territory>
<tier>26</tier>
<start_date>2021-04-13</start_date>
<keep_previous_tier>true</keep_previous_tier>
</price>


Then we are getting also the mentioned error:

Code Block
ERROR ITMS-4326: "A price change cannot be made at this time. (auto-renewable price for 'subscription-30-bundle-staging01-8', territory 'ZW', start date '2021-04-13', tier '26')." at Software/SoftwareMetadata/SoftwareInAppPurchaseGroup/SoftwareInAppPurchase/SoftwareSubscriptionPriceList/SoftwareSubscriptionPrice
ERROR ITMS-4326: "A price change cannot be made at this time. (auto-renewable price for 'subscription-30-bundle-staging01-8', territory 'VN', start date '2021-04-13', tier '64')." at Software/SoftwareMetadata/SoftwareInAppPurchaseGroup/SoftwareInAppPurchase/SoftwareSubscriptionPriceList/SoftwareSubscriptionPrice
ERROR ITMS-4326: "A price change cannot be made at this time. (auto-renewable price for 'subscription-30-bundle-staging01-8', territory 'ZA', start date '2021-04-13', tier '52')." at Software/SoftwareMetadata/SoftwareInAppPurchaseGroup/SoftwareInAppPurchase/SoftwareSubscriptionPriceList/SoftwareSubscriptionPrice

To add to my previous comment to avoid confusion as my example actually had the same price twice, we are actually trying to update it with different price tiers :)

Code Block
<price>
<territory>KG</territory>
<tier>26</tier>
</price>
<price>
<territory>KG</territory>
<tier>27</tier>
<start_date>2021-04-13</start_date>
<keep_previous_tier>true</keep_previous_tier>
</price>

Getting error A price change cannot be made at this time
 
 
Q