Mi contenido
Comentarios
-
Hi @Benjamin Paul - USA and @Aaron McCausland , I tried to find a solution for this by creating a custom field. However, custom field formula would not work on View mode. On view the field will show ERROR: Field 'customform' Not Found. This is another pending enhancement request (#248850). To make it work, I created a…
-
Hi @User_5OUXV, have you checked if your saved search has been made available to other employees? Employee records usually contains sensitive information and is often restricted to other users. You can try to check the following Saved Search settings to make the saved search available to other users: ・Tick Public checkbox…
-
Hi @AhmedM , I am trying for a preference/setting that will disable "Show Currency" for multiple result but was not able to find one. I was not able to find anything related under Home> Set Preferences> Analytics or Accounting Preferences or General Preferences pages. The ability to mass update reports settings is still a…
-
Hi @MaheboobVanteli , just adding some more information for you. Here are some SuiteAnswers article you might find useful: ID: 74755 "Duplicate Detection for Custom Segment or Custom Record" Mentions: Currently, Duplicate Detection only support the following records such as Customer, Contact, Partner, or Vendor records and…
-
Hi @User_IJB6M , thank you for your reply. Click Yes next to Did this answer the question? to the most useful answer to tag this as answered. That way, it will be easier to find for other users with the same question. Thank you!
-
Hi @User_IJB6M, you might have already seen me reply to another thread you participated but the following article might be useful for your development of scripts or general understanding of what statutes exists. SuiteAnswers article: 50165 "Transaction Status List of Internal IDs". It provides a table of transaction…
-
Hi @lynale, check SuiteAnswers article: 50165 "Transaction Status List of Internal IDs". It provides a table of transaction statues. It can be useful for development of scripts or general understanding of what statutes exists.
-
Hi @User_JN6ZZ good to know this is resolved on your end. You screenshot looks similar to the basic pdf layout. Just for the benefit of other user who might encounter the same issue as you, I'll list some useful information. ・Packing slips have their own Custom Transaction Forms where you can define the associated printing…
-
Hi @RS_RS , thank you for letting me know! Happy to know this is working for you now.
-
Hi @RS_RS , maybe something like this? Apologies for I don't have a data to test at the moment. But I am guessing a table should help it work. <#if record.item?has_content> <table style="width: 100%; margin-top: 10px;"><#list record.taxsummary as tax><#if tax_index==0> </#if> <tr><td colspan="2">Tax: ${tax.taxcode} ,…
-
Hi @RS_RS , can you try this? <#if record.item?has_content> <#list record.taxsummary as tax><#if tax_index==0></#if> Tax Code : ${tax.taxcode} </#list> </#if>
-
Hi @RS_RS , based on SuiteAnswers 64720 "Printing Transactions with Tax Information in SuiteTax" it looks like you have to loop through the tax summary table first like this: <#list record.taxsummary as tax> ${tax.taxcode} </#list> If you are sure that you should only have one value, the following might work: <#list…
-
Hi @Ehab Elboraey thank you for confirming. For now, the ability to include search filters/criteria is not available as a feature and is logged as an enhancement request in SuiteIdeas #465791 Saved Search > Advanced Template > Include Filters on the Printing Template.
-
Hi @User_K51C7 , you might try to take a look at the email header to find some more clues on what happened. Here are some references: ・SuiteAnswers ID 14695 "Determine Email Origin Based on Email Header Details" ・SuiteAnswers ID 72924 "Viewing Email Headers in Gmail" Here are some other articles providing insight to what…
-
Hi @Amjad Kasem , just adding on what Jervin already suggested, this information is available on SuiteAnswers 44536 "Printing Subsidiary Logo on Advanced Templates". Also looking at SuiteAnswers ID: 78139 "Standard Packing Slip PDF/HTML Template" ${subsidiary.logo} should be available for use in the source code as long as…
-
Hi @Ehab Elboraey , to show total you can use a variable within your Advanced PDF template source code and add values within the list loop. For example, something like this will show total amount and quantity. <#assign totalAmount = 0> <#assign totalQuantity = 0> <#list results as result> <#assign totalQuantity =…
-
Hi @3964709, the ability to use Advanced PDF/HTML Templates with Summary Saved Searches is logged as an enhancement request in SuiteIdeas as enhancement #647374.
-
Choice: C
-
Choice: A
-
Choice: A
-
Choice: B.
-
Choice C.
-
Hi @Dext3r, I also tried but there seems to be no freermarker built-in that can convert numbers to words in foreign language. In English we can use the following formula as default value on the custom field, to convert to words however it will still show English words even I switched to another language under Set…
-
Hi @SanjeevV, there seems to be an on-going issue involving rich text fields/email formatting. The reported problem looks like the screenshot you shared. This has been investigated, verified and the fix should be released anytime soon, likely within the day. If this is urgent for you, file a support case to receive more…
-
Hi @John Jacobs , there seems to be an on-going issue involving rich text fields/email formatting. This has been investigated, verified and the fix should be released anytime soon, likely within the day. If this is urgent to you, file a support case to receive more details.
-
Hi @User_KWM0A, maybe you want to try double clicking on the Oracle | NetSuite logo on the upper left of your screen to show the Performance Details popup screen? It might shows us a clue on what is causing the delay.
-
Hi @Kei inoue-mizu, I hope we can improve that by starting to engage more here in our community group. I know that many Japanese users search for answers here. I hope to see more users start being active here in our community!
-
Hi @User_KWM0A , I just tried on my test account and the performance was not bad at all. Maybe you can check if any of the following apply to your template? PDF template includes image of big size When image is uploaded on file cabinet, "Available Without Login" was not set Custom script are loaded upon printing Printing…
-
Hi @User_JN6ZZ , there are a few places to check. On the invoice, before saving ask them to check if Communication> Messages> To Be E-mailed is checked. Uncheck this if you don't want to send an email upon saving. This is defaulted based on preference set on Customer record> Preferences: Or a global preference in Setup>…
-
Hi @Elise M. , I can only think of using a bundle installation script. For testing, I was able to get the before and after version as follows: /** * @NApiVersion 2.x * @NScriptType BundleInstallationScript */ define(['N/runtime'], function(runtime) { function checkVersion(params) { log.debug('fromVersion',…