set pf-status是用来设置ALV或者SCREEN中的状态栏的,包括:菜单栏、工具栏的;'FLIGHT'是状态栏的名字,需要在应用程序下创建自己的状态栏或者使用标准的状态栏即可,状态栏如下图;
subsequentscreen layouts. The components of the set status are active in the user interface from the next time a screen layout is sent, and remain active until the end of the program or until the nextSET PF-STATUSstatement. The name of the current GUI status can be read from the system ...
SAP Managed Tags: ABAP Development Hi.. To create Menubar, Toolbars and Title bar : Goto Tcode SE41. Enter the program name , GUI status name and create it. You can call them IN program using : SET PF-STATUS 'ABC' . "For GUI status i.e Menu bar, App toolbar SET TITLEBAR ...
SAP Managed Tags: ABAP Development Hi, Check the documentation given below SET PF-STATUS ] . This statement sets the status parameters. To display an ampersand character ‘&’, repeat it in the title ‘&&’. Examples Example for dialog status in a list. REPORT demo_list_menu_painter. STA...
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. ...
SAP Managed Tags: ABAP Development Hello Shiv, I tried in PBO event. Its working fine. See the code below. You can declare data statements in top include also. module STATUS_0099 output. * SET PF-STATUS 'xxxxxxxx'. * SET TITLEBAR 'xxx'. type-pools: vrm. data: string3 TYPE string...
SAP Managed Tags: ABAP Development Hi Experts, I've developed a report to display header and its line items for data archiving. I've problem in implementing i_callback_pf_status_set & i_callback_user_command parameters when calling the function module REUSE_ALV_HIERSEQ_LIST_DISPLAY I've...
SET PF-STATUS 'MAIN100'. IF g_custom_container IS INITIAL. CREATE OBJECT g_custom_container EXPORTING container_name = g_container. Instantiate ALV grid control CREATE OBJECT grid1 EXPORTING i_parent = g_custom_container. CALL METHOD grid1->set_table_for_first_display EXPORTING i_structure_na...
SAP Managed Tags: ABAP Development HI ALL, my rewuirement is i need to display my own pf status in selection screen. when i am using below code i getting two buttons only.anybody can tell me where i made a mistake. i am sendingf my code below. TABLES : ZUSER_SECOBJECTS, SSCRFIELD...
MODULEstatus_0001 OUTPUT. 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...