My Stuff
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Comments
-
Or even the option to create a custom field on a Country...
-
Hi Mike From what I have experienced, you'll need to use a User Event to get the ID of the record after it has been submitted to the Database. A Client Script on Record Save will not have this information at hand as it hasn't even started to submit the record yet. Thanks, Pete.
-
Thank you hbeltejar that's what I have ended up doing.
-
Hi Kirk It's just strange that the Forms cannot be customised...such a beautiful system, with some strange omissions! Thanks Pete.
-
Indeed :) At least we can add Custom Fields to it I suppose :)
-
You might be able to use either the "applied to" or "applying" Transaction record link...
-
Failing that, you could create a saved search of which the results are displayed in your Transaction Body Field...?
-
Hi there I'm trying to add a Multi-select Transaction Column Field right this instant, and after reading this I'm wondering if this is still not implemented? Can anyone shed a light on this feature?
-
I have found a way to do this, but it's somewhat of a hack... I have a client script and a suitelet working interactively with a textarea. The suitelet shows a multi select which is populated by whatever you want, and when you submit the suitelet, it posts back to the textarea an array of internal id's that were selected.…
-
I've found this with Transactions and Entity records too on some accounts. Even newly provisioned accounts sometimes inhibit this behaviour, and we've never got to the bottom of it. Strange...
-
Hi abarylak How many records do you have in your many-to-many relationship? A multi-select box can only show a certain maximum number of records, so you have to be careful how you approach this. If you are anticipating having thousands of records populating just one multi-select box, you might need to find an alternative…
-
Hi grygmpl. What are you trying to achieve with the StoreA...Retail etc? Are they fields on the Category record? How many Stores are there?
-
Hi Michael You could create an Inline HTML Custom Entity Field and set it to display on the Customer record. Then using a before load script, set the field value with the Google Maps HTML data and whatever else you wish to display. As this is then a standard Custom Field, you could put this under any subtab you wish - be…
-
Hello Marty I hoping this would no longer be an issue and I wouldn't have to do workarounds like this - I have 6 languages to handle, across fifteen fields...that's a lot of fields to create! Onwards and upwards eh!? Thanks Pete.
-
How about create a hidden Free Form Text field on the Suitelet, and get a Client Script to populate it On Field Changed of the Drop Down by using nlapiGetFieldText() and nlapiSetFieldValue() That way the Free Form Text's Value will mirror the Drop Down's Text when the page is POSTed.
-
Hi seamanjeff To extend on that, if you declare your field as a variable, and then assign it using the return value of addField(), you can then modify the field however you want using the variable. For instance: [FONT=courier new]var ifidField = sublist.addField('ifid', 'text', 'ifid');…
-
I asked about OneWorld in case there were any Subsidiary Restrictions in effect on the Accounts the transactions need to impact. Is the Account with InternalID 125 inactive by any chance?
-
Are you using OneWorld by any chance?
-
This fixed it, thanks man! I'm curious why this works verses using getLineItemValue based off of line item index, but I'm not complaining. I have no idea why, too. I've come across the same issue a few times, but the "select line item / get current line item value" combination always works.:cool:
-
[LIST] [*]Select the line (record.selectLineItem() or something similar) [*]dept = record.getCurrentLineItemValue('department'); [/LIST] That should work :-)
-
What payment methods have you got on the Cash Sales? Are they all the same, or do the ones which fail all have one in common?
-
Hi Louis What is it your script does which is so special that it cannot be put within the "On Save" function? What I would suggest is a restructuring of the code. function onSaveClicked() { var retVal = true; //true tells NetSuite to initiate saving the record retVal = checkForX(); if(retVal == false) { //checkForX…
-
It seems almost dirty to do, but as ZIP is a binary file type, the browser won't try and display the file itself. Glad to be of assistance!
-
Just a thought...but if you force the MIME type to ZIP, would it not force the browser to download it thus allowing it to be handled by the browser...?
-
...And that is the issue I'm up against too - The File Record Type is not scriptable yet. I'm trying to trigger a User Event off the creation of a File in the File Cabinet...Looks like I'll have to find a creative way around it then! Thanks for confirming this WhatIsYourRequest!
-
I too would be interested in this as I have a similar issue with getting Google Maps API to display a map object in a Portlet.
-
I'm having this issue right now...nlapiGetRecordId() in my After Submit User Event is returning null... Maybe I just need to delete the line, put it back, then re-upload it!?
-
I have a Suitelet which is set to run as current role, and I am intending to run a Scheduled Script which is "Run as Admin". I am getting an Insufficient Permission error when someone other than me runs the Suitelet as their role doesn't allow them to schedule the script. I'm assuming then that I have to get the Suitelet…
-
Hi Rick With an automated drop-ship Item you could create the back to back purchase order and have a workflow or write a simple script which fulfils the sales order/receives the purchase order, thus meaning you don't need any manual intervention. RE: Commission... Do you have a set rate of commission? Is it per…
-
How often will you need to import them? If it's going to be a regular task, then maybe you need to seriously consider creating an intermediary custom record type which you can import all data into, and then create a User Event which creates the associative Transactions off the back of it.