Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I'm building a url within Microsoft Dynamics CRM to filter a table based on an account number. The problem I'm running in to is that when the account number is not in the list of possible account numbers, nothing is filtered and the table displays all of the records. Is there a way to keep the table from displaying records when the account number doesn't exist? I would like to display an empty table frame if possible.
Here is an example of my URL:
Use =len(GetCurrentSelections()) as expression for the Calculation Condition (see the General tab of the objects properties window). You may want to change the message displayed too. If so, click on the Error Messages button, select the Calculation condition unfulfilled message and enter a text to customize the error message.
Use =len(GetCurrentSelections()) as expression for the Calculation Condition (see the General tab of the objects properties window). You may want to change the message displayed too. If so, click on the Error Messages button, select the Calculation condition unfulfilled message and enter a text to customize the error message.
Looks like that worked thank you very much . On another note I set the ACCTNUM field to be ReadOnly that should prevent users from selecting other account numbers without the system changing the URL it seems to test fine, are there any gotcha's with going that route? ( I know I'm probably opening a can of worms here)