i did a customization to my training tenant.
but after publish it,
some how it looks like it have affect our live tenant.
how do i resolve this

i did a customization to my training tenant.
but after publish it,
some how it looks like it have affect our live tenant.
how do i resolve this

Best answer by Django
You’ll want to log into your live tenant and publish from there. This will revert your live tenant back to the code that you’ve uploaded into the Customization Projects on live.
One way of handling different development paths when you have to use a test tenant next to a live tenant is to use a boolean field to flag if the tenant should be using the new functionality. If the functionality impacts Sales Orders, I might put the toggle option in Sales Preferences, but it can be anywhere that makes sense. Then, in the code, I write something like:
if (useTheNewFeature == true)
{
//use the new code
}
else
{
//use the old code
}This way, if there is a problem, you can simply go to the screen where you’ve placed these toggles and turn off the new functionality while you figure out what’s happening. It gives you the ability to have one code base for both your test tenant and your live tenant.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.