Set cursor in ALV grid output

Hi guys,
I generated a report which gives out put in ALV grid.
In the ALV grid output, I have some editable fields.
Lets suppose, there are some editable fields with no data in it.
I have userdefined pushbutton in Application toolbar, when I press the pushbutton the cursor should go to the empty field in the ALV grid output.
Can this be possible through SET CURSOR statement?
Thanks,
Shivaa......

Hi,
    You can set the cursor field on the output list that too for the output fields which are vissible on the screen only.
syntax
SET CURSOR 11 3.   ---> 11Coloumn and 3 line
for dynamically setting cursor, first you have to search for the empty fields then set the cursor dynamically.
look at this help document it might be helpful
http://help.sap.com/saphelp_nw70/helpdata/EN/9f/dba47e35c111d1829f0000e829fbfe/content.htm
Regards
Bala KRishna

Similar Messages

  • Set Cursor on ALV Grid

    i am trying to set the cursor on an ALV Grid display so that the field can be editted....
    LOOP AT lt_fieldnames INTO ls_fieldnames.
        IF NOT ls_fieldnames-colortab IS INITIAL.
          ls_row_no-row_id       = sy-tabix.
          ls_column_id-fieldname = 'VALUE'.
          EXIT.
        ENDIF.
      ENDLOOP.
    *--- Set focus to cell that contains error
    CALL METHOD grid_editmsg->set_current_cell_via_id
      EXPORTING
           is_column_id = ls_column_id
           is_row_no    = ls_row_no 
    the field is highlighted but i still have to click in the field to edit the contents....
    is there a method/fm i can use that makes the field directly editable????

    I also searched for this and i find a solution.
    CALL METHOD cl_gui_control=>set_focus
         EXPORTING
           control = gref_grid_menge.
    So even if this post is very old, probably it can help other devs to go further!

  • Push Button in Every record in ALV grid output

    Dear Experts,
    I need to print a push button in first column of every record in ALV grid output. How ?
    No OOPS concepts please.
    Thanks,
    Siva.

    For this requirement, you have to copy the standard PF status of the ALV output. Do as below :-
    1) Go to SE41
    2) Enter the program name as SAPLKKBL
    3) In the field status enter STANDARD_FULLSCREEN
    4) Click on STATUS button on the application toolbar.
    5) Enter the name of your Program & a new status name.
    6) Click on COPY.
    This way the standard status will be copied to the custom status & call the same status in your program using SET PF STATUS statement. Then double click on the custom status name & you will be navigated to SE41, there you can add you new button on the application tool bar & assign a function code, which you can program by enabling the export parameter I_CALLBACK_USER_COMMAND of the Function module REUSE_ALV_GRID_DISPLAY.
    Just a sample code snippet for your reference :-
    FORM USER_COMMAND USING L_UCOMM LIKE SY-UCOMM
    LS_SELFIELD TYPE SLIS_SELFIELD.
    CASE L_UCOMM.
    WHEN 'your function code goes here'.
    Do further processing.
    This way you will have the standard PF status alongwith your button as well.
    Edited by: Kumar Manas Mishra on Jan 29, 2010 1:03 PM

  • Displaying the selected rows in ALV Grid output

    Hi Experts,
    I am developing one interactive ALV Grid report where user can process the selected records/rows from the ALV Grid output.
    for displaying the ALV Grid, I have used the class CL_GUI_ALV_GRID class. I am working on ECC 6.0 system.
    when I select any records/rows from output and then press any Application Toolbar button, PAI and then PBO modules of the screen gets executed as per the normal flow.
    however After PBO, when same ALV output comes, all the selected/highlighted rows appear as unselected, that means I want to retain the ALV
    rows selection during the round trip.
    please advise.
    Regards,
    Jagesh

    Hi,
    Feiyun Wu is correct.
    Get_selected_rows and set_selected_rows are the methods to be used .
    Some code:
    Note the sequence of code:
    FORM set_gui_alv_grid_1 .
      DATA: wa_layout TYPE lvc_s_layo ,
            wa_print TYPE lvc_s_prnt .
      DATA: it_sort TYPE lvc_t_sort ,
            wa_sort TYPE LINE OF lvc_t_sort .
      DATA: it_fieldcatalog TYPE lvc_t_fcat.
      IF gui_custom_container_1 IS INITIAL .
        CREATE OBJECT gui_custom_container_1
          EXPORTING
            container_name = 'GUI_CUSTOM_CONTAINER_1'
          EXCEPTIONS
            cntl_error                  = 1
            cntl_system_error           = 2
            create_error                = 3
            lifetime_error              = 4
            lifetime_dynpro_dynpro_link = 5
            OTHERS                      = 6 .
        IF sy-subrc <> 0.
        ENDIF.
        PERFORM get_field_catalog
          USING gc_log_group_1
          CHANGING it_fieldcatalog  .
        CREATE OBJECT gui_alv_grid_1
          EXPORTING i_parent = gui_custom_container_1.
        CREATE OBJECT ob_event_receiver_1
          EXPORTING log_group = gc_log_group_1 .
    * registers the event handlers
        SET HANDLER ob_event_receiver_1->handle_toolbar      FOR gui_alv_grid_1 .
        SET HANDLER ob_event_receiver_1->handle_user_command FOR gui_alv_grid_1 .
        SET HANDLER ob_event_receiver_1->print_top_of_page   FOR gui_alv_grid_1 .
        SET HANDLER ob_event_receiver_1->hotspot_click       FOR gui_alv_grid_1 .
        wa_layout-cwidth_opt = abap_true .
    *   wa_layout-excp_fname = gc_excp_fname .
    *   wa_layout-ctab_fname = gc_ctab_fname.
    *   wa_layout-excp_led   = abap_true .
        CALL METHOD gui_alv_grid_1->set_table_for_first_display
          EXPORTING
            is_layout       = wa_layout
            is_print        = wa_print
            i_save          = 'A'
            is_variant      = gs_disvariant_1
          CHANGING
            it_sort         = it_sort
            it_fieldcatalog = it_fieldcatalog
            it_outtab       = it_alv_grid_1.
      ELSE .
        CALL METHOD gui_alv_grid_1->refresh_table_display.
    * Restore selections
        CALL METHOD gui_alv_grid_1->set_selected_rows
          EXPORTING
            it_index_rows = ob_event_receiver_1->it_rows.
    * Restore position
        CALL METHOD gui_alv_grid_1->set_scroll_info_via_id
          EXPORTING
            is_col_info = ob_event_receiver_1->wa_col
            is_row_no   = ob_event_receiver_1->wa_roid.
      ENDIF.
    ENDFORM .                    "set_gui_alv_grid_1
    Regards.

  • Menu in ALV grid output

    Hi all,
    Iam in need of a code that may help me out to get my cuztomized menu for my alv grid output.
    Please give your suggestions,
    Thanks,
    Rajesh.

    Hello Rajesh,
    First copy the standard ALV GUI Status STANDARD_FULLSCREEN to an ZSTANDARD_FULLSCREEN and make ur changes.
    FOr this u have
    DATA:g_callback_user_command TYPE slis_formname,
    g_callback_pf_status_set TYPE slis_formname.
    g_callback_pf_status_set = 'ZSTANDARD_FULLSCREEN'.
    g_callback_user_command = 'ALV_USER_COMMAND'.
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
       EXPORTING
           I_INTERFACE_CHECK              = ' '
           I_BYPASSING_BUFFER             =
           I_BUFFER_ACTIVE                = ' '
         i_callback_program             = g_progname
         i_callback_pf_status_set       =
    g_callback_pf_status_set
    i_callback_user_command = g_callback_user_command       I_STRUCTURE_NAME               =
         is_layout                      = g_r_layout
         it_fieldcat                    = g_t_fieldcat
           IT_EXCLUDING                   =
           IT_SPECIAL_GROUPS              =
           IT_SORT                        =
           IT_FILTER                      =
           IS_SEL_HIDE                    =
           I_DEFAULT                      = 'X'
            i_save                         = 'A'
           IS_VARIANT                     =
           IT_EVENTS                      =
           IT_EVENT_EXIT                  =
         is_print                       = g_r_print
           IS_REPREP_ID                   =
            i_screen_start_column          = g_screen_start_column
            i_screen_start_line            = g_screen_start_line
            i_screen_end_column            = g_screen_end_column
            i_screen_end_line              = g_screen_end_line
         IMPORTING
           E_EXIT_CAUSED_BY_CALLER        =
           ES_EXIT_CAUSED_BY_USER         =
        TABLES
          t_outtab                       = p_t_liste
       EXCEPTIONS
         program_error                  = 1
         OTHERS                         = 2
    FORM alv_user_command USING r_ucomm     LIKE sy-ucomm
                                rs_selfield TYPE slis_selfield.
      CASE r_ucomm.
        WHEN '&IC1'.
    *--- Hotspot selektion
          CASE rs_selfield-sel_tab_field.
    *------ Material
            WHEN 'T_MAT-MATNR'.
              READ TABLE t_mat INDEX rs_selfield-tabindex.
              PERFORM call_mm02 USING t_mat-matnr.
            WHEN 'G_T_LISTE-PSPID' OR 'G_T_HEADER-PSPID'.
    *------ Projekt
    Click auf Projekt -> Projekt anzeigen (CJ20)
              SET PARAMETER ID 'PSP' FIELD rs_selfield-value.
              SET PARAMETER ID 'PRO' FIELD space.
              CALL TRANSACTION 'CJ20' AND SKIP FIRST SCREEN.
            WHEN 'G_T_LISTE-POSID'.
    *------ PSP-Element
    Click auf PSP Element -> PSP Element anzeigen (CJ12)
              SET PARAMETER ID 'PSP' FIELD space.
              SET PARAMETER ID 'PRO' FIELD rs_selfield-value.
              CALL TRANSACTION 'CJ12' AND SKIP FIRST SCREEN.
            WHEN 'G_T_LISTE-STTXT_INT'.
    *------ Systemstatus
             g_sttxt_int = rs_selfield-value.
    G_T_LEGENDE erfüllen
             PERFORM f_fill_g_t_legende_int.
             g_r_layout-window_titlebar = 'Systemstatus'(004).
             PERFORM f_status_legende_popup.
            WHEN 'G_T_LISTE-STTXT_EXT'.
    *------ Anwenderstatus
             g_sttxt_ext = rs_selfield-value.
    G_T_LEGENDE erfüllen
             PERFORM f_fill_g_t_legende_ext.
             g_r_layout-window_titlebar = 'Anwenderstatus'(005).
             PERFORM f_status_legende_popup.
            WHEN 'G_T_LISTE-ICON'.
    *------ Status Detail
             PERFORM f_fill_g_t_status_detail USING rs_selfield-tabindex.
             PERFORM f_status_detail_popup.
          ENDCASE.
        WHEN 'MTNR'.
          READ TABLE t_mat INDEX rs_selfield-tabindex.
          PERFORM call_mm02 USING t_mat-matnr.
        WHEN 'INFO'.
          READ TABLE t_mat INDEX rs_selfield-tabindex.
          CALL SCREEN 900 STARTING AT 20 5
                          ENDING AT 100 20.
      ENDCASE.
    ENDFORM. "ALV_USER_COMMAND
    Hope this will solve ur problem.
    Reward if helps.
    Vasanth
    Message was edited by: Vasanth M

  • Facing problem while downloading ALV grid Output into Excel

    Hi Guys,
    I am facing problem while downloading ALV grid Output into Excel.
    It is downloading into excel, but all character columns first and next all quantity columns it is displaying. But I need columns order as it is in the grid.
    If I take all columns as characters it works fine. But it will be problem for calculating total, subtotals of quantity columns
    Can someone help me regarding this
    thanks for your help

    Hi,
    Open up Excel on your desktop. Goto Tools > Macro > Security.
    Make sure that your security is set to Medium (or less). SAP uses OLE automation to run the Excel instance and in Office 2003 (for example), Microsoft has increased their default security setting to High. With the High setting, the output to Excel fails.
    Was this your problem? Don't forget those points, either.
    check with this wetther it is solved or not.
    Regards,
    sana.

  • F4 - Help for field in ALV Grid Output

    Hi,
    I generated a report which gives output in ALV Grid output.
    In the output, 1 of the field is editable.Here, for this field I need to have my own F4-Help.
    I think the procedure to be followed is:--
    Create a Search Help in SE11.
    Link the Search Help to the editable field.
    Please let me know if its the correct procedure.
    I f yes, how can I link user defined Search Help to the editable field?
    Thanks,
    Shivaa........

    Hi siva,
    you can also do that way.
    while filling the fieldcatalog use the parameter F4AVAILABL
    for more info check
    F4 help in ALV Grid...
    f4 help for a field in alv grid
    hope it helps you
    Thanks!
    Edited by: Prasanth on Mar 6, 2009 3:59 PM

  • How to send the ALV GRID output to spool by using the print button in std t

    How to send the ALV GRID output to spool by using the print button in standard tool bar.
    We have created a button in the va02 transaction.  If user click on the button the new screen will be display on that screen we are populating the alv grid output using the oops concept.  But i am unable to send the output to spool using the print button in the standard tool bar.
    I am able to display the Print parameter dialog box but i am not able to send it to spool.
    Kindly help.
    Thanks In Advance.
    G.V.Ramana

    Hi Shaik,
    There is not properties button in my print screen.
    MODULE user_command_0900 INPUT.
        WHEN 'EXCEL'.
          PERFORM excel_download.                              
        WHEN 'PRI'.
          PERFORM print_output.
    form Print_output.
    CALL FUNCTION 'RSPO_LIST_LAYOUT_FITS'
               EXPORTING
                    columns        = 80
                    device         = 'ANY '
                    lines          = 65
                    maxpenality    = 1999
               TABLES
                    layouts        = lt_layouts1
               EXCEPTIONS
                    unknown_device = 1
                    OTHERS         = 2.
          IF sy-subrc = 0.
            LOOP AT lt_layouts1.
              IF lt_layouts1-penality < 1000        AND
                 lt_layouts1-penality < l_min_penality.
                l_layout       = lt_layouts1-layout.
                l_min_penality = lt_layouts1-penality.
              ENDIF.
            ENDLOOP.
            IF NOT l_layout IS INITIAL.
              CALL FUNCTION 'GET_PRINT_PARAMETERS'
                   EXPORTING
                        mode                   = 'CURRENT'
                        line_size              = 80             "#EC *
                new_list_id            = l_new_list_id
                        no_dialog              = l_no_dialog
                        layout                 = l_layout
                   IMPORTING
                        out_archive_parameters = rs_arc_params
                        out_parameters         = rs_pri_params
                        valid                  = l_valid
                   EXCEPTIONS
                        archive_info_not_found = 1
                        invalid_print_params   = 2
                        invalid_archive_params = 3
                        OTHERS                 = 4.
              IF sy-subrc NE 0.                                 " INS SLIN
              ENDIF.                                            " INS SLIN
              IF rs_pri_params-linsz LT 80 OR
                 rs_pri_params-linsz LT gt_stack-s_lprint-width.
                gt_stack-print_line_break = 'X'.
              ELSE.
                CLEAR gt_stack-print_line_break.
              ENDIF.
              IF l_valid NE 'X'.
                rs_pri_params = ls_pri_params_sav.
                rs_arc_params = ls_arc_params_sav.
              ENDIF.
            ENDIF.
          ENDIF.
    endform.                    " Print_output
        CALL METHOD gv_cost_tot_alv_grand->set_table_for_first_display
                EXPORTING
                   is_layout         = gs_layout_cost_tot_grand
                CHANGING
                   it_fieldcatalog   = gt_fcat_cost_tot_grand[]
                   it_outtab         = gt_cost_tot_grand[].
    Please check my code

  • In ME2N  report for PO- How to get or add Vendor name in ALV grid output

    Hl Everyone
    How to get  or add Vendor Name and payment terms in the ALV grid output for the follwing reports like ME2N and ME2V.
    cuurently i am in 4.7 E version.
    Kindly suggest..........
    thanks in advance
    Regards
    Prashanth

    Hi Pankaj
    I knew that vendor name field is avaiable in ECC versions, but how to get the same field(vendor name) in 4.7 E vesion.
    Kindly suggest
    Regards
    Prashanth

  • How to download alv grid output(with field catalog) into excel file format

    Hi all,
    How to download alv grid output(with field catalogs) into excel file format and same file has to download to application server.
    Please help.
    Regards,
    Satya.

    Hi,
    On list where alv is displayed, select export icon( green color -> ),select spread sheet.
    This will display records in Excel sheet.

  • Need to choose fields from alv grid output and send mail

    Hi,
    I need to choose few orders from alv grid output and send mail as PDF for chosen orders.
    Suggest if possible and how.

    Moderator message - Please do not post your requirements and ask the forum to do your work for you - post locked
    Rob

  • ALV Grid output

    Hi,
    I have one issue on ALV Grid output.
    Some times we will not have any values to display in ALV Grid output.
    In such cases we usually have to display 'No Data found' in report output message(Below report header).
    How to acheive this as all my ALV grid fields are of less length.
    Note: Message should be displayed below ALV Header (Where we usually get 1st record to be displayed).
    What is the solution for the same!
    Thanks,
    Deep.

    Hello Deep,
    You can try with,
    MESSATE 'Data not Found' TYPE 'I'.
    Bye
    Gabriel P.-

  • How to append ALV grid output to LIST output

    Hi,
    I am working with Basis AUDIT MANUAL report for which i have to integrate around 50 standard transactions (SM37,SM35...etc) output and make it into one single report.
    On execution of my report i have to get all the 50 transaction outputs sequentially.
    Some standard transactions have ALV list display output and some have GRID display.I can able to append only list outputs by submit program and exporting list to memory.
    Please suggest me how to get Alv grid output in midst of list output.
    Regards
    Kalpana.

    You should post your question to the ABAP forum:
    ABAP Development

  • Hide a Column in ALV Grid Output

    Hi,
    I want to hide a column in ALV Grid Output through program.
    I am using   lwa_fieldcat-NO_OUT = 'X'. to hide the column in output but it is not working, column in not hided in the output.
    Kindly suggest.

    It should work..
    see the code :
    d_fieldcat_wa-fieldname = 'MATNR'.
    d_fieldcat_wa-seltext_l = 'material number'.
    d_fieldcat_wa-no_out = 'X'. * hide particular field
    append d_fieldcat_wa to d_fieldcat.
    clear d_fieldcat_wa.
    if not please paste your code here.
    Thanks
    Seshu

  • Bold line in ALv grid output

    Hi,
    I want show few line item informations in bold in ALV grid output.
    Please let me know your suggestions.

    You may check the below links.
    some methods to achieve this is mentioned out there.
    Re: BOLD cell in ALV.
    Re: ALV Row should apper in BOLD when order type is "ZSTP1" in the cloumn
    Regards,
    Anil

Maybe you are looking for

  • AR Aging Open Items Issue in BW

    Hi Experts, We have activated 0FI_GL_4 data source and using the DSO ZFIGL_O2 (Copy of 0FIGL_O2) for data staging then load the data into custom cube ZFIAR_C01. The issue is when the AR document open in the ECC sometimes it is cleared right away or s

  • Need a help to config 1841 router!

    Hi all, Could someone tell me,can I configure two ISP on one Fast Ethernet port. We have a client, bougth a 1841 Modular router without aditional WAN cards. So, the router hes only two interfases. In this moment, we use one interfase for internal LAN

  • Role Creation using SCAT-Urgent.....

    Hi All, I got a spread sheet with roles and transactions to be included in each role.Can anyone let me know how to Map this transactions to roles using SCATT?Please explain in a procedure which would be helpfull to me.Points will be rewarded to the a

  • I am not able to access anything on my macbook pro, including safari, appstore, finder, etc

    I was having ad pop ups issue in my browsers and i was following the starred answer in the following link, Safari keep Pop-up Ads with new tab But after deleting the files mentioned, i am not able to access anything.. i have restarted many times and

  • PP CC 2014 Constant Crashing MBPr

    Hi Folks, Firstly please excuse me if this post is in the wrong place or if I do something wrong. It is my first time. I was hoping somebody could point me in the right direction. I am running an up to date version of Premiere Pro CC 2014 on my Late