プロフィール
コメント
-
Sorry, just got to this. Glad you got it solved.
-
The browsers I use were listed in my posting. Thanks.
-
I experience the same issue and have tried multiple browsers - Chrome, Edge, and Brave and exhibit the same issue. I would use Safari, but there are still issues with how NetSuite implements certain images that makes Safari problematic as well (in particular, the CSV Import definition in particular).
-
Yes, this portion of the issue is resolved.
-
I have already checked that, created new integration tokens, and updated the .env file with no luck. When the .env file was updated with the new key/secret values and I select New Token when prompted by 'gulp theme:fetch', and enter my user ID, the system returns a message to continue authentication in the designated…
-
It answers the question by confirming that the functionality simply does not work. In no instance does a promise function support the use of an OK / Cancel dialog. I submit this is NOT an enhancement but a bug since the nature of the function as it is implemented does not prevent the action for which it is prompting.
-
Thanks, that is what I noted above, but is problematic in that it is inconsistent with the look and feel of the application and, most importantly, the provided API is broken and needs to be fixed.
-
Sure, it is very straightforward. Note: autoVendorLookup.dsVendCnt(scriptContext.currentRecord) is a function that returns an integer. All I want the dialog.confirm to do is return true to the saveRecord function if the user clicks OK so that the save process proceeds, otherwise, if they click Cancel, the dialog.confim…
-
Incidentally, I know I can use the native javascript modal window.confirm, but I'd like to keep the look and feel of the pop-up consistent with the app and the API should be made to work!
-
Disregard, I just discovered that the Insert Before option is still available and takes effect when changed, even after a parameter is created, thereby allowing me to reorder the parameters.
-
That was it (and embarrassing!); I had missed setting the return statement. Sorry about that, sometimes you stare at something for too long and miss obvious and simple things. Thanks so much!
-
I seem to be running into an issue getting the require function to work. When I call it, I receive the error (via the browser console): Uncaught TypeError: cs.setSlLine is not a function at /app/common/scriptin…ineIfEmpty=T:243:99 at Object.execCb (NsRequire.js:2047:26) at Ma.check (NsRequire.js:1193:28) at Ma.<anonymous>…
-
Thanks, so I went a little different direction because, prior to your response, I discovered that the window.opener nlapi functions could only be run in a client script which worked. That said, I am still very interested in eliminating the SuiteScript 1 functions and making everything in SuiteScript 2. What I ended up…
-
One additional issue I forgot to mention, how do I close the pop-up window when the user clicks the Submit button? Since the Suitelet is not a client event, I cannot call window.close() from within it.
-
No, I know how to use the functions, the question was really around how to determine the result type. This is a very disappointing oversight in SuiteScript.
-
No, the scrip parameter links you sent are not really relevant to what I was asking as that is related to parameters stored on script deployments. What I was asking about was how to pass parameters to and from the Suitelet from the calling client script. I figured out how to pass the parameters to the calling script by…
-
I do not see how this addresses my question. As I pointed out, search.Column, nor search.Result have a property or method that returns the column (field) type. The goal is to not have to hard code use cases if the search contains certain fields. Take item for example, calling GetValue returns the internal id of the item,…
-
So, based on the link provided, are you saying the .addSublistButton function in the User Event script should point to a Client script, wherein I can call CurrentRecord.getSublistValue to obtain the current item, then use the window.opener method to launch the Suitelet and pass the item value as a param?
-
Niks, I'm just going to add here that this is not a customization or Enhancement as it is in clear contradiction to the official NetSuite documentation of how this functionality is intended to work. To the original poster's point, you cannot fix this with a Workflow, it will require SuiteScript. The Workflow will not let…
-
Okay, thanks. I just wanted to ensure I wasn't missing something new. I appreciate your help.
-
@Jack Daryl Espiel-Oracle Thanks for the links, but they don't really answer my question. I know how to use the Sublist Action Groups and set fields, I am referencing your comment that ANY field in the item sublist can be set. Take the examples I provided in my last comment, how would one go about setting the Commit or…
-
@Jack Daryl Espiel-Oracle you mention "2. Workflows can access joined record fields (e.g. {item.stockdescription}) and set any Item Sublist fields". Can you please explain how to set the value for any Item Sublist field? I have desperately searched for a way to do this, but many of the Item Sublist fields do not appear in…
-
If that is the case, what do you propose for your customers that sell items across a broad category of products? Sure, we might only have 5 to 10 facets for a particular category, but with literally hundreds of categories, that does not work. Think of our catalog like Amazon (albeit not nearly that large, but still…
-
Thank you, I had not seen that on the workflow fields. I appreciate your help!
-
Okay, one more issue related to this. In trying to use the nlapi function posted above, I changed the workflow from After Record Submit to After Field Edit, but every time I try to reference the Customer, the value is Null. Can the Customer value not be referenced in Client triggers?? Here is what I tried just for a basic…
-
Thanks, your suggestion was my fallback position as well. Just curious, is there not a SuiteScript 2.0 equivalent to the parentcustomer.internalid join? I tried that as customer.parentcustomer.internalid when researching this and before posting but received a field not found (or something to that effect) error. This was in…
-
Thanks. I can write SuiteScript, I was just hoping to avoid it for something so basic as it just creates more maintenance. Sad that almost everything we touch in NetSuite requires SuiteScript or voting for Enhancements that never come to fruition.
-
That might work if I had access to the list of Zip Codes and Internal IDs that NetSuite uses, but as it stands, I cannot match up the Internal ID from the Shipping Address Zip Code to my custom record because I have to manually enter the Zip Code as a free-form text field (i.e., there is no built-in list type for Zip…
-
No, we are not using SuiteAnalytics Connect. My point was this is a VERY simple thing to do in SQL - how do we do it in NetSuite via Workflow, Field Definition, Saved Search, or some combination thereof without resorting to SuiteScript.