List of Contributions

David Alfredson

Contact Details

My Content

1 to 11 of 11 total
Posted By David Alfredson Thu July 27, 2023 04:01 AM
Found In Egroup: Content Management and Capture
\ view thread
The scope of your question describes is an textbook example of security changing based on a property change and that would normally be a marking in a marking set (as Gerold has already answered). Your value of 1 or 2 (or more) would be individually listed as markings and those markings are then attached ...
Posted By David Alfredson Mon June 26, 2023 07:37 PM
Found In Egroup: Content Management and Capture
\ view thread
Hi, The documentation is fairly vague. Even the use of it in the examples is fairly obtuse. Without a complete definition it means everyone does this over and over with trial and error, wasting development time and generating solutions that can cause issues as the documentation isn't clear, complete ...
Posted By David Alfredson Thu May 25, 2023 07:25 PM
Found In Egroup: Content Management and Capture
\ view thread
Normally, I'd do this in the content engine itself rather than the user interface. It's a classic use case for a Marking Set. The marking set has the list of values "Approved","Not approved","Draft" ...etc and the marking removes the delete bit from the object security if it's set to approved. It means ...
Posted By David Alfredson Fri March 17, 2023 12:12 AM
Found In Egroup: Content Management and Capture
\ view thread
The three options "do it manually", "write some code" or "use FDM" all work but first you have to understand what you have. Our product, Case Librarian (https://www.caselibrarian.com) , does that. It extracts configuration and statistical details from CPE, and other components, and helps you understand ...
Posted By David Alfredson Thu March 02, 2023 05:53 PM
Found In Egroup: Content Management and Capture
\ view thread
Hi Joseph, You can use a recursive query. This SQL is for SQL Server. You can customise the columns you get back from the query to display the path or do other functions on the data. This query retrieves all the compound relationships in the DB, displays the child and parent component ID, shows ...
Posted By David Alfredson Wed July 06, 2022 04:20 PM
Found In Egroup: Content Management and Capture
\ view thread
I found the import process too restrictive so built code to do the process reliably, doing much that you described - create the all the class definitions without any specifics in them and then fill them in afterwards with a series of updates coded - which is much the way they're built manually if you ...
Posted By David Alfredson Sun March 13, 2022 08:52 PM
Found In Egroup: Content Management and Capture
\ view thread
Hi Laszlo, The event hander code does some lookup/retrieval of configuration data based on the userstring, a property of the subscription, which I think is a reference to a document which is a properties file that contains details about the BPM urls to use. Those operations are all done in static ...
Posted By David Alfredson Sun March 13, 2022 05:42 PM
Found In Egroup: Content Management and Capture
\ view thread
Check this post first https://stackoverflow.com/questions/34413/why-am-i-getting-a-noclassdeffounderror-in-java. It's years old but it provides some guidance on whether you're actually getting a class not found or some other issue that then causes the classdeffounderror. You've only indicated the final ...
Posted By David Alfredson Wed November 24, 2021 01:47 PM
Found In Egroup: Public Sector User Group
\ view thread
Hi Chuck, Kabeus sells a product, Case Librarian, that manages and generates solution and environment documentation of IBM systems. The product uses the artifacts that are already generated by the systems, and extracts some of its own from the backend systems to produce documentation of how they're ...
Posted By David Alfredson Thu October 08, 2020 08:47 AM
Found In Egroup: Content Management and Capture
\ view thread
You could try this. Replace the symbolic names of the properties with the ones you want. Test it on a single object first, then try it on more as needed. It would be quicker in execution to write some code that did this in a batch. I've added some comments to explain what the code is doing. I tend to ...
Posted By David Alfredson Thu October 08, 2020 08:47 AM
Found In Egroup: Content Management and Capture
\ view thread
You could try and identify the documents based on some core data that relates them (date created, content size, class id, document title). You could then do a query (probably in the DB rather than ACCE) on the DocVersion table and sort the columns based on the criteria that would group the same documents ...