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, SET PF-STATUS is used for defining your own menu.. Check this example for using SET PF-STATUS in reports.. DATA: BEGIN OF itab OCCURS 0, check, value(20), END OF itab. <b>SET PF-STATUS 'TEST1'.</b> itab-value = 'ETSAT'. APPEND ita...
Passing anEXITroutine indicatestothe ALV that the caller wantstoseta self-defineduserstatus.Asaresult,thedefaultstatusofthe ALVisnotset.Theinterfaceoftheformroutinespecifiedmust be definedasfollows:FORMset_pf_statusUSINGrt_extabTYPEslis_t_extabTableRT_EXTAB contains thefunctioncodes that would be hiddenon...
SAPlink will get the gui status for this program and downloaded with the program source code. You can then upload this to your target system. It appears that you may not be familiar with SAplink, so here is a good place to start. https://wiki.sdn.sap.com/wiki/display/ABAP/SAPlink ...
METHODset_pf_status. * DATA:lo_functionsTYPEREFTOcl_salv_functions_list. * lo_functions=co_alv->get_functions(). lo_functions->set_default(abap_true). * ENDMETHOD."set_pf_status *$*$*...CODE_ADD_3 - End...3..*$*$* This will generate the output like:...
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. ...
SAP Managed Tags: ABAP Development HI SAILAJA, after executing this code also i am not getting my own pf-status. can u please resend the code. thanks, maheedhar.t Reply Former Member In response to Former Member 2007 Apr 09 3:16 PM 0 Kudos 169 SAP Managed Tags: ABAP Deve...
SAP Managed Tags: ABAP Development Hi, I have copied standard transaction IW28 into Z report.When i copied it i copied screen,includes,code etc.This report gives out put into ALV.When i run this report i got the output but message was shown "PF status of main has not been declared ...