• Keer Yenduri
  • NEWBIE
  • 30 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 10
    Questions
  • 25
    Replies
Hi,

when i created new app with name "MyApp" after that i opened objects but what  happened is i could able to see the previous app name "Sales"  of OBJECTS.   So i don't want the previous app OBJs in new app "MyApp".
During that what i need to make privileges or something please let me know.


Thanks,
Keer
Hi,

I want to know how we can create or update https in salesforce please let me know its very urgent.
Hi,

Please let me know what is the sfdc tool to pass endpoint url it generates apex class except in wsdl file uploading.
please it's very urgrnt kindly let me know.


Thanks,
Hi,
i want the programe on update customer regarding this i want the code using apex classes.

Thanks
public with sharing class DemoController
{
String LoggedInUserId;
public DemoController(ApexPages.StandardController controller)
{
LoggedInUSerId = UserInfo.getUserId();
}
}

in this program i want to execute in developer console:
i wrote like this
DemoController obj =new DemoController();
but it's not getting
I need that program solution plz helpme out
trigger Comparision on Account(before update)
{
    for(Account acc : Trigger.new)
    {
    Account oldAccount = Trigger.oldMap.get(acc.ID)
        if(acc.AccountNumber!=oldAccount.AccountNumber)
        {
        System.debug('Account number is changed');
        System.debug('old account');
        System.debug('new account');
        acc.Type = 'prospect';
        }
        else
        {
        System.debug('number has not been changed');
        acc.Type = 'other';
        }

    }
}

in this program i got this error like:
Compile Error: unexpected token: 'trigger' at line 1 column 0



 
how to get the field values using controllers only without getter and setter methods in salesforce?
Hi,
Bob

r u der?
i want the solution for that i posted my account"keer yenduri".
Hi,
public class MyHelloWorld
{

 

public static void applyDiscount(Boook__c[] books)
{
for(Boook__c b:books)
b.Prise__c*=0.9;
}
}
when i am trying to executive this class it's getting error,plz urgent.


Thanks!!
Hi,

when i created new app with name "MyApp" after that i opened objects but what  happened is i could able to see the previous app name "Sales"  of OBJECTS.   So i don't want the previous app OBJs in new app "MyApp".
During that what i need to make privileges or something please let me know.


Thanks,
Keer
Hi,

I want to know how we can create or update https in salesforce please let me know its very urgent.
Hi,
i want the programe on update customer regarding this i want the code using apex classes.

Thanks
public with sharing class DemoController
{
String LoggedInUserId;
public DemoController(ApexPages.StandardController controller)
{
LoggedInUSerId = UserInfo.getUserId();
}
}

in this program i want to execute in developer console:
i wrote like this
DemoController obj =new DemoController();
but it's not getting
I need that program solution plz helpme out
trigger Comparision on Account(before update)
{
    for(Account acc : Trigger.new)
    {
    Account oldAccount = Trigger.oldMap.get(acc.ID)
        if(acc.AccountNumber!=oldAccount.AccountNumber)
        {
        System.debug('Account number is changed');
        System.debug('old account');
        System.debug('new account');
        acc.Type = 'prospect';
        }
        else
        {
        System.debug('number has not been changed');
        acc.Type = 'other';
        }

    }
}

in this program i got this error like:
Compile Error: unexpected token: 'trigger' at line 1 column 0



 
Hi,
public class MyHelloWorld
{

 

public static void applyDiscount(Boook__c[] books)
{
for(Boook__c b:books)
b.Prise__c*=0.9;
}
}
when i am trying to executive this class it's getting error,plz urgent.


Thanks!!