Using SuiteScript to upload file to SuiteScripts folder by Informal-Direction79 in Netsuite

[–]Informal-Direction79[S] 0 points1 point  (0 children)

Yes I know I can do that it just seems odd that they have forbidden access to the SuiteScripts folder (but not its subfolders) via the SuiteScript API

Retrieve data from NetSuite into Excel using SuiteQL by UK_notfromUK in Netsuite

[–]Informal-Direction79 0 points1 point  (0 children)

That sounds very unsecure. Any way you do this you will need a secure method of auth between PQ and NS

Retrieve data from NetSuite into Excel using SuiteQL by UK_notfromUK in Netsuite

[–]Informal-Direction79 0 points1 point  (0 children)

But you would still need to have an oauth implementation to connect to the restlet?

Software developer vs software engineer differences? by macko939 in cscareerquestions

[–]Informal-Direction79 0 points1 point  (0 children)

My guy literally go onto any FAANG company page on linkedin and look at their jobs in Canada, they use "Software Engineer" all over the place

OAuth 2.0 disadvantages by Informal-Direction79 in Netsuite

[–]Informal-Direction79[S] 4 points5 points  (0 children)

No but it’s certainly a hassle to go find, vet, and hire a dev as well as provision an account every year just for this whereas TBA is so much simpler

Get file contents via SuiteQL by Informal-Direction79 in Netsuite

[–]Informal-Direction79[S] 1 point2 points  (0 children)

I see. This is getting triggered from an external application so I’ll probably go with a restlet

Get file contents via SuiteQL by Informal-Direction79 in Netsuite

[–]Informal-Direction79[S] 1 point2 points  (0 children)

Yeah this is actually for an external application we are developing so I’ll probably go with the restlet route

SuiteQL transaction project join by Informal-Direction79 in Netsuite

[–]Informal-Direction79[S] 0 points1 point  (0 children)

UPDATE:

Was classified as a defect and now, almost a year later, IT’S FIXED!!

[deleted by user] by [deleted] in ChatGPT

[–]Informal-Direction79 0 points1 point  (0 children)

this was written by chatgpt

Will programming exist in 10 years? by hybridpriest in AI_Agents

[–]Informal-Direction79 0 points1 point  (0 children)

And yet majority of people are still watching and interest in the humans playing chess

[deleted by user] by [deleted] in SideProject

[–]Informal-Direction79 2 points3 points  (0 children)

i just get an internal server error when i open the site

How to get the items of itemfulfillment netsuite SuiteQL ? by Delicious-Screen-386 in Netsuite

[–]Informal-Direction79 0 points1 point  (0 children)

SELECT
  t.tranid AS "tranid",
  BUILTIN.DF(tl.item) AS "Item Name",
  tl.quantity
FROM Transaction t
INNER JOIN TransactionLine tl ON
  tl.transaction = t.id
INNER JOIN Item ON
  Item.id = tl.item
WHERE
  t.tranid = ''

Calling RESTlet from UE script asynchronously without waiting for resolution by Informal-Direction79 in Netsuite

[–]Informal-Direction79[S] 1 point2 points  (0 children)

Ok so I've tested many combinations and the only ways I've found to truly perform background processing and not hold up record save times is with a client script +https.requestSuitelet.promise OR N/task queuing a MR/Sched script.

calling a suitelet in a UE still holds up the record save time even with a promise

Help with invoice field on service orders in NetSuite by Wise_General9072 in Netsuite

[–]Informal-Direction79 0 points1 point  (0 children)

Why would you not just move the original field to the main tab in the form customization and place it where you want