• Junnu N
  • NEWBIE
  • 20 Points
  • Member since 2022

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 5
    Questions
  • 5
    Replies
I have added the following piece of code to the VF page
<apex:outputpanel layout="none" rendered="{!NOT(ISBLANK(dl.EOSM__c))}"> <tr> <td class="detail-label-cell"> {!$Label.ExtrDownloadEOVMDate} </td> <td class="cell-align-right"> <apex:outputfield value="{!dl.EOSM__c}" /> </td> </tr> </apex:outputpanel>

Getting the below error:
No remoted actions found for 'ExtrDownloadModalController.insertTransactionStagingTable'.
  • September 09, 2022
  • Like
  • 0
How to know or add condition in flow if the case is reopened via email to case?
Validation rule for When a Case record type of Service Sales is created or updated and the End Customer field beginning with SEE_ or end customer = xyz or the End Customer (lookup) field is not populated. Note: End customer is a lookup field.
Update case status as follows:
When a case is created and case owner = Queue, status = Unassigned
When a case has a case owner = User then status = Assigned
When a case has email or new public comment from internal (Extreme) user then status = Waiting Customer
When a case has an email or comment from external user then status = Customer Responded
When a case that has been closed is reopened from email2case to Service Sales (within 30 days existing), the status = Assigned
I have mainly 3 fields on case page layout. Contractor1, Contractor2 and Reason.
Create a new validation rule stating that Reason should be filled in whenever we edit the case except when Contractor1 and 2 fields are being filled.
Validation rule for When a Case record type of Service Sales is created or updated and the End Customer field beginning with SEE_ or end customer = xyz or the End Customer (lookup) field is not populated. Note: End customer is a lookup field.
Validation rule for When a Case record type of Service Sales is created or updated and the End Customer field beginning with SEE_ or end customer = xyz or the End Customer (lookup) field is not populated. Note: End customer is a lookup field.
Update case status as follows:
When a case is created and case owner = Queue, status = Unassigned
When a case has a case owner = User then status = Assigned
When a case has email or new public comment from internal (Extreme) user then status = Waiting Customer
When a case has an email or comment from external user then status = Customer Responded
When a case that has been closed is reopened from email2case to Service Sales (within 30 days existing), the status = Assigned
I have mainly 3 fields on case page layout. Contractor1, Contractor2 and Reason.
Create a new validation rule stating that Reason should be filled in whenever we edit the case except when Contractor1 and 2 fields are being filled.