set pf-status是用来设置ALV或者SCREEN中的状态栏的,包括:菜单栏、工具栏的;'FLIGHT'是状态栏的名字,需要在应用程序下创建自己的状态栏或者使用标准的状态栏即可,状态栏如下图;
set pf-status是用来设置ALV或者SCREEN中的状态栏的;复制源程序需要注意要把程序里的Include也复制成Z开头的include才行。如果还是解决不了问题,那就要debug跟踪具体原因了。
Hi Gurus! I created an ALV report and copied the PF status from another program onto this one . Everything seems to be working fine except that when I click on print
需要检查一下Saved 1st PF Flags1 和 Saved PF Flags. 可能当时Gauge检测到多个触发PF保护的条件。
SAP Managed Tags: ABAP Development Hi, I want to define my own pf-status in a program , But dont know what are the compnents in standard one . How i can check or copy standard one as well as add my own components in menu bar, application bar. thanks.Reply...
在BIN里面有一个启动文件坏了
SET PF-STATUS 'STATUS_01'. IF YOU double click on this STATUS_01, it will take you to the SE41 transaction,where you can give the above 3 fields. Regards Srikanth Reply abdul_hakim Active Contributor 2006 Oct 07 12:26 PM 0 Kudos 70 SAP Managed Tags: ABAP Development HI...
对于客户的一个 RMA、客户发现 PFStatus[AFEC]设置为 CAuse PF。 但是、它们会检查 PF AFE 是否未启用。 我确认来自 RMA 包的 SREC 与他们提到的相同。 需要您的支持、以检查这是否与我们的预期一致。 我担心这与 IFC 相同。 仪表强制激活此功能并忽略 DF 设置。
set PF-STATUS 'STATUS1'. at user-command. if sy-ucomm = 'MSG'. break-point. endif. Reply Former Member In response to GauthamV 2009 Sep 22 8:17 AM 0 Kudos 106 SAP Managed Tags: ABAP Development Giriznet, can you please explain a bit more. i couldnot understand the...
DATA fcode TYPE TABLE OF sy-ucomm. ... MODULE status_0100 OUTPUT. APPEND 'CHANGE' TO fcode. APPEND 'SAVE' TO fcode. SET PF-STATUS 'STATUS_0100' EXCLUDING fcode. ENDMODULE.