• sylar2
  • NEWBIE
  • 0 Points
  • Member since 2011

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 5
    Replies

Email Alert through Workflow does not create an Activity History for a case.

I also enabled Email-to-Salesforce. (To do this, go to:  Setup | Email Administration | Email to Salesforce)

But that doesn't help.

 

Does SFDC doesn't allow any workaround for this?

  • February 23, 2011
  • Like
  • 0

I am trying to create a page where i can have a package with two fields as services appearing by default.

 

It should look like:

 

Package 1:

 

Service: <Picklist>                       Service: <Picklist>

 

Cklick to ADD more services

<Adds one more line dynamically with option to add two more services just below it in the same page>

---------------------------------------------------------------------------------------------------------

Click to ADD more Package

 

 

 

Dont know how to work it out. Please Help

  • February 23, 2011
  • Like
  • 0

I am trying to create a page where i can have a package with two fields as services appearing by default.

 

It should look like:

 

Package 1:

 

Service: <Picklist>                       Service: <Picklist>

 

Cklick to ADD more services

<Adds one more line dynamically with option to add two more services just below it in the same page>

---------------------------------------------------------------------------------------------------------

Click to ADD more Package

 

 

 

Dont know how to work it out. Please Help

  • February 23, 2011
  • Like
  • 0

I'm new to apex and i have somehow managed to create a trigger in sandbox. It works fine.

The only issue is when i try to inbound change to production. Trigger deployment fails and covers only 0% of code.

 

I know the reason is i haven't created any test class for the trigger.

I don't know how to create one.

Please help.

 

following is my trigger.

 

trigger changeowner on Case (before insert,before update) {
    for(Case c : Trigger.new) {
        if (c.Status == 'Closed to Case Owner' ) {
            String createId = c.CreatedById;
            c.OwnerId = createId.subString(0, 15);
        }
    }
}

 

  • February 18, 2011
  • Like
  • 0

Email Alert through Workflow does not create an Activity History for a case.

I also enabled Email-to-Salesforce. (To do this, go to:  Setup | Email Administration | Email to Salesforce)

But that doesn't help.

 

Does SFDC doesn't allow any workaround for this?

  • February 23, 2011
  • Like
  • 0

I am trying to create a page where i can have a package with two fields as services appearing by default.

 

It should look like:

 

Package 1:

 

Service: <Picklist>                       Service: <Picklist>

 

Cklick to ADD more services

<Adds one more line dynamically with option to add two more services just below it in the same page>

---------------------------------------------------------------------------------------------------------

Click to ADD more Package

 

 

 

Dont know how to work it out. Please Help

  • February 23, 2011
  • Like
  • 0

I'm new to apex and i have somehow managed to create a trigger in sandbox. It works fine.

The only issue is when i try to inbound change to production. Trigger deployment fails and covers only 0% of code.

 

I know the reason is i haven't created any test class for the trigger.

I don't know how to create one.

Please help.

 

following is my trigger.

 

trigger changeowner on Case (before insert,before update) {
    for(Case c : Trigger.new) {
        if (c.Status == 'Closed to Case Owner' ) {
            String createId = c.CreatedById;
            c.OwnerId = createId.subString(0, 15);
        }
    }
}

 

  • February 18, 2011
  • Like
  • 0