My Stuff

3956663 Newbie

Comments

  • HI All, So it turned out this was an easy fix. If in the rich text field the text is displayed like.. Bold text Underlined text BIG text etc, If you want to preserve this formatting when you display this rich text field in a search simply add a 'Formula(text)' field and in the Formula column click 'Set Formula' then from…
  • Hi All, I found a simple solution to this problem. On the saved search i wanted to add to a menu, check the, 'Show in Menu' checkbox found on that saved search record, Having done so, you can now add the Saved Search to your desired custom menu. The Roles you wish to give access must be specified on the Saved Search and on…
  • Excellent! Lowercase cc worked : ) Should have known to try that myself! Thanks again!
  • I am also trying to create the IC Sales order manually through the UI prior to scripting anything (i want first to prove this is possible without using the 'Manage Intercompany Sales Order' functionality) and am also seeing the following error message when saving the IC Sales Order, "You must create a purchase order first…
  • Perfect, that's exactly what i needed. As a result my code looks as follows for those interested, var userSelectedQuarterValue = request.getParameter('custpage_select_reporting_quarter'); var userSelectedYearValue = request.getParameter('custpage_select_reporting_year'); if(userSelectedQuarterValue != '' &&…
  • Hi George, Firstly thank you for your response. The deployment status is set to 'Not Scheduled' as i only wish to set the deployment to scheduled if the user requests it. (ie. Selects a quarter, and submits the suitelet). Is it possible to set the deployment status of a script deployment via SuiteScript? Thanks in advance,…
  • Hi there, Came across your question whilst i was looking for a solution to this problem myself. I was able to come up with a solution. I needed a journal entry search which returned the revenue schedule internal ids and the product lines of each line on the journal. The code below is able to get this: var…
  • Hi there, Did you ever get anywhere with this? Would be interested in similar functionality but for setting the 'createpo' field to 'dropship'. Any advice would be greatly appreciated!
  • Hi all, I have a way of removing the 'Remove' links from Sublists of both Custom Records and NS Records. The key is to ensure that in the Record Type that you are displaying in your sublist, the Parent Record field is set to mandatory. Therefore if you have a Custom Record type, edit the field that stores the reference to…
  • Thanks Olivier! If i find a solution to the issue i'll keep this thread informed!
  • Hi Mike, Unfortunately i don't have a solution to this issue, but would like to know if you /anyone ever found a solution to this problem? Jordan
  • As an update. The only way i found to do what i needed to (create graphs displaying data from Custom Records) was to create a custom portlet and use a third party js library for the graphical visualisation. An example of one of the graphs which allows the user to select the Custom Record field they want to display amongst…
  • Did you ever get anywhere with this? I'm in the process of creating an internal wiki page. My Category List Template works as expected. But it seems like regardless of the Soution/Item List Layout i apply, it just reverts back to the default layout.. Seems like i'll have to work this some other way...
  • Hi all, In the end i was able to resolve this issue. It stems from the fact that even when 'line.charge' and 'line.payment' appear to be blank they actually not, therefore when the ?number operation is run it is firing an error. I still don't know what character these fields are assigned as ?trim didnt remove it. In the…