Cognos How to set the default email sender to a specific value

2024-01-13 15:32

本文主要是介绍Cognos How to set the default email sender to a specific value,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

在IBM Cognos设定不同的发件人。

Problem(Abstract)

Is there a way to have all reports sent by all users to display the same "From" email address?
In other words, how do you set the default sender to a specific value?

Environment

This feature is available in: -IBM Cognos ReportNet post MR3 hotsite 1.1.510.56 or later -Cognos 8.1 post MR2 hotsite 8.1.209.92 or later -Cognos 8.4 GA (*with the application of technote 1380106 - see link below)

Resolving the problem

Set the variable 'alwaysUseDefaultSender' to 'true' under Job and Schedule Monitoring (for ReportNet) or Delivery Service (for Cognos 8). This will use the email address specified in Cognos Configuration - Notification.

Steps:

  • ReportNet:
      1. In Cognos Connection, from the Tools menu, click Server Administration.
      2. In the Monitor tab, select the Services option.
      3. For the Job and schedule Monitoring service, click the Set properties icon.
      4. click Settings.
      5. Add an advanced setting named alwaysUseDefaultSender and set the value to true.
      6. Restart the Cognos service.

    Cognos 8.3 and lower (for 8.4, see related document below):
      1. In Cognos Connection, from the Tools menu, click Server Administration.
      2. For the Delivery service or Job service, click the Set properties icon.
      3. Click the Settings tab.
      4. Click Edit on the Advanced settings.
      5. Add an advanced setting named alwaysUseDefaultSender and set the value to true.
      6. Restart the Cognos service

    Cognos 10.x
    • 1. Within cognos Administration go to the configuration tab.
      2. navigate to the Dispatchers and Services tab on the left.
      3. click on a dispatcher to open up the services list
      4. For the Delivery service or Job service, click the Set properties icon.
      5. Click the Settings tab.
      6. Click Edit on the Advanced settings.
      7. Add an advanced setting named alwaysUseDefaultSender and set the value to true.
      8. Restart the Cognos service.

Related information



这篇关于Cognos How to set the default email sender to a specific value的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/601939

相关文章

SpringBoot中@Value注入静态变量方式

《SpringBoot中@Value注入静态变量方式》SpringBoot中静态变量无法直接用@Value注入,需通过setter方法,@Value(${})从属性文件获取值,@Value(#{})用... 目录项目场景解决方案注解说明1、@Value("${}")使用示例2、@Value("#{}"php

shell脚本批量导出redis key-value方式

《shell脚本批量导出rediskey-value方式》为避免keys全量扫描导致Redis卡顿,可先通过dump.rdb备份文件在本地恢复,再使用scan命令渐进导出key-value,通过CN... 目录1 背景2 详细步骤2.1 本地docker启动Redis2.2 shell批量导出脚本3 附录总

c++中的set容器介绍及操作大全

《c++中的set容器介绍及操作大全》:本文主要介绍c++中的set容器介绍及操作大全,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友参考下吧... 目录​​一、核心特性​​️ ​​二、基本操作​​​​1. 初始化与赋值​​​​2. 增删查操作​​​​3. 遍历方

shell中set -u、set -x、set -e的使用

《shell中set-u、set-x、set-e的使用》本文主要介绍了shell中set-u、set-x、set-e的使用,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参... 目录✅ 1. set -u:防止使用未定义变量 作用: 示例:❌ 报错示例输出:✅ 推荐使用场景:✅ 2. se

解读@ConfigurationProperties和@value的区别

《解读@ConfigurationProperties和@value的区别》:本文主要介绍@ConfigurationProperties和@value的区别及说明,具有很好的参考价值,希望对大家... 目录1. 功能对比2. 使用场景对比@ConfigurationProperties@Value3. 核

MySQL中FIND_IN_SET函数与INSTR函数用法解析

《MySQL中FIND_IN_SET函数与INSTR函数用法解析》:本文主要介绍MySQL中FIND_IN_SET函数与INSTR函数用法解析,本文通过实例代码给大家介绍的非常详细,感兴趣的朋友一... 目录一、功能定义与语法1、FIND_IN_SET函数2、INSTR函数二、本质区别对比三、实际场景案例分

Java枚举类实现Key-Value映射的多种实现方式

《Java枚举类实现Key-Value映射的多种实现方式》在Java开发中,枚举(Enum)是一种特殊的类,本文将详细介绍Java枚举类实现key-value映射的多种方式,有需要的小伙伴可以根据需要... 目录前言一、基础实现方式1.1 为枚举添加属性和构造方法二、http://www.cppcns.co

如何解决mysql出现Incorrect string value for column ‘表项‘ at row 1错误问题

《如何解决mysql出现Incorrectstringvalueforcolumn‘表项‘atrow1错误问题》:本文主要介绍如何解决mysql出现Incorrectstringv... 目录mysql出现Incorrect string value for column ‘表项‘ at row 1错误报错

Nginx指令add_header和proxy_set_header的区别及说明

《Nginx指令add_header和proxy_set_header的区别及说明》:本文主要介绍Nginx指令add_header和proxy_set_header的区别及说明,具有很好的参考价... 目录Nginx指令add_header和proxy_set_header区别如何理解反向代理?proxy

poj 3050 dfs + set的妙用

题意: 给一个5x5的矩阵,求由多少个由连续6个元素组成的不一样的字符的个数。 解析: dfs + set去重搞定。 代码: #include <iostream>#include <cstdio>#include <set>#include <cstdlib>#include <algorithm>#include <cstring>#include <cm