My Stuff
Comments
-
We had advanced inventory since the beginning, which we've been using a lot in the meantime, along with Kits/Package items. The fact we have to even add more functionality to achieve this is ridiculous when it seems like such a basic thing. I need to be able to track the warranties of each of the individual components -…
-
A search wouldn't really work with what we're trying to do. I want the customer to know on the delivery note what serial numbers are for each of the components not just the serial number of the assembly itself. I.E. Assembly 1 - SN: ABCDEF - Component 1 - SN: A123 - Component 2 - SN: B123 - Component 3 - SN: C123 A search…
-
Hi, This works! How do I combine these into one line: WHEN {custrecorda} = 'No' THEN 'Requires Attention' WHEN {custrecorda} IS NULL THEN 'Requires Attention' I can't seem to get the OR statement to work.
-
Hi, thanks for the reply. There is no Lead/Customer element to this process. Here's the flow of things: Customer Places order for an item > I've created a Saved Search which picks out all customers who have purchased this item > A workflow (once a month) creates a Custom Record based on the Saved Search (one Custom Record…
-
Hi, Thanks for the reply. Will this allow me to create separate records for each serial number put in? For example, on an item receipt; I put in; A1111 B1111 C1111 As serial numbers. And then have 3 custom records created, each with one of the serial numbers above? Also, and this is probably critical, I only want…
-
Doesn't seem to work.
-
I now believe this happens because the inventory number doesn't have an assigned ID number when the script is running, so it cannot load the record. Any help on this?
-
I don't think, when the inventory number record is created, the script can read it. There's absolutely no records showing whatsoever. However; if I use the same script, but change the deployment from inventory number records to item fulfillment, I get errors when I repeat the dummy PO receipt.
-
Hm, this doesn't work either. Perhaps I've not set up the actual script in netsuite properly. I've got: "After Submit Function: CreateRecord" Deployment: Inventory Number customdeploy1 Yes Testing Create Debug -- I want to run the above script everytime an inventory number record is created; taking fields from the…
-
I just plugged this in, still not doing anything. The script isn't even showing any records that it's running. I swear I must be doing something fundamentally wrong. How are you running this? It should run when I receive something via a Purchase Order Item Receipt.
-
Any additional help please?
-
Any update to this?
-
Sorry to break into here, but this seems very ideal for our use. We want to create a new custom record for each serial number we book into our system. I terms of application, it's so we can record a history of that serial numbered item, add notes while also creating an external form for people to "register" their product…
-
I tried the above, and it doesn't work. I've approached this from a different angle and I still can't do it. [code] <?php require_once './PHPToolkit/NetSuiteService.php'; $service = new NetSuiteService(); $search = new CustomRecordSearchAdvanced(); $search->savedSearchId = "344"; //search all solutions owned by this person…
-
Yeah I've used var_dump yes, and this is what I get from one of the records (it found 30 records). object(CustomRecordSearchRow)#1003 (7) { ["basic"]=> object(CustomRecordSearchRowBasic)#1004 (14) { ["recType"]=> object(RecordRef)#1005 (4) { ["internalId"]=> string(3) "122" ["externalId"]=> NULL ["type"]=>…
-
I was under the impression suitescript doesn't work too well with Online Forms? Or were you referencing the idea of using cases? Because if I can avoid that route, I will.