美文网首页NETSUITE开发者实战培训
【填坑/干货/分享】Formula的结果字段不能搜索的问题?

【填坑/干货/分享】Formula的结果字段不能搜索的问题?

作者: e85a69573d55 | 来源:发表于2019-09-18 23:06 被阅读0次

    用户用例:做了一个Saved search,而且在Result上面使用了Formula,如何实现在Available Filter上可以对这些Formula列进行搜索?

    实现方法很简单,但是如果不知道要这么整确实很多时候会放弃不这么做。

    1、List > Search > Saved Searches > New. Create a Saved XXX Search;

    2、在Criteria添加一个Formula (Text),这个对应你想搜索的列;

    3、弹出窗填入你要formula的内容,比如 filter = Formula(Text),Description = contains/is...根据实际需要填写,Formula = {message};

    4、在Result添加一个Formula (Text),填写Formula例如{message}

    5、在Avaliable Filters加一个Formula(Text)的Filter

    6、Save & Run

    以上内容亲测可用。这个Formula配合关联的Dynamic/Link/Formula Field来使用会比较爽,可以减少非常多的开发工作。

    原文引用:

    Formula (Text) field does not work as Available Filter

    An alternate solution is to set a Criteria filter for the Formula (Text) field which will provide the default setting for the corresponding filter set in Available Filters tab of the saved search. In this example, we are going to use the formula {message} to pull out data from the Message field of phone call records: 

    1. Navigate to List > Search > Saved Searches > New. Create a Saved Phone Call Search 

    2. In the Criteria tab, add a Formula (Text) field

    3. In the popup window, enter "{message}" in the Formula box and set "Formula (Text)" to "contains". In the textfield next to it, enter the character "a". Then, click on Set. This should result to the following line in the Criteria tab:

    Filter = Formula (Text)

    Description = contains a

    Formula = {message}

    4. In the Results tab, add a Formula (Text) field and set the formula to {message}. 

    5. In the Available Filters tab, add the Formula (Text) field as a filter. 

    6. Make sure the corresponding "Show in Footer" checkbox is checked. 

    7. Set the "Default Text Field Filter" to "contains". 

    8. Click on "Save & Run". 

    Initially, the saved search will show all phone call records where the Message includes the keyword you specify (from the example, all phone calls that include 'a' in the Message). However, notice that the Formula (Text) filter at the bottom of the results list shows the keyword 'a' by default. Try entering another keyword and see if the saved search now runs the filter as expected. 

    NOTE: Inserting the Formula (Text) field as an available filter in a Saved Search does not provide any option to specify the formula just like how it is when you include the Formula (Text) field in the Results or Criteria tab of the Saved Search's settings. Thus, when entering a keyword in the Formula (Text) filter and running the saved search, no results are returned.

    相关文章

      网友评论

        本文标题:【填坑/干货/分享】Formula的结果字段不能搜索的问题?

        本文链接:https://www.haomeiwen.com/subject/nifhuctx.html