Search found 37 matches

by timothymeyer16
Wed Mar 23, 2022 3:54 pm
Forum: General
Topic: SQL Injection for Updating Orders
Replies: 2
Views: 2857

Re: SQL Injection for Updating Orders

We understand, thank you for the detailed response.
by timothymeyer16
Wed Mar 23, 2022 1:48 pm
Forum: General
Topic: SQL Injection for Updating Orders
Replies: 2
Views: 2857

SQL Injection for Updating Orders

In an effort to create faster Order-Updating tools, we tried experimenting with updating order information via SQL. For Example - here we tried changing the order status: // SQL CODE begin tran use Dev_SelectDb Update [pf].[OrderInfo] set OrderStatus = '7' where Number = '161078-XD-AL-RR-KV' go upda...
by timothymeyer16
Tue Mar 15, 2022 9:21 am
Forum: Integration Development
Topic: Get User Permission
Replies: 5
Views: 1032

Re: Get User Permission

Worked like a charm. Thank you.
by timothymeyer16
Mon Mar 14, 2022 2:17 pm
Forum: Integration Development
Topic: Get User Permission
Replies: 5
Views: 1032

Re: Get User Permission

Ideally both.

We need access to view and modify permissions for users and groups via the API for several upcoming projects.
by timothymeyer16
Fri Mar 11, 2022 4:47 pm
Forum: Integration Development
Topic: Get User Permission
Replies: 5
Views: 1032

Re: Get User Permission

After researching extensively, I am still lost. ISecurityManager secMgr = ss.GetService<ISecurityManager>(); ISecurityIdentity user= secMgr.Identities.Where(t => t.FullName == "UserName").FirstOrDefault(); ISecurityUser userUser = secMgr.GetUser(tim.ID); SecurityDescriptorFilterSettings fi...
by timothymeyer16
Thu Mar 10, 2022 7:50 pm
Forum: Integration Development
Topic: Get User Permission
Replies: 5
Views: 1032

Get User Permission

Good evening, I'm looking to get an understanding on how to view user permissions from within the API. Specifically I'm looking to access: - Which INDIVIDUAL permissions a person has - AND the INDIVIDUAL Permissions associated to a group. permissions.PNG Groups.PNG Currently I have the below code, b...
by timothymeyer16
Tue Mar 08, 2022 4:25 pm
Forum: Custom Order Rules
Topic: Prevent Warning on READONLY
Replies: 4
Views: 2919

Re: Prevent Warning on READONLY

Thank you, this solves multiple issues for us!
by timothymeyer16
Tue Mar 08, 2022 10:15 am
Forum: ReadyDoc Development
Topic: Expression Editor (Python) - suppress ReadyDoc Tree folder
Replies: 6
Views: 4116

Re: Expression Editor (Python) - suppress ReadyDoc Tree folder

Took me a minute, but I found this: foreach (IDocumentTreeInfo treeInfo in docManager.DocumentTrees.OrderBy(x => x.Name)) { // Isolate only the Document Trees Profiles and add to dictionary if (treeInfo.Classification.ToString() == "65709e27-67d4-4236-b471-a98bc25c03f6") { // Profiles - mu...
by timothymeyer16
Mon Mar 07, 2022 5:42 pm
Forum: ReadyDoc Development
Topic: Expression Editor (Python) - suppress ReadyDoc Tree folder
Replies: 6
Views: 4116

Re: Expression Editor (Python) - suppress ReadyDoc Tree folder

Is it possible for these visibility conditions to be added or removed programmatically, from within the SDK API?