SAP Managed Tags: ABAP Development U can add this in the APPLICATION TOOL BAR. For this u have to create as follow: In order modify PF_STATUS of ALV grid report you need to perform the following steps: 1. Update 'REUSE_ALV_GRID_DISPLAY' FM call to include: i_callback_pf_status_...
ooalv 标准的按钮 是没有这个保存按钮的,你可以见一个类 实现它的 HANDLE_TOOLBAR 事件,然后debug该事件,进去看CL_ALV_EVENT_TOOLBAR_SET-》MT_TOOLBAR,这个内表中存了所有的标准按钮,内表中是没有保存按钮的。你可以将你要的按钮加到这个内表中就可以了!
SAP Managed Tags: ABAP Development ALV Buttons are you talking about or Application toolbar buttons For ALV Buttons you have to SET_TOOLBAR event. for Appliction toolbar buttons You have to work with setting the PF-Status using the PBO of the ALV screen. ...
SAP Managed Tags: ABAP Development Hi, Thank you very much for your helpful answers, I have copied the report downto my system and test it , When i used SET PF-STATUS , i can not use AT LINE-SELECTION to capture events ...May be we can not use these 2 statements in parallel,....
SAP Managed Tags: ABAP Development Hi Suresh, Events can pass to ALV Fm in two ways. Either directly or by built an internal table for events. In both the cases we have to declare routine for events. In that event declare set pf-status 'XXX'. Prepare that menu painter. ...
Set the sorting rule to the ALV to the layout by calling the methodSET_SORT_ORDER(). 1.Step-by-Step Procedure Create an ABAP Program in Eclipse.Enter Name, Description and click onNext. 2.In the Selection of Transport Request window, choose the transport request. As we are saving the pr...
SAP SET is a very useful tool , allow user to record , save customized setting data. Before we use it , it can be created by Tcode GS01, and we edit and save the customized data using GS02, disp... 查看原文 转储单处理 i_callback_pf_status_set = 'FRM_STATUS_SET' i_callback...
SET PF-STATUS 'MAIN100'. IF CUSTOM_CONTAINER IS INITIAL. create a custom container control for our ALV Control CREATE OBJECT CUSTOM_CONTAINER EXPORTING CONTAINER_NAME = MYCONTAINER EXCEPTIONS CNTL_ERROR = 1 CNTL_SYSTEM_ERROR = 2 CREATE_ERROR = 3 LIFETIME_ERROR = 4 LIFETIME_DYNPRO_DYNPRO_LIN...
SETPF-STATUS'ADD_PAYMENTS'. * SET TITLEBAR 'xxx'. ENDMODULE." STATUS_0001 OUTPUT *&---* *& Module USER_COMMAND_0001 INPUT *&---* MODULEuser_command_0001INPUT. CASEsy-ucomm. WHEN'EXIT'OR'CANC'. LEAVEPROGRAM. WHEN'BACK'. LEAVETOSCREEN0. ENDCASE. ENDMODULE." USER_COMMAND_0001 INP...