-
ChatterFeed
-
0Best Answers
-
0Likes Received
-
0Likes Given
-
5Questions
-
3Replies
Can we use apex code language script code within SControl...
I don't have much idea about S-Controls,I would like to know can we use Apex code language method within S-Controls to avoid an API call?
Is there any limitation or so?can u suggest any gud link to learn more about S-Controls.
Vineeta
-
- Vineeta
- September 19, 2007
- Like
- 0
- Continue reading or reply
Can we use apex code language script code within SControl!!!!!!!!
I don't have much idea about S-Controls,I would like to know can we use Apex code language method within S-Controls to avoid an API call?
Is there any limitation or so?can u suggest any gud link to learn more about S-Controls.
Vineeta..
-
- Vineeta
- September 19, 2007
- Like
- 0
- Continue reading or reply
Facing problem in installing ApexToolkit10.0 ......
Hi friends
I am trying to install Apex toolkit10.0 from http://www.adnsandbox.com/eclipsetoolkit/10.0/. I had followed all the steps as per
I have installed eclipse-SDK-3.2.2-win32. After that as per instruction started with apex toolkit but mean while installation failed when I reached at step 7 “Select Required” from eclipse got this error message” Apex Toolkit for Eclipse (8.1.0.200708160841) requires plug-in "org.apache.axis".”
Please let me know how and from where install eclipse with Apex Toolkit 10.0 successfully.
Its urgent……….. J, please reply ASAP. Thanks in advanced.
Vineeta..
-
- Vineeta
- September 18, 2007
- Like
- 0
- Continue reading or reply
any clue for this exception
Error: Invalid Data.
Review all error messages below to correct your data.
Apex trigger MyContactTrigger caused an unexpected exception, contact your administrator: MyContactTrigger: execution of AfterUpdate caused by: System.Exception: Record is read-only:
while Contact has full rites ,I m not able to update Email Field through this code
trigger MyContactTrigger on Contact (after insert , after update) {
if(Trigger.isAfter)
{
if((Trigger.isInsert) || (Trigger.isUpdate))
{
set <Id> OwnerId = new set <Id>();
for (Contact c :trigger.new)
{
OwnerId.add(c.OwnerId);
User[] user = [Select Email from User where Id in: OwnerId];
string Email = user[0].Email;
// c.Description = Email;
if(c.Email== null)
c.Email = '';
c.Email = Email;
//system.assertEquals(Email,c.Email);
//Update c;
}
}
}
}
-
- Vineeta
- August 30, 2007
- Like
- 0
- Continue reading or reply
Please help me in writing After trigger
{
if((Trigger.isInsert) || (Trigger.isUpdate))
{
for (Contact c :trigger.new)
{
Contact[] OwnerId = [Select OwnerId from Contact where Id in :Trigger.new];
c.Email =[Select E_mail from User where Id =OwnerId[0]];}
}
}
}
}
-
- Vineeta
- August 29, 2007
- Like
- 0
- Continue reading or reply
Can we use apex code language script code within SControl!!!!!!!!
I don't have much idea about S-Controls,I would like to know can we use Apex code language method within S-Controls to avoid an API call?
Is there any limitation or so?can u suggest any gud link to learn more about S-Controls.
Vineeta..
- Vineeta
- September 19, 2007
- Like
- 0
- Continue reading or reply
Facing problem in installing ApexToolkit10.0 ......
Hi friends
I am trying to install Apex toolkit10.0 from http://www.adnsandbox.com/eclipsetoolkit/10.0/. I had followed all the steps as per
I have installed eclipse-SDK-3.2.2-win32. After that as per instruction started with apex toolkit but mean while installation failed when I reached at step 7 “Select Required” from eclipse got this error message” Apex Toolkit for Eclipse (8.1.0.200708160841) requires plug-in "org.apache.axis".”
Please let me know how and from where install eclipse with Apex Toolkit 10.0 successfully.
Its urgent……….. J, please reply ASAP. Thanks in advanced.
Vineeta..
- Vineeta
- September 18, 2007
- Like
- 0
- Continue reading or reply