My Stuff
Comments
-
the quantity committed against that order line cannot be repurposes for something else. What does repurpose mean. Would one need to perform ReAllocate Orders or would it be possible to just fulfill a different order with that quantities when the commitment is not confirmed?
-
Hi, Any update on this issue. I see that Lot/Serial numbers have expiration dates built in but are not committing/fulfillment in order or age. Has anyone been successful with this using SuiteScript?
-
You most likely could though as with any js snippet, it would depend on the plugin. Keep in mind that SCA uses requirejs.
-
cbdyas Try setting the following fields on the Child Record. It should make the sublist editable without using SuiteScript. [ATTACH=JSON]{"data-align":"none","data-size":"large","data-attachmentid":422809}[/ATTACH]
-
RE: Search Filter 'any' Operator I too am trying to use 'any' for a search. I have an array of strings and wish to find a record with <span style="font-family:'arial'"><span style="font-size:'12px'">new nlobjSearchFilter('name', null, 'any', names)</span></span><span style="color:'#007700'"><span style="font-family:'Andale…
-
RE: Search for file in file cabinet ... // search the customer's folder var file_filters = []; file_filters[0] = new nlobjSearchFilter('folder', null, 'is', folder); var file_results = nlapiSearchRecord('file', null, file_filters); if (file_results) { for (var b = 0; b < file_results.length; b++) { ... khultquist Thanks…
-
How can I confirm that the Item Fulfillments shipping cost field has GL Impact. Looking at my testdrive account,I see an Item Fulfillment with numbers in the Shipping Cost and Handling Cost field but no related GL Impact!
-
JCirocco Looking at samples of Cash Sales in the HoneyComb testdrive account, I see GL Impact of the shipping and handling fields as Income, they are most likely being charged to the customer. I need to enter my own expenses that are charged to me by AFN fulfillments that they are not charging the customer!
-
Has anyone had success with this issue?
-
JCirocco Thank you for responding. he data is not coming from Fedex. I'm importing data from AFN fulfillment center which include all the data to create a Cash Sale along with their fees they are charging me per order which include shipping and handling fees among other things. I'm looking for the best way to enter the…
-
I've seen the shipping cost field in the Item Fulfillment. It doesn't seem to have any GL Impact though. The same for custom fields. Is there a way to handle this? As we're importing both Sales data and Shipping Costs and Fees from our 3rd party fulfillment center it would be convenient to keep all data related to a Cash…
-
I was able to replicate the issue too. The item option is hidden on the cart page but shows in the PDP and the quickview. In addition, It looks like grounds for filing a defect.
-
I'm not familiar with such a bug. Which version of SCA are you using? What is the url of the generated links?
-
It likely has to do with the permissions of the Custom Record. Assign some permissions to the role Customer Center and let me know if it helps.
-
That's mainly a matter of personal preference. There may be a minor performance improvement with a single module but you'll gain much more with modularity - if you keep each feature request separate it may be easier to debug. On the other hand if you find that you are overriding the same file multiple times, it may then be…
-
Did you add the custom field to the fieldsets tab on the Web Site Set Up page? You probably need to add it to the "order" fieldset
-
Sam, .nsdeploy is a hidden file (convention has hidden files starting with ".") Do you know how to access hidden/system files?
-
Has anyone been successful with this. Please post sample code that worked.
-
Are you creating a new Lot number or are you adding to an existing one? Also have you found a solution?
-
R3T1CAL You can write a script to populate the subcategory sublist. It it not listed as a supported sublist so it may not behave as intended. I have been successful adding new rows to the subcategory sublist. If you wish to retrieve field metadata though you may run into problems. For example I wished to retrieve the list…
-
fmeilan Although the Commerce Category record is scriptable, it's subrecords are not. I've just been notified by NetSuite Customer Service that as the subcategory record is not approved for scripting I shouldn't be using a script to edit it.
-
R3T1CAL I haven't come across any issues scripting the item sublist. If you want to avoid duplicates, you can use record.findLineItemValue() to see if it already exists. Just keep in mind that method only recognizes internalids
-
fmeilan I too have been working on using SuiteScript to import Commerce Categories and add Items. I have not been successful in the following two actions due to "Unexpected Error". I'm using SS 2.0 1) Loading an existing Commerce Category for the purpose of adding items. record.load() throws the error. 2) Adding to the…
-
You need to add the code to both the frontend js (JavaScript/) and backend js (SuiteScript/) in addition to the tpl
-
I'm using the default field sets - includes onlineprice_details for the item page and the rate field in the lineitem in the cart. These are synthetic built in fields. My question is that My Client Script does indeed adjust the pricing in the sales order - the final order does have the customized pricing, the rate field in…