An early version of a managed package distributed to a sampling of your intended audience to test it.

learn more… | top users | synonyms

4
votes
1answer
29 views

Updating UI Settings with a Managed Package

I'm wondering if it's possible to update standard UI settings with a Managed Package? I've created a package dependent on some key settings, so I'd like a Trigger that will look at whether or not ...
2
votes
1answer
34 views

Publishing profile security settings

I have a custom tab. I have decided by default a particular user profile should not be able to see this tab. So I go into set up / manage profiles / theprofile and make this tab hidden for the ...
3
votes
1answer
45 views

Upgrading email template

I have a package and make changes to an email template. Obviously, if I uninstall previous versions of the package and install a new version the template everything will be hunky dory. But, if I ...
3
votes
1answer
55 views

Track Activities value for a custom object

I have a custom object. I enable Track Activities for this custom object and then I create a managed beta. If this managed beta is installed in a new org, the track activities will be enabled for ...
5
votes
1answer
47 views

Flows calling objects in managed packages

I'm wondering if someone has a best practice / blueprint which works better than the following scenario that I've got myself into: Created a managed package in a D.E. org which contains a Flow ...
1
vote
1answer
26 views

Reference from page to SObject which is another package

I have a reference in VF page to a SOBject from another package like this... <apex:pageBlockTable value="{!UsageStats}" var="usageStatRecord"> <apex:column ...
2
votes
0answers
50 views

Spring '13 Sandbox error with beta-package install

I'm installing a beta package into a Spring '13 Sandbox org. Previously we didn't have any issues with installing into this sandbox, but now I am getting an error, which our partner support has ...
4
votes
1answer
45 views

Cannot execute batch class from a managed beta?

My project has a batch class. Before I package my project into a managed beta, I test I can run the batch class from the Developer console. My_Batch b = new My_Batch(); Database.executeBatch(b); ...
1
vote
1answer
40 views

Checking your type of Org

I am trying to create a beta managed package. According to this: http://wiki.developerforce.com/page/How_to_Create_and_Register_a_Package#Unmanaged_vs._Managed ONLY Developer Edition can create ...
1
vote
1answer
32 views

How do I update package in an org that already contains the earlier package?

I want to upload the updated package version 2 in package org but the package org already contains version 1 of the package. Now it might be a conflict if I upload the version 2 package in package ...
6
votes
3answers
78 views

Autoinstall Packages

Has anyone worked out a clever way to auto install/uninstall packages from their orgs? I know this isn't natively supported but is a real pain point for iterating. I have soap api driven calls to ...
2
votes
1answer
122 views

How to release the a lock on Apex Class from Scheduled Job

Is there a way to release a "lock" on an Apex class after the scheduled job that was using that class has been deleted? For some reason, this "lock" is still active and is preventing me from ...
1
vote
2answers
94 views

Unable to uninstall Beta Release managed package: recordtype being used

This package includes a Record Type on the Task object. I am able to uninstall if I do it right after installation, but if I enable the use of the packaged Record Type on the user profiles, I am no ...
4
votes
2answers
219 views

Upgrade from a Beta managed package install to the full Release version

In a sandbox I had the current production release v1.14 of a managed package installed. In the developer Org I created a new v1.15 Beta managed package to test out the features for the next release. ...