My Stuff
Comments
-
Hello Mayur, You have a few options here to correct this. 1. In the html you posted, remove class=thumb (in your screen.css style sheet, the height is set to 160px, which is pushing the height outside the related-item-list style height of 200px. 2. In your screen.css file, adjust the entry for .item-box .thumb {position:…
-
Note: This requires the Advanced Site Customization feature. Setup > Website > Customize Text > Messages Sub Tab > Tell A Friend Field. Additionally, please use the tag <%=getCurrentAttribute('item','tellafriendlinkhtml')%> and not <%=getCurrentAttribute('item','tellafriendlink')%> as discribed in the Help. A request has…
-
Issue 131555 has been filed for this.
-
Defect 131957: Web Site > Setting the quantity of an item as less than the items Minimum Quantity value does not display a Below Minimum Quantity warning pop-up message. Also filed additiona Defect. Defect 131959: Web > Disabling the 'Description' column at Setup Web site > Cart tab, prevents the 'Below Minimum Quantity'…
-
Hello Alex, To answer your 2nd question. If you install the bundle and deploy it, you can revert back to normal by navigating to Setup > Web Site > Set up Website > Touch Points, and remove all the touch point entries. For each touch point, NetSuite replaces all incoming links to the default URL with links to an SSP…
-
Hello BK0001, If you have not already done so, please open a case with Support in order to investigate this scenario further. Thank you kindly,
-
Hello Eric, I haven't located where the cart_itemlist macro is being referenced, however, if need be, you could hard code the column headers in the following template files. (customized text is in green) Location: Shopping Cart File: cart.txt <!-- BEGIN cart list --> <div class="cart-list"> <table>…
-
Hello Eric, Thank you for the clarification. Please feel free to open a case with Support regarding these fields not disabling when selecting PayPal. Please note in addition, that this will likely be dependent upon Issue: 210852 ECommerce Reference Checkout > Shopping Platform API > Support for Paypal/Google Checkout Thanks
-
Hello Eric, The issue you had with the 'next step' button not working with PayPal may be related to Issue: 221393 - Reference Cart & One Page Checkout BETA > Bundle 21011 > Edit Shipping & Delivery or Billing & Payment after the review step, will not take the user to the review step (Review Your Order) again when clicking…
-
Hi, This is because IE 7 includes the new ClearType page technology for rendering fonts. You can read more about ClearType here: http://www.microsoft.com/typography/WhatIsClearType.mspx You can enable ClearType in Windows so that Firefox fonts will display in ClearType as well. However, keep in mind that this will affect…
-
Hello, This can be found in the NetSuite help and in SuiteAnswers: Help topic: SuiteCloud (Customization, Scripting, and Web Services) : SuiteTalk (Web Services) : SuiteTalk (Web Services) Records : Transactions : Transaction Search SuiteAnswers: Transaction Search (Answer ID 11011) Thank you.
-
Hello, SuiteAnswer 'PHP Toolkit 2012.2 > Set up auto-completion in Eclipse or the SuiteCloud IDE' (ID 24974) covers this. Thank you.
-
Fields are defined in the 'SuiteTalk Schema Browser' in the NetSuite Help Documentation. For example, navigate to Records > sales.xsd > SalesOrder > entity > Sets the customer this sales order is associated with. In order to retrieve a list of available values for this field, use the GetSelectValue operation.
-
If you check the nslog folder for the PHPToolkit, you should see a more descriptive reason for the error in the SOAP response file. Thanks.
-
It is likely not set in the UI, so not returned.
-
You may need to set the searchPreference bodyFieldsOnly to 'false'. Otherwise addressbookList is not returned. $service->setSearchPreferences(false, 20);
-
SuiteAnswers has an article on how to vote for enhancements. Voting for Enhancements (Answer ID: 10054) (SuiteAnswers can be accessed from your NetSuite Support Tab) Thanks,
-
Neither :) Open the same record in the UI and check if the attention field is blank. You can also perform a 'get' if you know the exact record you want.
-
If you do not specify any columns essentially performing a basic search, the 'name' value will also be returned. However, it will also return all body fields in the response, but you can selectively grab the values/columns you want from that. There is an Enhancement you can vote for related to this: 243330 - WS > Saved…
-
Is addressee being returned in the SOAP? I suggest you check that first, it will be in the nslog folder of the PHPTookit folder. If not, please open a case with NetSuite support, as this may require more in depth troubleshooting. If it is there, you can get the value using something similar to this. $addressee=…
-
Hello mdrum/bsimmon105, Web service integrations vary too widely to make a generic statement on this. You will need to open individual cases with NetSuite Support regarding this. Each of your scenarios will need further information from you (such as sample SOAP showing the problem) and troubleshooting to help you determine…
-
I assume you are doing a join against the customer record to pull the companyName. In which case you will need to pull from $record->customerJoin, checking for null, as shown below. [PHP] foreach ($records as $record) { if($record->customerJoin){ echo "Name: " . $record->customerJoin->companyName[0]->searchValue . "\n"; }…
-
The following should work for you. <soap:Body> <platformMsgs:getSelectValue> <platformMsgs:fieldDescription> <platformCore:recordType>salesOrder</platformCore:recordType> <platformCore:field>shipMethod</platformCore:field> </platformMsgs:fieldDescription>…
-
In the soap envelope in your request, you may need: xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Thanks,
-
Hello, Please edit your RESTlet deployment and under the Audience tab, set the role you are using to connect with (Administrator in your sample code) or check all roles if you want it available to all roles. Thank you.
-
Hello, Please try something similar to: [PHP] $basicCustomRecord = new CustomRecordRef(); $basicCustomRecord->internalId = "124"; // internal id of the custom record you want to delete $basicCustomRecord->typeId = "159"; // Record Type's internal ID (Setup > Customization > Record Types > (internal id)…
-
Hello, Please contact your NetSuite Account Manager directly regarding your inquiry into the SuiteCloud Plus provisioning. Thank you.
-
Expressions are not supported in Web Services searches. You will have to perform two searches, one for 'empty' and one for '0'. And have your code do the work with both result sets. Please feel free to vote for Enhancement 96227. Thank you.
-
Hello nicholasmschultz, Unexpected errors like this require an initial investigation by NetSuite Support. If you have not already done so, please open a case with NetSuite Support including your SOAP request and response files. Please also indicate the environment you are working in (production/test/sandbox) Thanks you.
-
Hello, Perhaps this SuiteAnswer will help you. PHP Toolkit 2012.2 > Perform a GET operation on a Custom Record Answer Id: 24973 https://netsuite.custhelp.com/app/answers/detail/a_id/24973/ Thank you.