How to get Data Store Entity constant information?

There is any way to get the Data Store name and entity from a data store constant?

  Discussion posts and replies are publicly visible

Parents
  • Hi Manuelc,

    The below approach may help you.

    Which version of Appian you are using in 18.3 you can see the Data Store and Data store entity in the constant itself.

    But the below approach might help you.

    Check the precedents of the constant. You will get the Data store name. If your data store contains too many entities and hard to locate the entity, please add that datastore and constant in a patch and export it.

    now in the exported patch>content>Open the xml file with NP++ and locate the tag,

    <typedValue>
    <type>
    <name>DataStoreEntity</name>
    <namespace>www.appian.com/.../namespace>
    </type>
    <value a:id="0e4ed360-c56d-4005-b86c-5105985cf2f4@_a-0000dd8d-daf1-8000-9ba2-011c48011c48_87096"/>
    </typedValue>

     

    The bold one is UUID of DS and Red colored is DSE.

     

    Now open the Exported Patch>DataStore> Open the xml with NP++ file and search for the 0e4ed360-c56d-4005-b86c-5105985cf2f4

    You can find the detilas of the Entity name and CDT mapped to that entity.

    <entity>
    <uuid>0e4ed360-c56d-4005-b86c-5105985cf2f4</uuid>
    <name>AMS_tasks</name>
    <type>{xxx.appiancloud.com/.../type>
    </entity>

    I would Strongly Recommend using of Description while creating constant

    Entity Name--- CDT Name---Data Store Name

Reply
  • Hi Manuelc,

    The below approach may help you.

    Which version of Appian you are using in 18.3 you can see the Data Store and Data store entity in the constant itself.

    But the below approach might help you.

    Check the precedents of the constant. You will get the Data store name. If your data store contains too many entities and hard to locate the entity, please add that datastore and constant in a patch and export it.

    now in the exported patch>content>Open the xml file with NP++ and locate the tag,

    <typedValue>
    <type>
    <name>DataStoreEntity</name>
    <namespace>www.appian.com/.../namespace>
    </type>
    <value a:id="0e4ed360-c56d-4005-b86c-5105985cf2f4@_a-0000dd8d-daf1-8000-9ba2-011c48011c48_87096"/>
    </typedValue>

     

    The bold one is UUID of DS and Red colored is DSE.

     

    Now open the Exported Patch>DataStore> Open the xml with NP++ file and search for the 0e4ed360-c56d-4005-b86c-5105985cf2f4

    You can find the detilas of the Entity name and CDT mapped to that entity.

    <entity>
    <uuid>0e4ed360-c56d-4005-b86c-5105985cf2f4</uuid>
    <name>AMS_tasks</name>
    <type>{xxx.appiancloud.com/.../type>
    </entity>

    I would Strongly Recommend using of Description while creating constant

    Entity Name--- CDT Name---Data Store Name

Children
No Data