My Stuff
Comments
-
Hi @Jack Daryl Espiel-Oracle I haven't had a chance to test sorry. It's Saturday here so I will test and post my findings when I can. Thanks
-
Thanks. That is a good suggestion Currently, I am working on a workflow that automatically closes the line if the quantity available is 0 or if the item is already on backorder. Will post the results here once I am done
-
Thanks for the suggestion @Entartes I just tested it now and it doesn't seem to prevent back orders From what I gather, isn't negative inventory different to back orders? (with this app being geared towards negative inventory and not back orders?)
-
Hi @Dominica Sevilla-Oracle Are there any updates on this? thanks
-
Hi @Dominica Sevilla-Oracle The item in question is added automatically via promotion Apologies for that, I should I have clarified earlier. The settings: The allow uncommitted setting is needed since other items can be on back order. It is this one item (the complimentary item added via promotion) that shouldn't be back…
-
To add to this: is there a way to have a workflow triggered by changes in the support case record, created by the system? For example, in a support case, I have the above mentioned changes. I want this to be a trigger for a workflow Is that possible?
-
Hi @Kristoffer Viray-Oracle Thanks. That seems to populate the rate. However, I was needing this field in a saved search and it doesn't show a value since the 'store value' is unchecked. If I try to tick 'store value' and try to set the field value using a workflow and the same formula of {itemunitprice}, I still get a…
-
Hi @Elychelle Gulen-Oracle Yes, I checked the bill to address. They were all using the same value (custom) from the drop down in the bill to
-
For quantity, I am thinking of the ones on the item line. so a quantity pricing breaks essentially
-
@Mikko De La Fuente-Oracle With the client script post sourcing idea, how would I look up a combination of the price level and quantity for an item?
-
Hi @Elychelle Gulen-Oracle The images are for a fictitious company in a demo account. None of the data is real. (it was just the default fake data on a Suitesuccess demo account). With the billing address, the invoice records were copied using the "make copy" function from the original invoice under the actions menu from…
-
Hi @Elychelle Gulen-Oracle The PO numbers are exactly the same. I had copied one invoice record and created the others and didn't enter this on any of the invoices The billing addresses are also the same The attached images were removed.
-
Thanks @Niks Blando-Oracle I had a related question (sorry if I need to start another thread?) Is the invoice grouping functionality scriptable?
-
@Mikko De La Fuente-Oracle The record is in edit mode How would I use a saved search if the record hasn't been saved yet? What kind of script would be needed for this?
-
The record was in edit mode. It still wasn't sourcing a value and returning an error though Is this custom field supposed to work? Or can this only be scripted?
-
@Mikko De La Fuente-Oracle i have tested this as follows: The item's record:
-
Hi @Mikko De La Fuente-Oracle The price level will be from the item record. I have tried setting up a custom field that sources the price level directly However, the price level I am interested in isn't available I can only have this field auto populate with the base price In this example, the rate charged for the item is…
-
Re-tried it (I must have had a quote or comma in the wrong place) and it now works In the source view: <#--FM:BEGIN--><a href="${record.custbody_if_invoice?replace('<[^>]+>','','r')}">${transaction.tranid}</a><#--FM:END--> Thanks Jack!
-
Found how to create the saved search on here:https://suiteanswers.custhelp.com/app/answers/detail/a_id/90124/~/create-a-custom-field-that-links-an-item-fulfillment-to-an-invoice
-
Hi @Jack Daryl Espiel-Oracle Apologies for the delay in responding. I have just got around to testing this. I have ended up moving the hyperlink to an email instead of the PDF. Should the same solution work in a scriptable template seeing as that also uses freemarker? I have tried the following though am getting an…
-
Hi @Mikko De La Fuente-Oracle I can't see how to create a saved search to reference the item fulfilment from an invoice. There are "2 degrees of separation" in the sense that the IF record is connected to the sales order and not the invoice record. In that scenario, how would I query the item fulfilment transaction…
-
Thanks so much for the suggestions @Jack Daryl Espiel-Oracle I had managed to get the field to populate after moving the the workflow action to another state It was populating an unusual value however. I couldn't see where this was sourcing from on the customer record. After using your suggested formula, it is populating…
-
Thanks @Mikko De La Fuente-Oracle The suiteanswers link is referring to the companies sublist as part of the contact record I am after the contact sublist on a company/customer record though This is on the records browser However, in my example above from a demo account, I can't get any of the contact from that sublist…
-
Thanks @Kristoffer Viray-Oracle That worked. I want to mark your answer as 'accepted' though I accidentally selected "no" for "does this answer the question"
-
Hi @Jack Daryl Espiel-Oracle there is no tax total field since the pdf relates to an item fulfilment record which, from what I can tell, doesn;t have dollar values on it and only quantities. The dollar values are sourced from the sales order referenced in the {record.createdfrom} field
-
Thanks @Mikko De La Fuente-Oracle I have tried the following revised code: define(["N/record"], function (record) { /** * @param {UserEventContext.beforeLoad} context */ function beforeLoad(context) { if (context.oldRecord == null) { var recordObj = context.newRecord; } else var recordObj = context.oldRecord;…
-
Hi @Kristoffer Viray-Oracle There wouldn't be any custom field set up in the typical sense (e.g. like custbody fields) They are created within the script for the purposes of storing values temporarily when the script is triggered. They are both of the type "FLOAT" Is that what you meant?
-
Hi @Mikko De La Fuente-Oracle I don't see any options to do that with a scriptable template email: There are no fulfil/receiving transaction; applying transaction,etc fields or joins
-
Hi Example: Packing slip advanced pdf Transaction Netsuite invoice I have changed the script so that it is now rounding to 2dp. Netsuite is set to round at a "transaction level" with this "rounding up" On the advanced pdf, all of the total figures are rounded using the following: ${ttotal?string("$,##0.00;;…
-
Hi Kristoffer The fields in the template are both float type fields: There is a userevent script on an item fulfilment page. This is before load event which sets the fields using the code above. That code is sourced in the advanced pdf where the error is produced