My Stuff
Comments
-
Bumping up since I voted for this. Sad to see this hasn't gone anywhere in 6 years.
-
As far as I know, you can't. You might want to try the new Advanced Printing forms out. You may need to ask your NS admin to enable these on your account. They provide a lot more flexibility as far as the forms and layouts go for HTML and PDF printing.
-
Any particular reason not to make just 2 separate layouts? That, I believe, is even how the standard forms are setup (can't confirm since we are using advanced printing now).
-
I've got to be missing something easy - but in the PDF forms, anytime the users create a custom shipto address, it displays as bottom justified on the pdf. It looks silly, cause the bill to is top justified. A quick pointer would be appreciated. Do I have to create a custom field and source it to make this happen? Just…
-
If you or someone in your company is comfortable with a simple HTML, you can enable the Advanced Printing Templates (beta) feature and you can do this yourself. Basically, you'll want to use page breaks as outlined in the documentation here. The header/footer of the template should follow on those pages, which I assume you…
-
Assuming all sales orders use the current date. Assuming that the field type = Date, you set the Default Value field to "SYSDATE+2" and check the Formula box next to it. This will set the date to be 2 days (not business days) ahead. If the sales order date isn't "today", you'll need to set that value with a Workflow or a…
-
You might be able to get away with hiding the Empoyee field on the customer form. Usually this would prevent it from being set, but it might not be the answer you're looking for.
-
For the first point, you could create your custom categories as item checkboxes and use a saved search to give you your output results. Honestly, I am not sure what you mean by this. I am trying to visualize this, but cannot. Perhaps you can elaborate. how did you do? This is just an idea in my head at this point. I can't…
-
This hasn't gone anywhere yet. The status is currently "PM-Future Enh". Go on to SuiteIdeas and vote for it, I just did since we may want this in the future.
-
After playing around a lot with the sublist API and trying editing the view of the child record list on the parent record, which somethings surprising worked (when the documentation said they are read-only), I've given up. I ended up building a custom list sublist from scratch on the beforeLoad events, and edit the child…
-
Thank you Evan, but I wasn't the clearest with my explanation. I'm familiar with that feature, it isn't exactly what I was looking for--just not flexible enough. What I am looking for is to create a "static" list sublist, like the locations list, with a set number of rows with fields to fill out in each row. The rows would…
-
Marty, Any chance you can detail what you did? I just assumed you added a sort/rank column to your record (which is my fail-safe, as I am beginning to fear the ordered-record feature isn't 100% up to snuff yet).
-
Hi adang, This is a strange case. I'm getting a "HTTP Error 406" when requesting from "http: //users17.jabry.com/testepdm/Test.csv". But when the same file is hosted on a different domain, it works. (Try using "http://kaypeeness.weebly.com/uploads/4/1/9/3/41931847/test.csv"). My guess is it has to do with how jabry.com's…
-
If these scripts are executed in the user context (from say, a suitelet or the like), you can simply drop the domain from the URL. newLeadForm = '/app/common/custom/custrecordentry.nl?rectype=412&record.custrecord_h dm_duplicate=' + customerID;
-
Just a quick guess, but try "itempricing" as the type.
-
Option 1: Are you storing these files in the file cabinet, I assume? If so, the only way you may have, would be to store the files in a user-folder, only allowing that user access to it. Option 2: It may not even be available for you, but if you can use advanced printing on paychecks, you can possibly add the password this…
-
For those interested, the password meta tags do work in Netsuite. Looking forward to being able to use them.
-
Thank you for the confirmation on this. After playing around a lot with my options, I ended up just using checkboxes and mimicking the behavior of radio buttons using an afterSubmit script. If more than 1 is checked in a column, the "highest" one in the column is the only accepts value--the rest are unchecked. Here's…
-
I'm not sure I understand exactly what you're going for, but if you simply want to have the custom record show up in the item record as a tab, then you just need to set up the item record as the parent record for your custom record. I am doing this. I assume the goal here is displaying multiple images on the website… I…
-
That isn't the type of sort I can use--I don't think. The type of list I have is like the list under the Results tab on a saved search, or when editing a form. You can drag/drop the location you want the items in the list. I'm looking for a programmatic why to retrieve this order--it must be stored somewhere--perhaps in an…
-
You might find your best luck using your browser developer tools when editing records to see what the form fields are named. (In Chrome, for example, right click on one and choose Inspect Element). The internalIds you are looking for are: vendorcode purchaseprice schedule preferredvendor
-
Interesting. Only works when editing records (on the fields I tried) -- makes sense.
-
If there are less than 4000 items in your list, you can use the alternate getResults-type of search: // ... your parameters var itemList = nlapiSearchRecord('item', null, null, returnCols); var resultSet = itemList.runSearch(); var first4000results = resultSet.getResults(0, 4000);
-
Is this project for a mission critical operation or just curiosity? The way I see ourselves using it would be to export large saved searches for the external demand forecasting software that we use. An alternative solution I would propose would simply allow scheduling of saved searches/reports to export to a file within…
-
... Interesting concept, I agree that should work--I wasn't quite able to in my testing, but I am trying to pull this off using a RESTlet. Have you done any work in that area?
-
You were fairly close. This is an example GET request using cURL [php] $ns_account = '######'; $ns_usernane = 'you@email.com'; $ns_password = 'your_password'; $ns_restlet =…
-
Only a guess, but perhaps the script is deployed, but you didn't give yourself (or whatever user) access to it?
-
Thanks for the example. A couple of comments. Your code will always double include the last item in each set that isn't the final set. Just the greaterthan test is sufficient. Actually I didn't mean to include that, as it was specific to my code (pulling in pricing groups, so the internal id could be listed multiple times…
-
For those interested in working code that I am using with a RESTlet, see the following. It is a variation on Brett's code (which is missing a few things). function getProductPricing() { var pageMax = 0; var filters = []; var results = []; var stopper = 10; // Prevents infinite loops, and provides headroom for 10,000…
-
Is this still the case? I am having an issue sending over 1MB of data via this (encoded image).