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. Regards, Kuma...
for sample programs check the tcode ABAPDOCU. Cheers, Abdul Hakim Mark all useful answers... Reply Former Member 2006 Oct 07 12:27 PM 0 Kudos 70 SAP Managed Tags: ABAP Development Hi, To assign a dialog status to a screen, use the ABAP statement <b>SET PF-STATUS stat [...
SAP Managed Tags: ABAP Development 1. what is pf status , user command on which situation you have to used this...(didn't understand the clarity provided by the existing forum answers) 2. give me how to create a button (step by step) 3. how to create a menu painter (step by ste...
SAP Managed Tags: ABAP Development Hi friends, in oo alv when after you run the report, you see the default pf-elements like 'copy text','insert with overwrite','insert row', 'delete row',duplicate row',etc... I dont want these items to display. How can i get rid of them? Any...
SAP Managed Tags: ABAP Development Hi, Please check this code refresh p_events. clear p_events. perform f_event_build using p_events[]. p_header = text-033. data : v_status_set type slis_formname value 'F_PF_STATUS_SET'. call function 'REUSE_ALV_GRID_DISPLAY' exporting it_fieldca...
SAP Managed Tags: ABAP Development hi, u can set pf status in se41 tcode. or in ur module pool program use statement set pf-status 'zabc'. double click on zabc it will allow u to create pf status. their in functional tool bar give save , back... options n save. also to wo...
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 Is there any way to use the standard PF status when using Object Oriented ALV? I.e. in Classical ALV, we can copy the standard GUI status in our program and then pass the GUI status in the function module 'REUSE_ALV_GRID_DISPLAY'...which inturn...
SAP Managed Tags: ABAP Development Hi Experts, I am having as issue regarding export to spreadsheet menu in standard status that i have copied. it is appearing as grayed out, but it is showing from where i had copied it. I didn't get any solution regarding this issue please help me ...
SAP Managed Tags: ABAP Development, Java call function 'REUSE_ALV_GRID_DISPLAY' with parameter i_callback_pf_status_set = 'PF_STATUS_SET' where 'PF_STATUS_SET' is a routine --- FORM PF_STATUS_SET * --- form pf_status_set using ut_extab type slis_t_extab. set...