My Stuff
Comments
-
Hey Kirk. Unfortunately I don't think there is much that can be done. I went through a similar situation recently. Here is the response and case information. I find it strange because sometimes you can get all the information and sometimes you cannot. I think in the end I ended up loading the record to get the full text of…
-
Olivier is correct. The record must be saved before anything can be attached to it. My suggestion would be to create a dynamic hidden field on record load. When you save via the client script you can populate that field and on after submit you can create the note from the field value.
-
If you need the ID, not on create. Unless you're just wanting to submit it you could just use the normal submit button (no need for a custom button) and run your script on the save event.
-
It might be best to do what you need on the after submit rather than trying to do it on the client side.
-
I've used the search for files in my solutions before. I think that's OK. If you want them to just be able to see the list, use your search to display on screen of your suitelet. Run your suitelet deployment as admin. When they click on the file they want to look at, load the file, get the contents and send it back to them…
-
Hey k_dunc Is there a reason you can't just use the hyperlink field type on the custom column?
-
// set content type, file name, and content-disposition (inline means display in browser) response.setContentType('PDF','Pricing List.pdf', 'inline'); // write response to the client response.write( file.getValue() ); [h=2]setContentType(type, name, disposition)[/h] Sets the content type for the custom responses (and an…
-
https://chrome.google.com/webstore/detail/netsuite-html-script-note/lipldhgjkmfhamocfcdijcdgjcikcbkk
-
I couldn't imagine this ever being available. Doing so would cause issues with other scripts. Here is a thought. I haven't tried this but it might work. var path = "/SuiteScripts/lib/"; define([path+"d3.min"], function (d3) { ... });
-
With Map/Reduce you have to treat each info/map/reduce/summary as it's own script. You cannot pass standard variables between the stages. The scope is also reset for each pass. So a global variable, like you might have in a scheduled script, will not work. If you need to keep track of or pass information, take a look at…
-
erictgrubaugh Have you considered just using the relative path option? define(["./lib/d3.min"], function (d3) { ... });
-
cache module works well for me.
-
erictgrubaugh So if I understand, you're asking for a global require config library to be loaded on every script in the account?
-
I'm surprised you're using d3.
-
You are ./S/ oment
-
Do you have a saved search that already performs this? If so, it would be extremely helpful if you posted that for us to reference.
-
Can you post your saved search here as code? You can use this Chrome plugin if you need help. https://chrome.google.com/webstore/detail/netsuite-search-export/gglbgdfbkaelbjpjkiepdmfaihdokglp
-
Yes, I've integrated a bar code scanner before. Not this particular one (I don't think). It was one that we attached to an iPad and read custom bar codes for badges at an event to read in customer data directly into a sales app.
-
I think something happened with the 2017 update. I have an open defect because of missing search results when I use script to pull results. The script and the UI do not have the same results and are inconsistant. Please check if the results change when running multiple times. I've been told this is a sorting issue but I'm…
-
You don't need to include the columns separately used in a formula column. So, yes, your formula column should still work properly if you remove the other columns from your results.
-
I think you would need to search the child records where the parent is the one you're looking for. You can't search for children. What record type is this? Basically you would just add the criteria of where "parent" is not empty and "parent" is ??? to find the children. Add any other criteria you need. If you're adding…
-
Good question. I know you can create it dynamically. I'm not sure about assigning it.
-
I'm pretty sure, without looking, that this is documented somewhere. When using formulas you can only select/use the first one when sorting or anything else.
-
Have you tried just using the fxamount by itself? I think it will return the currency being used.
-
Yes, you could script this. Does you search have filters on it? It sounds like it's filtering the search by the record that was updated.
-
WHEN ({custrecorda} = 'No' OR {custrecorda} IS NULL) THEN 'Requires Attention' WHEN NVL({custrecorda}, 'No') = 'No' THEN 'Requires Attention'
-
Is this for a plug-in or bundle that will be installed to various accounts? If so, why not create both searches and use an installation script to write the correct search to the account.
-
name: "formulatext", formula: "{thumbnailurl}"
-
Try changing from "transaction number" to "Number" (tranid) and see what happens.
-
Most likely you're getting both the body and the lines. Also, you don't need the inactive in your results if you're criteria has it set to false.