プロフィール
コメント
-
D.J., It appears that chrole=xx&cjsid= is being presented to the search engine bots. Should this have stopped in the last v2007.1 release?
-
Create a support case. In the subject put: Vote for Enhancement 109212 / Google Sitemap.xml The case will be attached to the issue then you will be able to see the issue in your NetSuite Support Center. The stuff after the slash is not needed but it will help you recognize the case in the future.
-
...your sitemap.xml and it requires downloading... Matt, I have observed the same behavior about downloading. I posted about it: https://usergroup.netsuite.com/users/showthread.php?t=7437 Both Google, Yahoo and Ask are downloading our sitemap files. In Google Webmaster Tools, Google says it is picking up a valid sitemap.…
-
There were a couple of windows of time where the spider detection was not working and we served jsessionid's to site crawlers as if they were a web browser. D.J. - The "we served jessionid's to site crawlers" will have a significant negative impacts on a site. If page reputation is established for the non-jessionid URL and…
-
Netsuite Web Store Users: Please -- Vote for Issue 134611 - ?chrole=17&cjsid= These parameters should not be presented to the search engine bots. This is a small SEO optimization issue. If it were fixed, it would not rocket everyone to the top of the charts. If everything on your site is either positive or negative for…
-
Since 2007.1, GSiteCrawler has produced perfect Google, Yahoo and HTML sitemaps for me. No jsessionids, no ?nl duplicate categories etc. Julian, That is great news! That you for sharing.
-
This problem is covered by issue 126603 and will be fixed in this Fall's maintenance release. What we will do is detect requests comin in from a spider that have a JSessionId on the URL, and then 301 redirect to the pure form of the URL. This will inform search engines to update incorrect and duplicate URLs that may reside…
-
Not sure why what you have listed is bad. I think it is a little customized for Google. The generic definition from sitemaps.org is below: <urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"…
-
...Google sitemap has adverts Paul, What does "adverts" mean?
-
Vesku1980 Thanks for the pointer on nlapiGetLineItemValue. Unfortunately, the same behavior occurs. The nlapiGetLineItemCount returns 1 but when I use nlapiGetLineItemValue, I get null returned. From looking at the raw xml, I've tested various fields and all return null. I am wondering if the "apply" list is not yet full…
-
david.smith The after submit function would be too late. The business goal is to "default" the value of payment.location based on the invoice the payment was created. If the user wants to change the location, then they are allowed to do so.
-
Vesku1980 Ugh - always check the Schema browser not the XML... The field to use is "doc" not "internalId".
-
The email used for the reply is the one defined in employee 6622. As far as I know, you cannot generate the NetSuite Email with the Hashes that preceeds the @something.netsuite.com Regards, Bummer - it is annoying that the order confirmation messages do not have the Hashes either.
-
Please file a case with support so we can investogate. Bump Bump
-
My question may be answered here: https://usergroup.netsuite.com/users/showpost.php?p=135887&postcount=2 I've been using the email address instead of the entity.internalid
-
When you call nlapiSendEmail are you attaching the email to the sales order via the "records" parameter? //Get the InternalId of the Sales Order var tranRecordId = nlapiGetRecordId(); var records = new Array(); records['entity'] = tranRecord.getFieldValue('entity'); records['transaction'] = tranRecordId; var email = new…
-
Please file a case with support so we can investogate. NetSuite case #1255277
-
Yang, email works great from the UI. This is the business case: 1) Customer enters order via the website using a credit card. 2) The bill to address entered by the customer does NOT match the bill to address the bank has on file. 3) I have a aftersubmit script which emails the customer stating they must provide the correct…
-
Do you see this behavior anywhere else in NS? I don't think I'd want to see messages attached to everything. I like contextual organization. Voltron, If one send an email from the Sales Order from within the NetSuite UI, the email is attached to the Sales Order, Customer and Employee. At least that is the behavior in our…
-
This is NetSuite case#: 957441
-
Couple of points: 1) User Events do appear to be triggered by batch fulfilling as it is working again. 2) The fix in this case is to test for an empty string: Change: if (tranRecord.getLineItemValue('item', 'createpo',1)!=null To: if (tranRecord.getLineItemValue('item', 'createpo',1)!=null &&…
-
LOL -- I'm about 98% sure. I've just run the debugger against this and this is what I find, the tranRecord.getLineItemValue('item','createpo', 1) is causing the issue. 1) Manual fulfillment: tranRecord.getLineItemValue('item','createpo', 1) = {object} null 2) Batch fulfillment:…
-
Olivier, Thank you for the feedback. * tranRecord.getFieldValue('ccavsstreetmatch')=="Y" Really? I've never worked with that particular field, but I find it odd it would return 'Y' rather than 'T'. The possible values are Y, N, X - where X=Bank does not support AVS. * emailtrue = "T" This seems to be a value you use for…
-
There is not a feature like the GoldMine Tracks (Automated Processes when I used it 10+ years ago). There are ways to do similar functions. This thread talks about doing emails via Saved Searches: https://usergroup.netsuite.com/users/showthread.php?t=11981 This post talks about using SuiteScript:…
-
Curious -- did you happen to check the value on the Local Varibles tab?
-
Another option is to use #1, but instead use the After Submit event. Ah - you are right. :o I think your suggestion to be the best option. For some reason, I continue to forget / discount afterSubmit. (I have a couple running but I just never consider it first) Thank you for the feedback!!
-
On the Item Fulfillment record, the Drop Ship PO column field will be populated if the Item Fulfilment was created from a Drop Ship PO. Gotcha. Therefore, you test the first line of the fulfillment record check the value of [FONT=MyriadPro-Regular][SIZE=1] createPo. All of the other lines would have to be the same. Thank…
-
Try setting isbillable instead. Thanks, Yang Yang, Thank you! You are correct it should be isbillable instead of billable
-
Actually in v2007.1 you can create an afterSubmit user event script on dropship and specialorder POs. Yang, To make sure I understand, you cannot do a beforeSubmit on dropship / special order PO's? The reason for the importance is that we have web services poling for new PO's. If I have to use an afterSubmit, I will need…
-
Just checked v2007.1. It does not look like the improved sourcing ability provides the ability to do this any different than in v2007.05.