Maintenance Planner calculate SPs by manual
note
Are you unable to view your system or updated system information?
Apply the latest version of the following SAP Notes on the SAP Solution Manager:
2002546
2186164
2002546 - CP: Direct upload of landscape data to the customer profile
2287046 - How to Generate the System Info XML and upload to Maintenance Planner
For Java stacks
See SAP Note 2293050 - SUM: Generating a System Information XML File for use with SAP Maintenance Planner
Modify the xml file by adding system's installation number. See SAP KBA 2350416
Upload the SysInfoExport.xml file following the steps in the Maintenance Planner User Guide, section - Adding Systems Using System Information XML
2293050 - SUM: Generating a System Information XML File for use with SAP Maintenance
Solution
Proceed as follows:
Download and unpack a new SUM instance as described the SUM user guide. To download the guide relevant for your system, go to https://support.sap.com/sltoolset - > System Maintenance -> Software Update Manager -> Guides for for SUM .
Navigate to /usr/sap//SUM/sdt/param/ on Unix- based or IBM-I OS, or :\usr\sap<sapsid>\SUM\sdt\param on Windows, and open the startup.props file for editing.
3 . Create a new line with the following parameter and setting: Scenario=SYS_INFO_EXPORT
For dual-stack systems you also have to add ABAP=false.
4 . Save and close the startup.props file.
If required, configure the SAP Host Agent as described in the SUM user guide.
Register SUM in the SAP Host Agent using the following command:
For Windows: :\usr\sap<sapsid>\SUM\STARTUP.BAT
For UNIX, user root mandatory: /usr/sap//SUM/STARTUPStart SUM and complete one full run. Depending on the security setup of your system, use the following URL:
https://:1129/lmsl/sumjava//index.html
Note that the dialog about choosing a stack.xml-based scenario or a manually prepared directory is automatically skipped.To aquire the system info XML file, navigate to usr/sap//SUM/sdt/htdoc/SysInfoExport.xml on Unix- based or IBM-I OS or :\usr\sap<sapsid>\SUM\sdt\htdoc\SysInfoExport.xml on Windows.
Altermatively, open a browser tab, go to http://:1128/lmsl/sumjava//SysInfoExport.xml, and copy the information from there.
NOTE: A SUM instance that has already completed one run cannot be reused. To perform a new SUM run, you have to unpack a new SUM instance.
Maintenance Planner calculate SPs by manual的更多相关文章
- SAP BAPI一览 史上最全
全BADI一览 List of BAPI's BAPI WG Component Function module name Description Description Obj. Ty ...
- MS-SQL数据库备份方法
一.手动备份 打开企业管理器 --> 右键点击需要备份的数据库 --> 所有任务 --> 备份数据库 或者: 查询分析器: use master backup database 数 ...
- SqlServer 自动备份策略设置
企业管理器中的Tools,Database Maintenance Planner,可以设置数据库的定期自动备份计划.并通过启动Sql server Agent来自动运行备份计划.具体步骤如下: 1. ...
- Sphinx 2.2.11-release reference manual
1. Introduction 1.1. About 1.2. Sphinx features 1.3. Where to get Sphinx 1.4. License 1.5. Credits 1 ...
- P6 EPPM Manual Installation Guide (Oracle Database)
P6 EPPM Manual Installation Guide (Oracle Database) P6 EPPM Manual Installation Guide (Oracle Databa ...
- 2D and 3D Linear Geometry Kernel ( Geometry Kernels) CGAL 4.13 -User Manual
1 Introduction CGAL, the Computational Geometry Algorithms Library, is written in C++ and consists o ...
- .VDI manual Technical Logistics - Volume 2: Industrial Trucks
VDI manual Technical Logistics - Volume 2: Industrial Trucks Name Publication date: State VDI 2196 B ...
- Falcon Genome Assembly Tool Kit Manual
Falcon Falcon: a set of tools for fast aligning long reads for consensus and assembly The Falcon too ...
- Oracle E-Business Suite Maintenance Guide Release 12.2(Patching Procedures)
更多内容参考: http://docs.oracle.com/cd/E51111_01/current/acrobat/122ebsmt.zip Preparing for Patching For ...
随机推荐
- excel技巧--一键求和
类似于上图的表格,我们要得到右侧和下侧栏的汇总结果,通常可以用sum公式加下拉方式,但是还有一种方法更快速,那就是使用 ALT + “+=”组合键就能一下子得到所有汇总结果.(+=键,就是一个键,该键 ...
- 打开word文档总是自动弹出控件工具条的解决办法:
打开word文档总是自动弹出控件工具条的解决办法:1.查看是否word文档和模板中了'apmp宏病毒,按ALT+F11组合键,双击当前文档下属的ThisDocument,清空里面的内容:双击Norma ...
- How HipChat Stores And Indexes Billions Of Messages Using ElasticSearch And Redis[转]
This article is from an interview with Zuhaib Siddique, a production engineer at HipChat, makers of ...
- Python 模块EasyGui详细介绍
转载:无知小德 Python 模块EasyGui详细介绍 EasyGui 官网: http://easygui.sourceforge.net 官方的教学文档:http://easygui-docs- ...
- Python实现简单的网页抓取
现在开源的网页抓取程序有很多,各种语言应有尽有. 这里分享一下Python从零开始的网页抓取过程 第一步:安装Python 点击下载适合的版本https://www.python.org/ 我这里选择 ...
- 无法将当前工程转化成model 2.5/3.1:Cannot change version of project facet Dynamic Web Module to 2.5.
Description Resource Path Location TypeCannot change version of project facet Dynamic We ...
- 服务容错保护断路器Hystrix之八:Hystrix资源隔离策略
在一个基于微服务的应用程序中,您通常需要调用多个微服务完成一个特定任务.不使用舱壁模式,这些调用默认是使用相同的线程来执行调用的,这些线程Java容器为处理所有请求预留的.在高服务器请求的情况下,一个 ...
- 廖雪峰Java3异常处理-1错误处理-2捕获异常
1捕获异常 1.1 finally语句保证有无错误都会执行 try{...}catch (){...}finally{...} 使用try...catch捕获异常 可能发生异常的语句放在try{... ...
- 廖雪峰Java2面向对象编程-4抽象类和接口-1抽象类
每个子类都可以覆写父类的方法 如果父类的方法没有实际意义,能否去掉方法的执行语句?子类会报编译错误 如果去掉父类的方法,就失去了多态的特性 可以把父类的方法声明为抽象方法. 如果一个class定义了方 ...
- 网站首页多URL可访问,如何集中首页网站权重?
原文地址:http://ask.seowhy.com/question/8573 百度站长平台Lee在文章<建立符合搜索引擎抓取习惯>一文中提出:唯一性网站中同一内容页只与唯一一个url相 ...