Appian Community and Appian Academy are being upgraded. From July 24–August 3, the Appian Community will be in read-only mode. During this time, the site will be read-only and user registration will be disabled. We apologize for any inconvenience this may cause, but a more secure, stable, and performant Community experience is coming soon!
The new Appian Community launches August 3, followed by Appian Academy on August 7. During the migration, Appian Community Edition, Appian Academy, Documentation, Certifications, Instructor-led Customer Training, Partner Sales Training & Accreditation, and Forum (for Appian Partners and Customers only) will remain available.
Overview
Expression Functions
Would it be posisble to get the Display Name of a process in a similar way?
The function getpmlistdetailsbyuuid is not working with a huge list, probably is reaching some memory limit.I had a list with 180 elements and it simply stopped at element 40.Used the function getpmdetails with an apply to work arround it
But as far, great job with the plug-in, it helped me a lot
Thanks for the great work.
According to the Appian API documentation It may only needs to be Editor/Admin role (or even less,I haven't check sorry) of the process model
Does this plugin require to be run as Administrator or even the end users could have it executed on the interface?
v1.1.0Refactored getpmdetails to be more efficient (10x quicker in our tests)Added two new functions: getpmlistdetailsbyid(Long[] ids): Retrieves the attributes of the process models @param List of Number (Integer) ids: array/list of process model ids. @return List of ProcessDetails: list of cdts with name, description, id, UUID, creator, modifiedBy, createdOn, modifiedOn attributes. getpmlistdetailsbyuuid(String[] uuids): Retrieves the attributes of the process models @param List of Text (String) ids: array/list of process model uuids. @return List of ProcessDetails: list of cdts with name, description, id, UUID, creator, modifiedBy, createdOn, modifiedOn attributes.