My Stuff
Comments
-
You may need to make sure your Sales Order is meant for payment by cash rather than invoice. One way I've done that in the past is: var billRec = nlapiTransformRecord('salesorder', orderId, (this.getValue('terms')) ? 'invoice' : 'cashsale' ); nlapiSubmitRecord(billRec); Your error might also be caused if you try to…
-
Did you ever get this working?
-
I know I should give up, but is there any way that I could create on the external case form an ability to click a link to open a new online form where they could attach a screenshot? My customers need to be able to attach screenshots but the online form that NS support is offering up requires design work and also it doesnt…
-
Mike/Brett, thanks for the responses. Brett, on the custom template what does that mean? Do you mean a custom external case form? or are you talking about the website template? An external case form with a custom HTML template
-
Thanks for following up on this and posting your results. Because one of the scripts I was bundling had a saved search as a parameter I wasn't able to remove the search from the bundle so this was fairly critical information.
-
I really hope the default is "Preserve Data" If you meant one of the others but didn't you can always update the bundle. If you meant to Preserver Data but didn't you are hosed.
-
FWIW Olivier's suggestion is the way to go. If you are not too far down this path it would be worth it to do the necessary setup; back out your current transactions (make copies of any customer supplied info e.g. payment details check numbers) and then re-create them with the rental charge item instead of the serialized…
-
I'll echo Olivier's concerns and recommendations. Another option is to maintain a view of the items as a rich text field. A before submit event script can be used to maintain that field which would be shown on custom layouts used for picking tickets and packing slips. This is a pain if you don't want that field shown on…
-
Here you go. This is targeted to salesorders and item fulfillments (though it should work with any customer based transaction) I have pondered making the item formatter based on actual fields in an item block but what is here has worked for me so far. You'll have to look at and modify assembleOrderItemsTable() and the item…
-
We would like to create netsuite generated email that lists and links to items they recently purchased on our site. The purpose is to invite them back to our site to review the products they recently purchased. We have created an email that sends two weeks after their purchase. However we can not figure out to incorporate…
-
You can generate the promo codes via script. You can add a custom field to promo codes identifying a linked promo code You can generate the linked promo code as inactive and use script to activate it when its companion has been used in a sale. You should be able to use script to keep a promo code from being used to ship a…
-
I've done this a couple of times for people [LIST=1] [*]Buy the zip code location files from some source. I'm using the geonames.com service [*]create a custom record containing zip code/lat/long [*]import mapping files to custom record [*]link vendors to custom record by 5 digit zip [*]create a function that, given a zip…
-
I've certainly had customers do very fancy and presentable emails using Netsuite's templates. If you use Dreamweaver you just need to embed Netsuite's tags for any personalization. Then you save the resulting html file and import it into the email templates area of your file cabinet. If you add graphics make sure they are…
-
I did an app for Mike Kimpton of SMS Global. The app integrated with Campaigns so users could send SMS based on templates and have an opt-out number. It would tend to be fairly portable. The same sort of thing could be done for just sending SMS messages ad-hoc. When I looked at this before there were a number of providers…
-
If your form is based on an html template you have a couple of options for passing parameters. If both your forms have urls on the same host (e.g. both http://www.yourwebsite.com or both https://forms.netsuite.com) then you can use Javascript to set a cookie on one form and to read that cookie and populate fields on the…
-
Hi Mike, I was looking for posts adding promo codes to marketing links and saw your post. I developed some scripts to create promo codes on the fly and assign them to customers. The assignment was only used to send the right promo code to the right customer in marketing emails. They system didn't enforce a particular…
-
Hi Everyone. The following does not fix the duplicates issue but it is about the most efficient way I've found of working through duplicates within the current system. [LIST=1] [*]Create a saved search that includes Duplicates = Yes as one of the critieria [*]If you can use other criteria so that only one of a pair (or…
-
Why not use "Require Login for Pricing" and change customer registration to either disabled or existing customers only? A much better solution if you don't need registration. :)
-
Look at the customize text section of setup-> sitebuilder
-
There are a couple of ways to approach this. One is with scripting but a simpler method could be: Create an online price level where all items have a price of $999.99 (Or add 9's or use other digits until you get to a price you'd never actually use. You didn't used to be able to use $0 but try that) Create another price…
-
I just put things like that in the footer of the site theme. You use a bit of script to detect whether the element you want to hide is available and that's it. If you have more complex things (like making a single login/reg page before SSP) you can detect that you are on a login page with a script in the footer and then…
-
We purchased Site Builder. Is there a function to display the "Quantity In Stock" only when signed in as a registered customer? Sorry no. This is pretty easy to do with a script though. Just add it to Basecamp and I'll get to it this week.
-
Hello, The problem with enabling WSDK access in a store that is already live is there is no easy way to re-brand your cart. I have done this in a couple of cases but unless you are doing a bunch of WSDK stores the effort required to override the branding of your standard cart with the appropriate styling for the WSDK store…
-
Hi Tony, The process of pulling an order into Netsuite from an external shopping cart is something that can be scripted. There are some pre-built solutions for carts like Magento. It looks like 123-reg.co.uk has different options for their e-Commerce offerings. Some of these would be easier to deal with than others but…
-
Hi Mark, There isn't any real difference in setup between and kit and a group. As far as I know the differences are: [LIST] [*]The kit can have its own price independent of the components. [*]Sales on the kit hit the kit's account rather than the items' accounts. [/LIST] Kits are not "stocked" so unless there are…
-
IIRC as long as you use the same gateway for both the authorization and capture then you can authorize in one system and capture in another. I've done integrations for both PayFlow Pro and Merchant e-Solutions. On the NS side you don't need the auth code. The minimum external info you need is the p/n ref. You'll need to…
-
I've done this a couple of times. The most recent one uses a "headless" ssp app. (Headless in the sense that there is no UI and no defined touchpoints -- it's just a way to use the Shopping API easily). 1. figure out how to define an SSP app. The NS help works. 2. deploy the script called "createCartAsQuote.ss" below to…
-
If this is on a layout go to the category layout definition and enter the desired values for the height and padding values. Leaving them blank adds the NS defaults HTH
-
Hello, What you probably should be doing is using AJAX to embed your search results in the content of a normal category page. Then the rest of the page can be styled with normal templates and you can use the cart total /cart count tags you have probably already configured. HTH
-
site category is not a supported record type. Even though you can load categories and update them you cannot do any searching other than return a list of category names and ids. You can search site categories through SuiteTalk so the lack of being able to do this through SuiteScript is pretty frustrating. It doesn't look…