My Stuff
Comments
-
Hi Alex, Are you looking to attach an image of the item or just attach a file? If you want to attach an image there are multiple image fields available to you as well as creating your own. It is also possible to create a custom field that will reference a file (document type) or image (image type) which also achieves the…
-
What do you mean exactly by page number? Do you mean to find the results from #100-200? If so you can also do something like: var search = nlapiCreateSearch(...some params...); var allResults = search.runSearch() var pageResults = allResults.getResults(startIndex,endIndex)
-
Typically runSearch() is followed by a getResults(startIndex, endIndex) or forEarchResult(callback function). Do these also return a null value? eg: var jsearch = nlapiLoadSearch('customrecord_bly_gl_uploads', 'customsearch_bly_gl_uploads'); var jsearchresults = jsearch.runSearch(); var firstTenResults =…
-
You can use the SQL function TO_CHAR to get the text of the result instead of the internal id. eg: var formulaColumn = new nlobjSearchColumn('formulatext', null, "max"); formulaColumn.setFormula("to_char({item.id})");
-
This is probably because you have too many saved searches. I have seen instances where the page will actually timeout because of the sheer number on records to show. I suggest removing unused saved searches to reduce the number. You may also want to consider limiting the amount of search results that show up on the page,…
-
My meaning is that you can crate a workflow action script which should be attached to the workflow, or you can forgo the workflow and create another type of script (probably user event) that sends out the email. In the latter case, the user event script just needs to be attached to the record type.
-
If I understand your question correctly, you want to send an email to all the employees under the 'assignees' subtab. The issue with that is that workflows have trouble working with line items. You may need a workflow action script to get this effect. Failing that, you could always create a script to do it.