• Ashvin Jadhav 13
  • NEWBIE
  • 25 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 6
    Questions
  • 2
    Replies
Hi, 

Users are sending an email with an outlook email attachments but getting hit with Salesforce-daemon failure emails.

Normal excel attachments did worked fine but with outlook email (.msg) error emails from salesforce are occuring. 

Please help. 

Thanks & Regards,
Ashvin 

 
Trying to send an email to service desk, but emails are getting bounced with error email stating the undeliverable. Following is the line from error email from Salesforce.  

Authentication-Results: apex.salesforce.com; dkim=fail (signature verification failed)

This issue occuring only when email or email replies had attachments, plan text emails are getting sent to cases. Also in email services Accpet Attachments setting has been kept to "All". 

Kindly help. 

Thanks & Regards,
Ashvin
Hi, 

Following error is coming when JS function performing some calculations. 
User-added image


and I have following JS code 
User-added image

Where the value of unitprice is coming as undefined which nothing but a currency type of field. 

can anyone please help me out with this. ? 

Thanks & Regards,
Ashvin
Hi All,

I have inputcheckbox tag as, 
<apex:inputcheckbox value="{!p.selected}" id="CheckOne">
                        <apex:actionSupport event="onclick" action="{!getSelected}" reRender="SelectedItems" />
                    </apex:inputcheckbox>


Where I am calling getselected function from controller as, 

public PageReference getSelected(){
       system.debug('in getselected function ***');
        SelectedProducts.clear();
        .........


But this method is not getting called on clicking of a checkbox. 

Kindly help ! 

Regards,
Ashvin
Hi All, 

I am using condition in selected attribute in inputcheckbox as, 
<apex:inputCheckbox selected="{!if (p.prod.in_stock__c == true ,true,false)}" disabled="true" />

where in_stock__c is a checkbox field so whenever the value of in_stock__c is checked my checkbox willl also be checked. 

but on saving it is giving me  Syntax error. Missing ')' error. 

Please help ! 

Thanks & Regards,
Ashvin
Hi, 

Following error is coming when JS function performing some calculations. 
User-added image


and I have following JS code 
User-added image

Where the value of unitprice is coming as undefined which nothing but a currency type of field. 

can anyone please help me out with this. ? 

Thanks & Regards,
Ashvin

Hi,

 

My requirement is that I want a field(column) in pageBlockTable to be calculated dynamically based on 2 other fields.

I have 3 columns - Order quantity, Unit Price & Total Extended Price.

 

 

What I want to do is :

Whenever the value under Order quantity is changed in a row, the corresponding Total Extended Price should be calculated and refreshed (Total Extended Price = Order quantity * Unit Price ).

 

How can I achieve the same in Visualforce ?

 

Thanks in advance.

 

 

 

Regards,

Lakshmi.

  • September 03, 2012
  • Like
  • 0