CALL SUBSCREEN 代码段解析 在SAP ABAP Dynpro 程序开发中,CALL SUBSCREEN 是一个非常强大的语句,用于将一个屏幕(Dynpro)嵌入到另一个屏幕中。这使得开发者能够复用现有的屏幕组件,提高了代码的重用性和模块化程度。CALL SUBSCREEN 语句可以在一个屏幕中嵌入多个子屏幕,每个子屏幕占据主屏幕的不同区域。 语句的
语句 CALL SUBSCREEN 可用于以子屏幕的形式将其他屏幕布局直接包含在 dynpro 的屏幕布局中。这里,必须首先在当前 dynpro 的屏幕布局中定义子屏幕区域。每个子屏幕区域都有一个唯一的名称,并且可以配置为支持屏幕尺寸的更改。如果定义了后者,则当前 GUI 窗口中的每次大小更改都会引发 PAI 事件。 例如,在主动态程序...
在SAP ABAP Dynpro 程序开发中,CALL SUBSCREEN是一个非常强大的语句,用于将一个屏幕(Dynpro)嵌入到另一个屏幕中。这使得开发者能够复用现有的屏幕组件,提高了代码的重用性和模块化程度。CALL SUBSCREEN语句可以在一个屏幕中嵌入多个子屏幕,每个子屏幕占据主屏幕的不同区域。 语句的基本格式如下: 9 1 CALL SUB...
CALL SUBSCREEN area INCLUDING prog dynp. 该语句将编号为 dynp 的子屏幕 dynpro 分配给称为区域的子屏幕区域。 prog 必须指定定义子屏幕 dynpro 的 ABAP 程序。如果找不到相应的子屏幕 dynpro,则会发生运行时错误。子屏幕 dynpro 的 PBO 流程逻辑也包含在同一点上。这可以调用定义了子屏幕 dynpro 的 ABAP 程序...
Syntax CALL SUBSCREEN sub_area[INCLUDING prog dynnr]. Variants: Effect Includes asubscreenin thedynpro flow logic. There is one variant for eventPBOand one variant for eventPAI. The statementCALL SUBSCREENcannot be used between the statementsLOOPandENDLOOPorCHAINandENDCHAIN. ...
SAP Managed Tags: ABAP Development Hello, I need to use the instruction CALL SUBCREEN .. , but when I check the code this syntax error occurs: "SREEN EXPECTED", not "SUBSCREEN". The SAP system is : SAP R/3 Enterprise (softw. comp.SAP_ABA release 620) I thank you in advance. ...
ABAP SCREEN ERRORPROCESS BEFORE OUTPUT.MODULE status_0100.CALL SUBSCREEN subscr INCLUDING sy-repid sid.PROCESS AFTER INPUT.MODULE user_command_0100.CALL SUBSCREEN subscr.提示Include block not specified,not defined or spelt incorrectly. 扫码下载作业帮搜索答疑一搜即得 答案解析 查看更多优质解析 解答一 举报...
SAP Managed Tags: ABAP Development Hi Edgar, I had the same problem. I wrote an application which displays different ALVs in the same container placed on a subscreen which is called by 6 different subscreens in a TabStrip Control...I was going crazy. ...
. The same applies to the dialog modules called by the PAI flow logic as to the modules called by PBO. The data transport between the subscreen dynpro and its ABAP program is performed at the call, or is delayed whenFIELDstatements are executed in the PAI flow logic of the subscreen ...