• Make field ReadOnly when it contains a value

    I have a requirement where once the field has been populated, it should be read only. I have placed the following script in the Create Script area for the field on the screen. However, it is not working. The field is coming up as read only. However, it…
  • Opportunity Adding New Panel [SafeCall Exception]

    Help! I am getting a [SafeCall Exception] error message on the screen after creating a new opportunity. This is the error that I am getting. [SafeCall Exception]: SQL Error oppo_dummy jscript error: [SafeCall Exception]: SQL Error Line: 38 Char: 0…
  • CRM.FindRecord Context in Create Script

    I'm still trying to 'connect the dots' in my understanding of the javascript Create and Validate rule scripts. Specifically, can 'out of context' data be queried? Or maybe there is another way to accomplish my task? In a case workflow, I need to filter…
  • Select List Option and Trigger Input of Value

    Hello, I am hoping to have an option in a normal select field selected and the value chained in the statement, entered directly to a integer field. I am not able to trigger the update on selection until the screen is submitted - saved and then…
  • Using SearchSQL in Workflow

    Hello Have a client who wants to restrict values in a list for a Adv Search Select field in a case based on the value in another field on the case. Were they doing this via updating the field on the Case Detail screen, then I have a Createscript done…
  • How to hide a field on page load event and make it visible when a selected item in a dropdown is changed?

    I managed to hide a field by using hidden=true; in createScript section. The problem is, how can i make it visible again after the page load event? I am trying to make it visible in OnChangeScript section for a dropdown but setting display or visibility…
  • Custom Mail merge fields for word documents.

    Hi, I am currently working on a word document for mail merge. The way i am doing it is that i first create a word doc on my physical machine and i will then include fields which i will acquire from the drop down list. This drop down list can be found…
  • How to set sum of particular field value as default value

    Hi, I am created one custom entity and its having column called "Price". Now whenever summary screen loads, I want to display the total price. I have tried some thing like below: DefaultValue = select sum(frie_Price) from FriEnt; How can I populate…