• Nitin Makwana
  • NEWBIE
  • 10 Points
  • Member since 2019

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 6
    Replies
When I click on "Add Product" button in Quote Line Item section on Quote Detail page, search suggest box shows 5 products automatically on the load of the "Add Product" window.

See below screen shot.

User-added image

I would like to disable/remove auto search suggest feature in Lightning when on "Add Product' window.

Can anyone help/assist me to make this possible?

 
My client would like to display/show logged in user's name, job title and phone number in "Text / Image" field in Quote Template.

User-added image

So how can I accomplish this task?
 
I would like to auto populate Contact's email address in "To" field when sending Quote by Email using "Email" tab in Activity Section on Quote Detail page.

Currently I see blank/empty value in "To" field when selecting "Email" tab.

User-added image

But if I select "Email Quote" link from top right menu which opens up by clicking down arrow, I get email address of Contact auto populated in "To" field.

User-added image

So can anyone help me/assist me to auto populate contact's email address in "To" field in "Email" tab in Activity Section?


 
Hi,

I have created following APEX TRIGGER so that whenever a new job is created on SalesForce, a Task is created on JIRA CORE.

trigger JobTrigger on Contract (after insert, after update) {
    if (Trigger.isInsert && Trigger.isAfter) {
        JCFS.API.createJiraIssue('10000', '10100');
    }
    if (Trigger.isUpdate && Trigger.isAfter) {
        JCFS.API.pushUpdatesToJira();
    }
}

Now when I deploy this trigger from Sandbox to Production, I get following error:

Code Coverage Failure
Your organization's code coverage is 0%. You need at least 75% coverage to complete this deployment. Also, the following triggers have 0% code coverage. Each trigger must have at least 1% code coverage.
- JobTrigger

So can anyone help me how can I resolve this error that I can deploy this trigger to Production from Sandbox without any error?

Thanks,
Nitin.
When I click on "Add Product" button in Quote Line Item section on Quote Detail page, search suggest box shows 5 products automatically on the load of the "Add Product" window.

See below screen shot.

User-added image

I would like to disable/remove auto search suggest feature in Lightning when on "Add Product' window.

Can anyone help/assist me to make this possible?

 
My client would like to display/show logged in user's name, job title and phone number in "Text / Image" field in Quote Template.

User-added image

So how can I accomplish this task?
 
I would like to auto populate Contact's email address in "To" field when sending Quote by Email using "Email" tab in Activity Section on Quote Detail page.

Currently I see blank/empty value in "To" field when selecting "Email" tab.

User-added image

But if I select "Email Quote" link from top right menu which opens up by clicking down arrow, I get email address of Contact auto populated in "To" field.

User-added image

So can anyone help me/assist me to auto populate contact's email address in "To" field in "Email" tab in Activity Section?


 
Hi,

I have created following APEX TRIGGER so that whenever a new job is created on SalesForce, a Task is created on JIRA CORE.

trigger JobTrigger on Contract (after insert, after update) {
    if (Trigger.isInsert && Trigger.isAfter) {
        JCFS.API.createJiraIssue('10000', '10100');
    }
    if (Trigger.isUpdate && Trigger.isAfter) {
        JCFS.API.pushUpdatesToJira();
    }
}

Now when I deploy this trigger from Sandbox to Production, I get following error:

Code Coverage Failure
Your organization's code coverage is 0%. You need at least 75% coverage to complete this deployment. Also, the following triggers have 0% code coverage. Each trigger must have at least 1% code coverage.
- JobTrigger

So can anyone help me how can I resolve this error that I can deploy this trigger to Production from Sandbox without any error?

Thanks,
Nitin.