了解 SAP WAS 服务器是 ABAP、Java 还是集成的方法

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/13447813/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-10-31 12:45:55  来源:igfitidea点击:

Way to know if SAP WAS server is ABAP, Java or integrated

javasapabapwas

提问by Jeffrey Ramos

Using transaction SM51, I get a list of servers in my system (there is only one). It has the following information:

使用 transaction SM51,我得到了系统中的服务器列表(只有一个)。它有以下信息:

Server Name Host Name Message Types (Having value Dialog Batch Update Upd2 Spool Enqueue ICM VMC) Server Status (Active)

服务器名称 主机名 消息类型(具有值 Dialog Batch Update Upd2 Spool Enqueue ICM VMC) 服务器状态(活动)

Then if I double click on this a list of processes of various types (DIA, UPD, ENQ, BGD, SPO, UP2)

然后,如果我双击此列表,则会显示各种类型的进程列表(DIA、UPD、ENQ、BGD、SPO、UP2)

My question is for this server, is there a way to know if this application server is of type ABAP, Java or integrated?

我的问题是针对这个服务器,有没有办法知道这个应用服务器是 ABAP、Java 还是集成类型?

回答by Prasad

The SAP application server, WAS, runs a java process and technically is a java server.

SAP 应用程序服务器 WAS 运行一个 java 进程,从技术上讲是一个 java 服务器。

回答by mjturner

Only ABAP and ABAP+Java (dual stack) systems can be accessed via SAPGUI - if you're accessing a system using SAPGUI, it must, by definition, be either ABAP or ABAP+Java.

只有 ABAP 和 ABAP+Java(双栈)系统可以通过 SAPGUI 访问 - 如果您使用 SAPGUI 访问系统,根据定义,它必须是 ABAP 或 ABAP+Java。

There are a few places in the ABAP stack you can check to see if you're using a dual stack system:

您可以检查 ABAP 堆栈中的几个位置,以确定您是否使用双堆栈系统:

  1. SM51- On dual stack systems you'll see J2EEamongst the Message Types(see image below, taken from a NetWeaver PI 7.1 dual stack system). Purely ABAP systems won't have it listed.

    SM51 on dual stack system

  2. SMICM- Check the list of services in transaction SMICM(menu: Goto --> Services) - dual stack systems will have the J2EE services listed too (look for P4 and IIOP in particular). There will also be an AS Javamenu in SMICMon ABAP+Java systems.

  3. Profile parameters - ABAP+Java systems will have J2EE-specific parameters in their start/instance profiles (for example, rdisp/j2ee_start).

  1. SM51- 在双栈系统上,您会在消息类型中看到J2EE(见下图,取自 NetWeaver PI 7.1 双栈系统)。纯粹的 ABAP 系统不会列出它。

    双栈系统上的 SM51

  2. SMICM- 检查事务中的服务列表SMICM(菜单:Goto --> Services) - 双栈系统也会列出 J2EE 服务(特别是寻找 P4 和 IIOP)。在 ABAP+Java 系统上也会有一个AS Java菜单SMICM

  3. 配置文件参数 - ABAP+Java 系统将在其启动/实例配置文件中具有特定于 J2EE 的参数(例如,rdisp/j2ee_start)。