You need to sign in to do that
Don't have an account?

Get NameSpace Dynamicaly
i have uploaded my package successfully.
but when installing in onother org than some of my app's pages are not grtting perfect url with namespace so its giving "no page found. create new page." error.
so i need to update url with Namespace of my package.
so is there any way to do it.
its urgent ...
you can get Namespace Prefix,by using following query
ApexClass cs = [SELECT NamespacePrefix FROM 'Apex class name from package name'];
String namespace = cs.NamespacePrefix;
or you can retrieve namespace from all the classes,
List<ApexClass> cs = [SELECT NamespacePrefix FROM ApexClass];
String namespace = cs[0].NamespacePrefix;
Thanks,
Akshaykumar