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

相关文章

C++中unordered_set哈希集合的实现

《C++中unordered_set哈希集合的实现》std::unordered_set是C++标准库中的无序关联容器,基于哈希表实现,具有元素唯一性和无序性特点,本文就来详细的介绍一下unorder... 目录一、概述二、头文件与命名空间三、常用方法与示例1. 构造与析构2. 迭代器与遍历3. 容量相关4

Redis中Set结构使用过程与原理说明

《Redis中Set结构使用过程与原理说明》本文解析了RedisSet数据结构,涵盖其基本操作(如添加、查找)、集合运算(交并差)、底层实现(intset与hashtable自动切换机制)、典型应用场... 目录开篇:从购物车到Redis Set一、Redis Set的基本操作1.1 编程常用命令1.2 集

Redis高性能Key-Value存储与缓存利器常见解决方案

《Redis高性能Key-Value存储与缓存利器常见解决方案》Redis是高性能内存Key-Value存储系统,支持丰富数据类型与持久化方案(RDB/AOF),本文给大家介绍Redis高性能Key-... 目录Redis:高性能Key-Value存储与缓存利器什么是Redis?为什么选择Redis?Red

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