zoukankan      html  css  js  c++  java
  • How to Auto Number Entities in Dynamics CRM

     

    This will work for any entity – custom or out-of-the-box. All that is involved is 1) creating an auto number entity and record, 2) creating a relationship with the entity you would like to have an auto number in, and 3) making a real-time workflow populate and increment the number.

    Here are the steps to go through. You will end up with an automatically-generated number with an optional prefix and suffix on the first save of the record.  I added the ability to increment your auto number by any whole number in the event that you have that requirement.

    1. Create & save your solution:

    image1

    2. Add the entities you would like to add the auto number functionality to. 

    In this case I am going to create the ability to auto number Accounts, Quotes, and a custom entity I created called Projects.

    image2

    3. Create a new entity called AutoNumber.

    image3

    4. Add the following fields to the AutoNumber form for each entity you would like to have auto numbering.

    • Prefix (Text)
    • Suffix (Text)
    • Number (Whole Number, Simple)
    • Increment (Whole Number, Simple)
    image4

    5. Create a 1:N relationship between your AutoNumber entity and the entity(ies) you would like to have the auto number functionality apply to.

    image5

    6. Create your AutoNumber form:
    Create a section for each entity you would like to auto number.

    image6

    7. Add a text field to each of the entities you would like to auto number.

    This will store the generated number.  In this case I have called mine Account Number.

    image7

    8. Create the AutoNumber record with the default values in it.

    • Go to advanced find
    • In “look for” select AutoNumbers
    • Click results
    • Click New AutoNumber
    • Enter in your values
    image8

    9. Now create the workflow to set and update the AutoNumber (one for each entity).

    image9

    10. Create a step to update the quote and set the Quote AutoNumber lookup to the value of the record you created (Defaults).

    image10

    11. Update the value to your quote number field on the quote form using the AutoNumber values:

    image11

    12. Increment the Quote AutoNumber number field by the amount in the quote increment field

    image12

    13. Leaving you with a Workflow looking like this  Repeat it for each entity you would like to Auto number.

    image13

    Now create some records and you should have some automatically generated numbers!

  • 相关阅读:
    java 判断是否满足正则表达式
    bootstrap-select多选框与Vue整合,下拉的数据刷新不出
    Windows 修改host文件不起作用
    【服务器】【tomcat】Tomcat 应用目录重定向
    【Spring】Spring装配Bean的顺序
    【Maven】m2e以原型创建Maven Project再次失败
    【Maven】m2eclipse以maven-archetype-quickstart原型创建Maven Project失败的解决
    【Java SE】jar xvf "path"命令
    【Java SE】形参被初始化为实参的值的拷贝
    【Java SE】斐波那契数列
  • 原文地址:https://www.cnblogs.com/lingdanglfw/p/15006402.html
Copyright © 2011-2022 走看看