A sandbox is a copy of your production environment that can be used for various purposes such as development, testing, or training. The three types of sandboxes are developer, configuration-only (config-only), and full (full-copy). The login page for sandboxes is https://test.salesforce.com/.

learn more… | top users | synonyms

1
vote
2answers
34 views

Is it possible to temporarily increase dev sandbox 10 MB limit?

we are importing test data and hit our 10MB limit before migrating to our prod org which has 65GB limit. Is there any way to get additional 10MB for 1 week ? At the top of our storage usage are ...
4
votes
1answer
26 views

sandbox copy error?

I just did a full sandbox refresh. Spent a couple hours debugging code before I finally saw where the null pointer was coming from. In my production org, there's a custom object (position) with ...
4
votes
3answers
64 views

How to dynamically update custom links between sandbox and production?

I have a custom link in my sandbox: http://cs7.salesforce.com/00Q/e?name_salut.... However, when deploying to the production, the link is still pointing to the sandbox, while the production is at eu1 ...
3
votes
1answer
39 views

Preventing sandbox from sending Workflow emails to “Additional Emails”

When you create a sandbox in Salesforce.com, the system is appending the sandbox name to every single email, except the "Additional Emails". In our company, since we need to notify some external ...
3
votes
1answer
23 views

Deploying From Sandbox (Enterprise) - loss of permissions, field security, etc

I have been reading up on this particular area of concern and from what I'm reading, it sounds like the solution I've been creating for the past two weeks is going to be a nuisance to deploy from ...
2
votes
3answers
214 views

Returning PageReferences from Init - Not working in sandbox

So either I'm going nuts, or I'm overlooking something obvious, or I'm just encountering some very weird behaviour. The Setup I have a page which calls an Init action in the controller from the page ...
3
votes
2answers
61 views

How can we delete/remove all the customization from production environment

What is the best way to remove all the customization apex classes / pages from production. One way I know is using eclipse, delete the classes in sandbox and deploy the changes in productions. But ...
3
votes
1answer
38 views

Push change set from sandbox to sandbox

Can I connect two of my sandboxes and push change sets from one to the other?
3
votes
2answers
97 views

Change Sets and Sandbox Refresh

If I were to create and upload an outbound Change Set from a Salesforce Sandbox to Production, then (without Deploying the Change Set in Production) refresh the Sandbox, would I still be able to ...
0
votes
1answer
55 views

Salesforce License Provisioning?

Has anyone had experience of getting SFDC to provision licences directly to a sandbox without the need to refresh the box from production?
1
vote
1answer
112 views

Metadata API-based deploys hang in “queued status” since 30.11 (cs7 & cs8 sandbox) [closed]

Is anybody else experiencing this? Several sandboxes in our Unlimited Edition seem to be having issues with deployments today (tested from Eclipse IDE and Migration Tool). The deploys just hang in ...
0
votes
0answers
30 views

Post Manual Steps after Sandbox Refresh [duplicate]

Possible Duplicate: Post Sandbox Refresh Steps I am looking for steps to be followed post Sandbox Refresh. Once, Sandbox Refresh is done, we need to manually enable/re-configure some ...
4
votes
3answers
393 views

What are the differences between Configuration and Developer Sandboxes?

The Sandbox Documentation describes Configuration and Developer sandboxes, but it's hard to tell what's actually different about them: Configuration Only Sandbox Configuration-only sandboxes ...
7
votes
1answer
100 views

Is it possible to clone a Sandbox?

I have a sandbox in which I've done a bunch of development work, and now I'd like to duplicate/clone it. Is there a way to do that directly, or do I have to refresh from production and then deploy ...
2
votes
2answers
281 views

Unable to insert new records into “hierarchy” type Custom Setting

**Update Oct 18 2012: A fix was deployed last night and this is now working as expected. For reference, the Known Issues site had this listed as W-1413524 and it's now marked as Fixed. Background I ...
3
votes
1answer
98 views

How to reverse sandbox refresh without activation

I have clicked refreshed sandbox but I do not want to activate it now. Is there any way to get my sandbox back. I mean can I remove this "activate" option. I am system admin. Please help ASAP. Please. ...
1
vote
1answer
301 views

Isnumeric() method not found

I have used isnumeric() method to check for the strings with only numbers. While deploying to production i am receiving the following error 'Method not found '.
0
votes
1answer
55 views

How can I specify that a sanbox be created on a specific instance?

I looked at the Sandbox Setup Tips, but didn't see anything and I didn't see anything in the process of creating a sandbox for doing this. I'd like to be able to specify which Salesforce instance ...
1
vote
2answers
107 views

Sandbox settings in Single sign on org

I created a new sandbox for my org. I am trying to activate a developer sandbox and I am struck there. All I see is a refresh link and login link. I am unable to see the activation link. I have ...
4
votes
3answers
629 views

Why is migrating changes between multiple orgs such a pain

So I've developed a couple of Salesforce / Force.com projects but the one thing I really hate is migrating changes between orgs. Maybe I'm doing it wrong, or I'm missing tools but something just ...
-1
votes
2answers
137 views

Migrating the custom objects fields [duplicate]

Possible Duplicate: Copying metadata and code from one Production org to another Can anybody tell me how to migrate the custom objects fields etc into a developer environment from sandbox. ...
2
votes
2answers
335 views

Writing Triggers - Apex Test classes - testing in Sandbox with very little data

I'm curious how others test their code in Sandbox when they have a Production environment that has more than 100k records in one or more databases. In my example, we have 350k Leads, and I'm writing ...
9
votes
2answers
344 views

Post Sandbox Refresh Steps

What steps should be taken after a sandbox refresh to avoid filling up the sandbox storage, sending emails, or outbound messages? I'm looking for steps to take such as disable scheduled Apex jobs, ...
2
votes
1answer
93 views

Is it possible to use Office-connect with sandbox?

Is it possible to use Salesforce for office in sandbox ? I would like to test before deploy my custom objects to production.
10
votes
8answers
2k views

Copy Production data to Developer Sandbox

I'm on Enterprise Edition and only have a developer sandbox... (I really miss my Full Copy sandbox and UE). I need to do some tests against "real" data. I have a strict rule of not testing or ...
3
votes
2answers
173 views

Identify or auto-disable Email notifications non-user Email Addresses in Sandbox

I have a number of Email Notifications that are sent to non-users. Sometimes they are contact emails and others it's straight up email address like "MyPoor_NonSalesforce_Coworker@Mywork.com" When I ...
13
votes
4answers
434 views

Can we determine if the Salesforce instance is production org or a Sandbox org?

I am looking for the most efficient way of identifying the type of org (Production or Sandbox) via Apex code. URL scraping is not useful to me, since I'd like to get this information inside a trigger ...