My Stuff
Comments
-
Hi @gjnido would you be able to send a screenshot of the Sales Channel field in the Sales Order record? Thank you!
-
Hi @User_NZBT1 , would you be able to share the generated SOAP request from this? We'll take a look from there. Thank you!
-
Hi @Paul Salkeld Can you share us your entire script so we can test it out? (please remove any sensitive information) What specific entry point/function were you using in the Client script? Thank you!
-
Hi @User_HLBJF The Country table seems to be accessible/visible if the role you're using has the Set Up Company permission. Kindly try this out and let me know if it works. Thanks! ?
-
Hi @Matan Shachaf Please be advised that we do not create/share scripts from scratch. However, you could coordinate this with your in house developer or you may coordinate with your account manager to discuss your requirements with NetSuite's Professional Service Team or Advanced Customer Support Team. We could provide…
-
Hi @Luis G Your inquiry is possible through scripting. Here are the steps I took to achieve this: 1. Create Custom Transaction Body Field ○ Type = Multiple Select ○ List/Record = Employee ○ Store Value = Checked ○ Applies To = Purchase Order 2. Create a User Event script utilizing the before load. This is the only function…
-
Hi @User_L22NI May I ask how you're getting the error: "SSS_REQUEST_LIMIT_EXCEEDED"? Are you processing Invoices/Transactions through RESTlet or SOAP Web Services? This error isn't necessarily related to the managed bundles. It's specific to concurrency for RESTlets and SOAP Web Services. Each NetSuite account has…
-
Hi @petewhitfield Are the following suggestions applicable on your end? Consolidating/combining client scripts to reduce their number Removing bundles that are not needed Identifying scripts that will be triggered at the same time and audit the logic being executed. It could indicate a possible weak spot. Moving…
-
Hi @Neo_Suite You can find more functionalities the SFTP Connector has here: https://docs.oracle.com/en/cloud/saas/netsuite/ns-online-help/chapter_159722755550.html The SFTP Connector only uses Forge method or Node Forge for encryption and decryption. It's different method than PGP. Best.
-
Hi @User_RIB4J You can check the following tables: Transaction, TransactionLine, and TransactionAccountingLine to create the necessary joins and come up with a table like posting_account_activity. You can use the posting column as a filter. I hope this helps. Best.
-
Hi @Gabriel Jarillo Soto That's great to hear! As for this new error, it seems to be pointing at the setValue part. From your script I can see that instead of fieldId it is fieldid. Kindly revise this. Thank you!
-
Hi @Gabriel Jarillo Soto @Gabriel Jarillo Soto Your script contains load and save methods using the N/record module. This will process in the backend but changes will only be reflected once you have reload the page. I have mentioned this previously, hence, I was asking if that was your desired process/flow. Thank you.
-
Hi @Gabriel Jarillo Soto To better explain this part of your script: var itemLocConfigRec = record.load({ type: record.Type.ITEM_LOCATION_CONFIGURATION, id: '10' }); This uses the record.load which basically loads a record. What type of record? Based on the given type, which in this case is Item Location Configuration.…
-
@Gabriel Jarillo Soto The only thing I'm thinking that causes this error is the id part of the record.load. var itemLocConfigRec = record.load({ type: record.Type.ITEM_LOCATION_CONFIGURATION, id: '10' <== this should be the internal ID of the Item Location Configuration record since that is what we're loading. This won't…
-
You're welcome! @Gabriel Jarillo Soto ?
-
Hi @Gabriel Jarillo Soto I'm also encountering the error when I upload your script: But when I revise it into: I am now able to proceed with creating the Script Record: Best, Marielle
-
@Gabriel Jarillo Soto Additionally, if you want to add the condition, it should be something like: if (atpStandardLeadTime <= atpLeadTimeHidden){ //setValue code here } Both are variables where values are stored from the getValue ? Best, Marielle
-
Hi @Gabriel Jarillo Soto , You're welcome! Have a great weekend too! I just have some additional findings to your concern. The current flow of your script seems to be load then save the Item Location Configuration. So every time a field is changed, this will trigger. You won't be able to see the changes right away to the…
-
Hi @Gabriel Jarillo Soto, I guess we're encountering a Syntax Error. I believe it's because there's some missing curly brackets and parentheses. Please follow this structure: /** * @NApiVersion 2.1 * @NScriptType ClientScript */ define(['N/record'], (record) => { function fieldChanged(context) { //code here } return {…
-
Hi @Gabriel Jarillo Soto, I'll test this on my end and get back to you :)
-
Hi @Gabriel Jarillo Soto Checking the script you shared, first, we would need to get the values of custrecord_maple_atpstandard and custrecord_maple_atpsshidden before trying to compare them in a condition. The way to get the value is by using the getValue method. Example: var atpLeadTimeHidden =…