My Stuff
Comments
-
Hi Evan, Thanks for replying, yes your solution works like I want it. Thanks Regards, Andry Wang
-
Hi Jasvir, Thanks for replying, I have tried your solution. I see that it works on access to transaction, customer, and employee records, but it does not work on my custom recordtype. Is there any additional setting for custom record? Thanks Regards, Andry Wang
-
hi Alex, yes you can, as long as you have the link : sales order -> return authorisation -> credit memo just create a formula field : {createdfrom.createdfrom}
-
hi Alex, Probably you could use this : function Right(str, n){ if (n <= 0) return ""; else if (n > String(str).length) return str; else { var iLen = String(str).length; return String(str).substring(iLen, iLen - n); } }
-
Hi vice_09, thanks for replying, what I want to emphasize is having a new custom page for entry several record in one time. If I am using the standard entry form, user have to input one by one. scenario : 1. I choose a record "A" using filter 2. populate the record "B" inside the table 3. checked the required record "B" 4.…
-
Hi Evan, The solution that you suggest above is it using netsuite assistant UI object / redirect url between custom page or there is other alternative ? thanks
-
Hi Evan, thanks for replying, I'll try your suggestion. In suitelet, how to have event function like fieldchange? for example I have a field "Project" with type "list/record" that will be populated when the page is load. after field "project" value is selected, then populate the sublist. I am not yet understand how to…
-
Yes, it's because the "Store Value" option still checked. Thanks George :D
-
just create a custom field and set the value on before save userevent script. Next then you can carry the line value forward to order, fulfillment and invoice
-
I think you could set when create the bundle to enable the bundle creator to push an update to any production account that install the bundle.
-
Hi, You could refer to this table [h=2]NetSuite Transaction Type Internal ID Numbers with Reference to SuiteScript Search Filters[/h] NameInternalIDAssembly Build34Assembly Unbuild35Bill17Bill CCard19Bill Credit20Bill Payment18Bin Putaway Worksheet42Bin Transfer45Cash Refund29Cash Sale5CCard…
-
Hi Olivier & Khultquist, thank you for your input, since the barcode reader unable to switch so I go with Olivier suggestion using client side script with on save to return false by adding tickbox. thanks
-
Hi Olivier, thanks for your input. The transfer order creation process works fine now via suitelet. Thanks
-
do you have example how do you implement it in suitelet? I am a little bit struggling reading the bfo documentation since there is no example how to implement it in suitelet. thank you
-
so the attribute is only codetype , showtext and value ? or there is other attribute that have impact to barcode size? thanks
-
Hi Puja Roy, I have checked the 'Available without Login' and try to run it again but still returning the same error either using & or &
-
Hi Puja Roy, the error is Error Parsing XML: Can't load resource from "null"
-
Hi Puja Roy, I have changed it to & but the same error still returning
-
Hi Pradeep, I am still getting the same error. I am using below line var file = nlapiLoadFile(446); var myCssUrl = 'https://system.netsuite.com' + file.getURL(); xml += '<link href="'; xml += nlapiEscapeXML(myCssUrl); xml += '"/>';
-
hi pcutler, ok got it, thanks
-
hi kimosalen, yes for the startdate and end date filter solved by using 0 for january and 11 for december. var startDateFilter = new Date(yyyy,0,01); var endDateFilter = new Date(yyyy,11,31); do you have suggestion for the 1st issue : how to handle getting date value from NS with format DD/MM/YYYY and save it to javascript…
-
hi Evan, what I want to achieve is : transaction date >= custrecord_kurspajak_effectivedatestart and transaction date <= custrecord_kurspajak_effectivedateend am I wrong placing the operator onorafter and onorbefore?
-
Hi Frédéric Jannelle, yes, this is what I looking for. thanks
-
hi Seanlin816, try this: <IMG SRC=\"https://system.sandbox.netsuite.com/core/media/media.nl?id=213661&c=1005164&h=7460ccf6ff6 c5beaa5c1\"/>;
-
Hi John, It work by following your suggestion replacing the & with & thanks
-
you could try put the "script 1 - user event script" into the library script file section in the "script 2 - user event script" and call the auto number function in "script 1 user event script" from inside the "script 2 user event script".
-
Hi Julie, is this line -> nlapiLogExecution('DEBUG', 'line updated'); inside item looping get executed?
-
try this one when setting the line item nlapiSetCurrentLineItemValue('apply', 'apply', 1, 'T'); nlapiSetCurrentLineItemValue('apply', 'doc', 1, '227'); nlapiSetCurrentLineItemValue('apply', 'due', 1, '0'); nlapiSetCurrentLineItemValue('apply', 'disc', 1, '1'); nlapiCommitLineItem('apply');
-
@tbuffington : thanks, but I need year to be filter in number so I could use it dynamically. For example if usually do it in sql: where year(transdate) = '2013'
-
@Shrinivas : I agree like Olivier said that you better : 1. upload ext js any version you have into your file cabinet 2. include in your suitelet library 3. put <script type="text/javascript" src="ext js library file.js"></script> inside your suitelet code