Mi contenido
Share Your SuiteWorld Experience & Earn a Special Badge!
Comentarios
-
Upon further checking, HTML should be supported in the Field-level help of Custom Fields. Also, the code should be enclosed in <html></html> for Custom Fields but not needed for Standard Fields (as shown in my previous post). With the above said, the issue you are encountering could be a potential defect and I was able to…
-
Greetings @kimt, Upon doing a quick test for this on a Standard Field, external links seems to work properly on my end. See screenshots below: Result: I think that using the <html></html> tags is unnecessary. Hope this helps. If you find this reply to your question useful, others might be as well. By clicking “Yes” on “Did…
-
Greetings @User_ZDJX4, To populate the fields in the Contact Record to be created, you need to configure the sublist under the Parameters section of the Create Record Workflow Action. See sample configuration of the action below for your requirement: Hope this helps. If you find this reply to your question useful, others…
-
Greetings @Asher_123, Thank you for posting a new inquiry in NetSuite Support Community. Tagging our guru @Shamaine Chan-Oracle who might be able to help you out on this one. To others who have any ideas, feel free to share them here. -Jack
-
@Vernita, In my speculation, there could be a difference in the way NetSuite generates the PDF File for Statements from printing other transactions whereas the former is affected by the chromium bug and the latter isn't.
-
Greetings @User_7SJYV, According to SuiteScript Records Browser, orderdoc is a text type hidden field that contains the Internal ID of the associated Purchase Order for each line item on the Vendor Bill. Since the field is hidden and its visibility cannot be configured on the Custom Form, you can create a Custom…
-
Greetings @Twilalte, If you set the delay on the Send Email Action and the action is in the Last/Exit State of the Workflow, you should enable the Do not Exit Workflow option for that state to prevent the Workflow from finishing before sending the email on the scheduled delay. See sample screenshot below: Hope this helps.…
-
Greetings @Jyothi B, Currently, there are no Audit Trail Reports readily available in NetSuite and you should define them manually for supported objects. Here are some useful SuiteAnswers Articles for defining the reports for some of the objects you specified via Saved Searches: Workflows Roles Script Server Script Log As…
-
Hi @Vernita, The possible reason for the issue in Chrome to be also reproduced in Microsoft Edge might be because the new Edge Browser is Chromium-based like Google Chrome. The causing chromium bug linked in my previous post could be applicable to all Chromium-based browsers. Can you try printing the Statement PDF using…
-
Greetings @Asher_123 , Thank you for posting a new inquiry in NetSuite Support Community. Tagging our guru @Shamaine Chan-Oracle who might be able to help you out on this one. To others who have any ideas, feel free to share them here. -Jack
-
Greetings @esgensle, If you have a Sandbox Account with the deleted data still intact, you can perform a CSV Export from that account then CSV Import on the Production account. If the option above is not available for you, the only other option is to avail of NetSuite's Data Restoration Service which will incur you a…
-
Greetings @dle_35705, Testing on this, it seems that the criteria you specified for date checking cannot be handled by Workflows upon creation of records since the formula for it is too complex even with Saved Search Conditions. See screenshot below for the Workflow log explaining this limitation: Here is the Saved Search…
-
Greetings @Montano, We would like to request the following additional information for testing: Have you edited other parts of the template code aside from the css part? From where do you print the Item Labels (Transaction, Print Item Labels page, etc.) ? What type of items and barcode are you printing…
-
Greetings @VirtusX, To answer your first question, there is no field reference that you can use to get the Base Price in freemarker. As for a possible solution to your requirement, you are in the right direction in creating a transaction line custom field but since Workflows currently does not support getting data from the…
-
Greetings @User_Q9SHI, Upon checking, adding Item Fields to the Advanced Template for Item Labels is currently not supported. The following Enhancement Request has been filed for a possibility of future implementation: Enhancement 345568: Advanced PDF/HTML Templates > Custom Item Label PDF/HTML Template > Ability to print…
-
Testing on this, I came up with a solution which is to have a Workflow populate the Free-Form Text Field with the value of the Customer field on the Estimate using Set Field Value Action. See screenshots below for the configuration of the Workflow Action: Expected Result: Hope this helps. If you find this reply to your…
-
You're very welcome @Jay Schwausch! Glad I could help ? -Jack
-
You're welcome @Liz Madrid. Glad I could help ? -Jack
-
No worries @Liz Madrid I'll explain the steps below. In the text file, you see blank because the 2-byte space is not a visible character and you need to select/highlight (CTRL +A) it then copy and paste it to the Disclaimer field on the form like shown in the screenshot below: Hopefully this clarifies things. -Jack
-
@Liz Madrid If the solution provided on my previous post didn't work for you, another solution is to use 2-byte space characters to insert line spacing before the text in the Disclaimer field. See sample screenshot below: Note: Regular space characters such as the standard white space, tab, etc. will not work and will be…
-
@Jay Schwausch If you are the owner of the Custom List, the - New - option will be shown regardless of role and permission. Other users will not see the option. Hopefully this clarifies things ? If you find this reply to your question useful, others might be as well. By clicking “Yes” on “Did this answer your question”,…
-
@Liz Madrid To lower the disclaimer text, edit the Custom Picking Ticket Layout in Customization > Forms > Transaction Form PDF Layouts then adjust the size of the Columns element until you get the right distance between the Disclaimer element. See sample screenshot below: Expected result: Hope this helps. If you find this…
-
Greetings @Jay Schwausch, Currently, the - New - option for Custom List Dropdown Fields can be only disabled for Custom Roles via Permissions. You should set the Setup > Custom Lists permission to View or lower. See screenshot below: Note: The above permission removes the - New - option on all Custom List Dropdown Fields.…
-
For starters, the Function dropdown on the formula definition dialog contains most of the valid functions that can be used. See screenshot below: Another useful reference is SuiteAnswers Article 10101 which has explanations for the listed functions and other SQL expressions. However, there are other valid functions that…
-
This question would be answered by our guest speaker @Red Atok-Oracle so stay tuned!
-
Hi @Liz Madrid, The Description column cannot be changed because it is reserved to show the original name of the field. To rename the field in the printout, change the Label column instead. See sample screenshot below: Expected Result: Hope this helps. If you find this reply to your question useful, others might be as…
-
Greetings @Liz Madrid, Can you try enabling the Show Uncommitted Items on Picking Tickets preference in Setup > Accounting > Accounting Preferences > Order Management subtab if it lets you print the Back Ordered field for picking tickets? Hope this helps. If you find this reply to your question useful, others might be as…
-
Greetings @paula.courtemanche We are testing for a possible solution for this and will get back to you with an update. -Jack
-
Thanks for the information @User_Z1408, You can insert a Custom Element to each of your templates where you put the VAT Number then you can drag and place the element to your desired position on the template. See sample screenshots below: Printout Preview: Related SuiteAnswers Article: 10130: Customizing Transaction Form…
-
@Kyle_Lautzenhiser-Oracle To prevent the dropping of zero decimal values for the first 2 decimal places, the code should be adjusted as follows: ${(item.rate*100)?string('#.00')}% As you may notice, the nsformat_percent formatting method is no longer used since it truncates the zero decimals, and is replaced by the percent…