Hello, i want get card list with api without sql query.
How can i do it? I've searched a lot in the forum and the document api, but I didn't find anything.
I've added a list on image
Hello, i want get card list with api without sql query.
How can i do it? I've searched a lot in the forum and the document api, but I didn't find anything.
I've added a list on image
I solved it in another way.
String musteriListVariable = "Sil"; aFile = vault1.GetFileFromPath(FileName, out ppoRetParentFolder); k = FileName.LastIndexOf("."); fileExt = FileName.Substring(k + 1, (FileName.Length) - k - 1); aPos = aFile.GetFirstFolderPosition(); aFolder = aFile.GetNextFolder(aPos); aCard = (IEdmCard6)aFolder.GetCard(fileExt); Object musteriListName = musteriListVariable; if (getMusterilist.GetControlVariableList(aFile.ID, out String[] musteriListStrings)) { listBox1.Items.Clear(); foreach (String musteriListItem in musteriListStrings) { listBox1.Items.Add(musteriListItem); } }
How do you program scripts for PDM vault in which envirement ? how can i program simple script for my use?
i want to create a simple script that will send reminding mail to people that forgat to sign on a document that was sent only for them to signing. so i want a program that will look up for specific people that didnt sign (among the signing specific list of people that were checked during document signing task creation) i want this script to send mail to those who forgat to sign for i.e. after two days, and contine every two days until the unsigned list of people becomes empty, this is to avoid my manual followup to those people and make it done by the automatic script.
could you please assist?
where do i write the script how i implement it to the PDM vault etc.
thanks a lot
Arye
I solved it in another way.