My Stuff
Comments
-
I've worked quite a lot on the One Page Checkout Beta which I believe is what you're discussing here. It works for me but I did run up against a variety of error messages and issues with it and I think one persons experience can vary quite wildly to another with this bundle. So, despite this maybe not resolving your issue…
-
The Record Browser entry for Inventory Number is empty of any detail as I stated in my initial post. If anyone has more information on this record type I'd be interested to hear form you though I have actually resolved the issue I had and moved on. Cheers.
-
Not 100% sure if this will help but wonder how you're encoding the text and suggest maybe using "escape" such as this : var mytext = "Frénch çharacters"; var yourtext = escape(mytext); in the debugger at this gave me yourtext = {string} Fr%E9nch%20%E7haracters alternatively : var yourtext encodeURI(mytext); which gives :…
-
My mistake, seems I was using the text value for both the value and text when adding the items to the dropdown list.
-
You need to craft your JavaScript file in advance and place it in the file cabinet. It doesn't matter what you put in the JavaScript file in the first instance it could be an empty function but it needs to be there. (just create a .js file on your desktop) Just navigate to Documents -> Files --> File Cabinet then click on…
-
Press F12 to get to the dev console. Make sure you are on the Console tab. type this in (or copy paste it in!): var t = nlapiGetFieldValue('shipaddress');t; You will have the address in the console to copy / paste. Not ideal I know but if it saves your fingers, good for now, right?
-
Thanks for taking time to post this Tim, much appreciated.
-
That's pretty neat thank you for sharing! I'm not confident of that process, I've read through it a couple times but never gotten it to work and resorted to using a REST tool in Chrome and use nlapiLogExecution statements in my code. It would be very useful to be able to use the debugger directly to debug a RESTlet, clunky…
-
Presuming you are not talking about a customisation NetSuite have done for you but code behind the standard process when creating Matrix items, I'm pretty sure it's not exposed to us, certainly not in a way that you could modify. It sounds like you need a User Event script that runs before / after submit when the record is…
-
Hi Tim, If you navigate to the RESTlet and look at it's deployment, you can see the full url under "External URL" which will make the domain evident to you. Sandbox Example : https://<strong>rest.sandbox.netsuite.com</strong>/app/site/hosting/restlet.nl?script=361&deploy=1 Production Example:…
-
Hi alanvarghese. Working with the Advanced Print editor is a minefield I'm afraid and never fun to work with. In my experience errors creep in when you flip between using the UI to edit a template and Source View tab to view the underlying code. Also, whenever working on a template I'm forced to copy the source in to…
-
Sorry alanvarghese I did not see your message until today or previous post :( For completeness and to help others that may have the same or similar issue could you describe how this was resolved? My guess would be the opening if was malformed based on the template you mailed me ;) "<#if statements??>"
-
Felt the same pain recently and seems to by design I think you even get a warning at the time you change it! Best bet is export the data, change the field, import the data. (alternatively knock up a script to ram the data in to a custom field, change original field type then move the data across)
-
Further to Blaine's response look in the help at "yielding the script". This means that before your governance is exhausted, presuming you need to continue processing records, you put the script back in the queue and when a slot becomes available again the script will continue from the point you were at. It's not enough to…
-
I don't suppose your columns array is multi-dimensional and you're looking at the first or last item? so something like columns[0].baseUnit; columns[0].conversionRate; [...] columns[1].baseUnit; columns[1].conversionRate; Also do you understand where "16FT" is coming from, does that give you any kind of clue?
-
Hi Raveen, Have you put in some log writing code to try and establish at what point its' going wrong? nlapiLogExecution("DEBUG", "My Message", Data); and look in the execution log for the script. Hope I'm not teaching you to **** eggs but I don;t know you experience and you provide little detail. Cheers, Neil
-
I'm not 100% sure why you're trying to do what you are trying to do ;) but maybe the help for nlObjResponse will help you? I see in there : setEncoding(encodingType) Maybe you don't need to specify an accept but rather which encoding is expected? Apologies if I'm barking up the wrong tree but hope that helps! Neil
-
Hi Robbie thanks for replying. Really just didn't want to reinvent the wheel at some level. I've added a custom button now but I'm still curious as to why this behaves differently to other parts of the system that show the "type" as 'print' and not as 'view' when you click on the print button.
-
Just a suggestion... Create a script that presents a form with a browse file button. In the same script, code the file folder id and that way you control which folder the file ends up in. Additionally... You could create a user level preference and set the folder id in there if using one folder per user or add a dropdown…
-
How small are you looking to go? I ask because I used the BFO functionality available in NetSuite to create DataMatrix style barcodes for a customer and they were printed out at about 6mm x 6mm and I did try smaller but it became unreadable, point being it could go really small. Try the NetSuite help, search for…
-
Just took a call from support, asked to do exactly what I did 3 times previous and the problem has, it would seem, "auto-magically" fixed itself. Support had no knowledge of any changes to the account and I have made no changes. A little worrying because this is not the only time this has happened. Evidently yesterday no…
-
I'm not in a position to test this right now but if you're looping through items it certainly used to be {item.item} to retrieve the id, no need to add .internalid / .id or any other shenanigans. {item.item.text} should return the user friendly name of the item. this does somewhat assume you are looping through and…
-
Don't be shy, post the solution for others to see and future reference! ;)
-
Apologies for the late reply, I managed to get locked out of my account and had trouble sorting out the password :( I normally navigate to : http://freemarker.org/docs/index.html
-
This is not a particularly elegant way to do it but could work for you... a) identify the customer name ( ${record.parent} <-- just a hunch you may need to use ".txt" so the id is not returned. ) b) Replace the company name with blank: ${record.entity?replace(${record.parent}, "")} You might have to assign both sides in to…
-
Neither, unless you no longer need the description field? If you want to display the checknumber you will need the NetSuite internal id of that field You probably need to use the records browser to identify the field or you could try loading the record and using the &xml=T "trick" mentioned in previous posts. Once you know…
-
Your problem is that the either customerpayment record is not "exposed" or, if it's the record you are working on and in scope, you probably need to use "transaction." or "record." It's worth noting that there's a limited amount of detail available beyond the root record when working on Adv Print. and often you need to…
-
What do the options look like on the item, do they just appear to be run together as a single block of text? You may find that you need to split them based on char$(5). such : <#list "some,,test,text,"?split(",") as x> - "${x}" </#list> Where your list would be the options and the split parameter would be char$(5);…
-
Just a quick update for anyone that has looked at this. The Transitions from the Entry state to other states were incorrectly set to Trigger On "Entry" and should have been set to blank. I now have another issue where the logic that sets a WF internal checkbox does not work. (I have raised a case about this).
-
It sounds like you could be talking about a user altering the Status but you could also be talking about the Status changing automatically based on natural flow in the process. I envision this being achieved with script on change if the field is altered by a user or on record update through workflow. If it's on change by…