Search found 14 matches

by mhoutz
Thu Aug 05, 2021 9:58 am
Forum: Automation Code Snippets
Topic: Automation Error when Evaluating
Replies: 6
Views: 1791

Re: Automation Error when Evaluating

Thanks for the version info! Can you try debugging on your side to see if the order will always contain a value for ReceivedBy Name? Note that occasionally, users don't have a 'name' but do have a login. I'm still confused as to what your goal is with this automation. You want to add a task every ti...
by mhoutz
Wed Aug 04, 2021 11:42 am
Forum: Automation Code Snippets
Topic: Automation Error when Evaluating
Replies: 6
Views: 1791

Re: Automation Error when Evaluating

Also, I noticed you wanted a way to debug your code below. That is possible. You can open a new order, and use the shortcut shift+F12. The softpro development screen should come up with a folder called modules. You can add a new module, then add your code below. You can place break points on any lin...
by mhoutz
Wed Aug 04, 2021 11:28 am
Forum: Automation Code Snippets
Topic: Automation Error when Evaluating
Replies: 6
Views: 1791

Re: Automation Error when Evaluating

Hi TM,

Can you tell me the version of Select you're using? Just want to make sure we test this on the same version.

Also, are you sure that the recievedName will never be blank or null?

Mike
by mhoutz
Tue Sep 17, 2019 10:15 am
Forum: Integration Development
Topic: Attachment Sizes
Replies: 3
Views: 1978

Re: Attachment Sizes

Hi- You may be having memory issues due to the environment. I was able to upload attachments of around 100 with a shell package on my machine, but then again, I have 32 mb of RAM which may help do that. Can you use the code below and see if this works for you? Note I used an attachment on my drive. ...
by mhoutz
Wed Aug 15, 2018 3:40 pm
Forum: Integration Development
Topic: Attachment Sizes
Replies: 3
Views: 1978

Re: Attachment Sizes

Hello, To answer your questions: 1. Yes, they are zipped regardless of how large they are. 2. Officially, there is no recommended size limit at all. I have tested up to 30 mb attachments with no issues, but there could be some issues in publishing documents larger than 30mb. Let me know if you have ...
by mhoutz
Wed Jul 25, 2018 1:10 pm
Forum: Server
Topic: IAttachmentFile error
Replies: 9
Views: 6243

Re: IAttachmentFile error

I unfortunately haven't found a workaround for the server package to avoid that permission check, which is where this bug currently exists. Would you be interested in converting this to a shell package? I've noticed that the permission check for attachment stream works fine there. It would consume a...
by mhoutz
Tue Jul 24, 2018 4:12 pm
Forum: Server
Topic: IAttachmentFile error
Replies: 9
Views: 6243

Re: IAttachmentFile error

Hi Matt, Sorry about this one. After examining this, it does look like it's a bug with Server Packages. When I attempt to get an attachment stream with a server package, it seems to always give me 'access is denied', like you are receiving. I'm urgently looking into this to see if I can find a worka...
by mhoutz
Thu Jul 19, 2018 2:48 pm
Forum: Server
Topic: IAttachmentFile error
Replies: 9
Views: 6243

Re: IAttachmentFile error

Hmm, something may not be working right here. I'll look into this further and get back with you.

Mike
by mhoutz
Thu Jul 19, 2018 12:54 pm
Forum: Server
Topic: IAttachmentFile error
Replies: 9
Views: 6243

Re: IAttachmentFile error

Hi Matt, The credentials that you're using to connect may not have the correct permission to 'view' for all attachments (or in that folder if it has custom security). You can turn those permissions on in SPAdmin for that user, which is what I would recommend. Let me know if you have further trouble....
by mhoutz
Thu Apr 05, 2018 3:22 pm
Forum: General
Topic: lookupService.ApplyChanges(lookupTable) --> how many changes in bulk is reasonable ?
Replies: 5
Views: 1532

Re: lookupService.ApplyChanges(lookupTable) --> how many changes in bulk is reasonable ?

Hi,

Why does your program need to make so many edits to a lookup table? Is there a business problem you are trying to solve?

Batch updating the lookup tables may cause performance issues, but if you tell me what your overall goal is, maybe we can find a better way.

Mike