• testing123
  • NEWBIE
  • 0 Points
  • Member since 2012

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 1
    Replies

Hello !

 

I have created one app and give it "Assign to Profiles" to all visible and defaule rights checkboxes

 

Now i have used that app in my package which i released.

 

So, now i want to delete this app but i cannot as it is assigned to profiles.

 

What to do to remove this app?

 

Help me asap ! Thanks !

Hello !

 

I have created application same as given link:

 

http://wiki.developerforce.com/page/Force.com_for_ASP.NET_Developers

 

but i have made soime changes to apex class as follows:

 

global class GetLeadInfo {

  WebService static Lead GetLeadAddressByEmail(string LeadEmail) {
      Lead l= new Lead();
    List<Lead> c= new List<Lead>();
    c = [SELECT Street, City, State, PostalCode from Lead WHERE Email = :LeadEmail];
    if (c.size() > 0)
    {
        l = new Lead(Street = c[0].Street, City = c[0].City, State = c[0].State, PostalCode = c[0].PostalCode);
    }
    return l; 

  }
}

but i am not able to see response of city,state and etc. Though i am not getting any error but i am not getting any data too !

 

help me asap!

 

Thanks & Regards !

Hello !

 

I have created application same as given link

 

http://wiki.developerforce.com/page/Force.com_for_ASP.NET_Developers

 

but i have made soime chages to class as follows:

 

global class GetLeadInfo {

  WebService static Lead GetLeadAddressByEmail(string LeadEmail) {
      Lead l= new Lead();
    List<Lead> c= new List<Lead>();
    c = [SELECT Street, City, State, PostalCode from Lead WHERE Email = :LeadEmail];
    if (c.size() > 0)
    {
        l = new Lead(Street = c[0].Street, City = c[0].City, State = c[0].State, PostalCode = c[0].PostalCode);
    }
    return l; 

  }
}

but i am not able to see response of city,state and etc. Though i am not getting any error but i am not getting any data too !

 

help me asap!

 

Thanks !

Hello !

 

I have created application same as given link:

 

http://wiki.developerforce.com/page/Force.com_for_ASP.NET_Developers

 

but i have made soime changes to apex class as follows:

 

global class GetLeadInfo {

  WebService static Lead GetLeadAddressByEmail(string LeadEmail) {
      Lead l= new Lead();
    List<Lead> c= new List<Lead>();
    c = [SELECT Street, City, State, PostalCode from Lead WHERE Email = :LeadEmail];
    if (c.size() > 0)
    {
        l = new Lead(Street = c[0].Street, City = c[0].City, State = c[0].State, PostalCode = c[0].PostalCode);
    }
    return l; 

  }
}

but i am not able to see response of city,state and etc. Though i am not getting any error but i am not getting any data too !

 

help me asap!

 

Thanks & Regards !