function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
User@SVFUser@SVF 

Issues with Package.version usage, Email approval usage & currency fields rendering in Quote PDF.

Hello All,

 

Here are couple of bugs in salesforce, that we need to watch for

  • AppExchange package development: Do not use the system variable “Package.version”  in the code if you ever plan to create a patch org, as the usage of the variable will not let you create the patch org and throws “Patch Org Creation failure” exception. Salesforce acknowledged that it is an issue in the product and  will soon come up with a patch release to fix the issue. (Ref Case  #06777321)

 

  • Approval processes: Be aware that you cannot approve the records via email if you meet the following criteria(you can still continue to approve/ reject the records from salesforce)   I) The approval step has a Field-Update Approval or Rejection Action. II )The object has an Apex Trigger. (Ref Case #06849599)

 

  • Quote PDF: Even though you display the currency fields without decimal places, salesforce renders ".00" for the currency fields in Quote PDF templates. Those fields render as expected in the page layout but not in the PDF.  Ex: the value in pagelayout $100, would be rendered as $100.00 even when the field data type is currency(18,0)

 

K