My Stuff
Comments
-
Hello All, Maybe this is the wrong place for this question but it looks like the closest thread to my issue. Is it possible to pull the store Display Thumbnail URL so that I can create a custom template that looks like this: <img src="<%=getCurrentAttribute('item','storeDisplayThumbnailURL)%>"…
-
even, Is it possible to order a matrix item from the customer center "Enter an Order" form? I have permissions set to "Create" on the role and am using the Sales Order Invoice (External) form. When I go to the form in the "Item" drop down I see the Parent that I have set up but now why to select the Child? When I go to…
-
Looks like it's still not working....(there's a surprise) and no word from NetSuite....(another big surprise). Ugg
-
Well, I'm glad I read this - as I thought that I was going crazy with the same problem? Any word on a fix for this very very very needed feature? NetSuite can we get a little help here? Trevor Whiting Corso's Cookies
-
Hi Mark, I was able to see the history as you suggested, although do you know of any other way to get a time stamp right on the fulfillment record itself? We are trying to do a search with Web Service to find orders that have been fulfilled between specified times during the day? Thanks, Trevor
-
Thanks for the update Evan that would be very helpful. Is there a strong likleyhood that this will be in the September release? Trevor
-
There will be a joined search entry in the maintenance release, so you will be able to add any field from the originating transaction (that's available in search) onto a search. We also added a new "source list" entry for "Created From". This should let you source other values from that transaction onto forms - but I…
-
Hi Evan, Sorry are you saying there will be as of the release or it has been released. Thanks, Trevor
-
And I'm guessing that "NetSuite Anaylitics Module" is an upgrade/more money, for something that should be included:confused:
-
Hi Mimi, Thanks for the reply! I checked and I do have "Store Value" checked and I have "Show" selected on the "Screen Fields" tab of our Custom Form and still no luck - ug Any other ideas? Thanks, Trevor
-
Hi Tony, Thanks for the reply! I am testing your approach and have a few question as I am a relative newbie to this method. I'm not sure how to pull the ID of the customer dynamically? I tested it and the only way I could get the customers "category" to come through was to hard code in the customer's "ID" into the…
-
Sounds like a great work around. I was thinking/hoping this is something we should be able to do without custom code. Any chance you want to share your code or let me know what something like this would cost. Thank You, Trevor
-
Thanks for the update! It sounds like a great idea - Unfortunately I am not great with JavaScript so I will need to get someones help to right that rule. Thank You, Trevor
-
*** Just bumping this up a bit *** Does anyone know if you can create a dynamic default on an item option field that pull its info from a item field?? Thanks, Trevor
-
Thanks E! That worked great! Trevor
-
Hi Afloral.com, With the method of Image and Description field would I be able to hard code a link for the Image? What I mean is I would like the customer to be able to click on the image and have it take the customer to that image's item page? I was able to make a link for the "Brief Description" which will have to be…
-
Hello All, We are in the process of building out a new site and I have hopefully a quick question. We have a lot o holiday gift categories and I am not sure which approach is better in SEO terms 1. http://corsoscookies.com/holiday-gift-ideas/valentines-day-gifts or 2. http://corsoscookies.com/valentines-day-gifts We have a…
-
Sorry, It's not on our our current home page. We are in the process of re-designing the and am trying to incorporate as many best practices as possible. http://corsocookies.com/christmas-gift-ideas Any of the links under the "Shop" tab will show the issue. It seems to only happen when I include the full URL in the href ie.…
-
Question On Linking? In my HTML Tag code I have added the following <a href="http://www.corsoscookies.com/cookie-bouquets">Cookie Bouquets</a> Once I look at the pages online the href looks like the following: <a href="http://www.corsoscookies.com/cookie-bouquets?ck=SiXr2YLwALPD3v8U&vid=SiXr2YDwAGhNcsEF&cktime=1570">Cookie…
-
Quick Question on Descriptive URL Links? Which is a better for SEO Link 1: <a href="http://www.mysite.com/my-category">Category</a> or Link 2: <a href="/my-category">Category</a> Thank You, Trevor
-
You bet, that is basically what I am looking for! I will try my hand at it but might be a bit over my head. Thanks! Trevor
-
Hi Steve, Sorry for the confusion it seems hard to explain. We offer any themed "Cookie Bouquet" as a "Gift Basket" as well. So on our site we want to be able to have a link that says "Turn This Into A Gift Basket" which will link over to related "Gift Basket". I realize that I could use the Related Products feature but we…
-
Hi Steve, I am a relative Newbie at this. I figured that I would see if I could get a simple search to work before I tried the rest but I'm not having any luck..... am I on the right track? Basically All I really need to do is find the internal ID of a specific itemID because I will always know what the itemID is. function…
-
Just what I did not want to here. We are in a similar situation. almost every one of our over 300 items is a Matrix item currently. So what I am hearing is that there is no way to use any advanced inventory control like Kit, Group, or Assembly based on the parent of a Matrix Item? NS I see that this subject keeps coming…
-
Now we are talking - That did the trick. I'm not sure how I would have figured that out. Thanks again for your help - though I am sure I will be posting here again as I move further through this project. Trevor:D
-
Hi Tim Thanks for all your help - That worked! Would I use the same idea to filter out and return only Inventory Items? What I mean is that the search returns an average of 4 lines for each order. I can't use the Main Line filter because that does not contain the item being ordered. And I don't need to see the shipping…
-
Hi Tim, I was starting to come to the realization that it was not supported. Can you point me in the direction of where I can start looking for info/documentation on how to accomplish this via dynamicaly generated html? Also my biggest reason for needing to do this via Suite Script is that it's the only way I have been…
-
Hi Tim, I tried filters[2] = new nlobjSearchFilter('type','item','anyof','inventoryitem'); but the search then returned no lines? Most of our products are Matrix items if that makes a difference but not all though. Also I downloaded and printed the Entire Developers Guide a few weeks ago and read through just about all of…
-
Hi Tim, Tried that (see below) and still got the same Unexpected Error? function salesOrderMSG(request, response) { var list = nlapiCreateList('Sales Order Center Cookie'); list.setStyle(request.getParameter('grid')); list.setScript(239); var column = list.addColumn('number','text', 'Number', 'LEFT');…
-
Hi Tim, Can you tell me if it is possible to perform Highlighting with Suite Script? When I create a Saved Search I can highlight rows based on criteria that I set up. I am wondering if that same thing is possible with Suite Script. If so can you point me in the right direction of were I might look in the developers guide…