-
set the default value for loginusername
Hi, I have a requirement where I need to set the value for login username as dmadmin. I have loged in to the webtop as testinguser. But when I want to run the below DFC code for getting login username as dmadmin, then I am getting the loginusername as testinguser IDfSession session = getSession(); String loggedInUser =…
-
How to know if properties are modified
Hello, I am trying to customize properties component for documents and need to understand how it functions. I'm trying to find how is it determined that document has been modified or not on click on OK button. For example: I call properties component on one document and then there are two cases * I update any of the fields…
-
Looking for the best approach for adding 2nd package at an intermediate activity
Hi, In my workflow an intermediate activity performer need to add another package (2nd document). Shall I add one more package to the beginning (Initiate) itself or can I add at that intermediate activity performer? What is the best approach? Please share your knowledge and experiences for figuring this out. Thanks. ta
-
Docabasic-API script help
Hi, I tested the DQL "select group_name from dm_group where any i_all_users_names = 'purchasing' and group_name like 'fotl_%'" in DA. I got a result. I used the same DQL in my dm_even_sender.ebs script as follows: query_str3 = select group_name from dm_group where any i_all_users_names = 'purchasing' and group_name like…
-
using aliases inside workflow.
Hi All, I need to design a workflow where in only the current performer should have the WRITE access on the document and rest all performers should have READ access. To implement this I am thinking of follwoing approach. 1. Create an alias set with one alias name of type user and group. Keep the value blank and let it be…
-
DQL-docabsic help
Hi, I have a working DQL: select group_name from dm_group where any i_all_users_names = 'forecasting' and group_name like 'fotl_%' I am getting result with the above DQL. I need to insert a string variable (ECRLastPerf) for hard coded value 'forecasting'. I did the following: query_str3 = "select group_name from dm_group…