Regarding Tool bars

Hi ,
      i copied a program to another name and checked the copy variants, included documentaion and all
so the program is copied and i activated it but the problem is in the copied version there is no standard tool bar and application tool bar which is there in the original version .i activated all the includes as well.
even i went to the pf-status standard01 and activated it as well .
when i executed the copied report along with the output iam getting the folowing message
status STANDARD01 of the user interface SAPLKKBL missing.

Hi Revanth,
I Used one time similar requirement,
  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
      I_CALLBACK_PROGRAM          = SY-REPID
      IS_LAYOUT                   = LAYOUT
      IT_FIELDCAT                 = FIELDCAT
      I_CALLBACK_USER_COMMAND     = 'USER_COMMAND'
      I_CALLBACK_PF_STATUS_SET    = *'PF_STATUS_SET'*
    TABLES
      T_OUTTAB                    = L_AFKO.
FORM PF_STATUS_SET USING UT_EXTAB TYPE SLIS_T_EXTAB.        "#EC CALLED
  DELETE UT_EXTAB WHERE FCODE = GC_REFRESH.
  SET PF-STATUS 'STANDARD_FULLSCREEN' OF PROGRAM 'SAPLKKBL'
      EXCLUDING UT_EXTAB.
ENDFORM.                    "pf_status_set

Similar Messages

  • Regarding list display + button on application tool bar

    Hi guru's
    I have a requirement like i need to select one particular record in the list display and prees on the button which is placed on the application tool bar.Then i should get one more screen where i can enter some details.
    As per my knowledge it is possible only in grid display.
    Kindly let me know if it is possible.
    It would be great help if sample coding is provided.

    Hi Ajay,
                You can do this in alv list display also.
    Copy the standard gui status in ur program using tcode SE51->user interface>copy->target prog name.activate it
    and add a button there.Use FM <b>'REUSE_ALV_EVENTS_GET'</b> to get user-command event.
    sample code :
    form Z8_EVENTCAT  using    p_i_eventcat TYPE SLIS_T_EVENT.
    DATA : L_EVENT TYPE SLIS_ALV_EVENT.
    FOR GETTING ALL 17 EVENTS
    CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
    EXPORTING
       I_LIST_TYPE           = 0
    IMPORTING
       ET_EVENTS             = P_I_EVENTCAT
    EXCEPTIONS
       LIST_TYPE_WRONG       = 1
       OTHERS                = 2
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CLEAR L_EVENT.
    READ TABLE P_I_EVENTCAT WITH KEY NAME = SLIS_EV_PF_STATUS_SET INTO L_EVENT.
    IF SY-SUBRC = 0.
    MOVE 'Z8_PF_STATUS' TO L_EVENT-FORM.
    APPEND L_EVENT TO P_I_EVENTCAT.
    ENDIF.
    CLEAR L_EVENT.
    READ TABLE P_I_EVENTCAT WITH KEY NAME = SLIS_EV_USER_COMMAND INTO L_EVENT.
    IF SY-SUBRC = 0.
    MOVE 'Z8_USER_COMMAND' TO L_EVENT-FORM.
    APPEND L_EVENT TO P_I_EVENTCAT.
    ENDIF.
    form Z_MENU using p_extab type slis_t_extab.
    SET PF-STATUS 'MENU_LIST'.
    endform.                    " Z_MENU
    form z8_user_command using p_ucomm type sy-ucomm
                               p_selfield type slis_selfield.
      case p_ucomm.
      WHEN '&IC1'.
    call screen 100.
    endcase
    endform.
    Reward points if helpful.
    Regards,
    Hemant

  • Please fix the compatibility issue regarding google tool bar

    I have now FF5 and this version is NOT compatible with Google Tool Bar. I have all of my favorites and bookmarks on that tool. I do not and will not use the bookmark feature in FF. Google is everywhere and I can access it most places and feel it is a large error on Mozilla to exclude such a widely accepted plugin.

    chibangbodies, looks like you did not bother to read past first post. It is Google that needs to update their extension, always been that way.
    Firefox 5.0 is pretty much both a security update in place of 4.0.2 and has some additional features fixes that would not likely have been in a point update.
    The vast majority of extensions that were compatible with 4.0.1 should be compatible with 5.0 with mainly just a maxversion bump. Unless it happens to be a extension that needs additional work sue to some changes or updates.
    Also when dawn.prentice@ posted this thread some 2 weeks ago the Firefox 5.0 was still in Beta testing (beta 4 of 7) as it was only just officially released June 21.

  • How can we create save layout option in grid tool bar

    hi,
    how can we create select layout option in grid tool bar to save my own layout. if any one knows tell me immediately
    thanks

    Hi again,
    1. We need to do 1 additional thing.
    data : GS_variant TYPE DISVARIANT.
    GS_variant-REPORT = sy-repid.
    2.  while calling pass this parameter also.
         IS_VARIANT                    = GS_variant
    It will work now.
    3. Moreover, I_SAVE has 3 options.
    I_SAVE = SPACE
    Layouts cannot be saved.
    I_SAVE = 'U'
    Only user-defined layouts can be saved.
    I_SAVE = 'X'
    Only global layouts can be saved.
    I_SAVE = 'A'
    Both user-defined and global layouts can be saved.
    regards,
    amit m.
    Message was edited by: Amit Mittal

  • "Excluding" not working with PF status In ALV tool bar

    Hi all,
    I have 5 buttond in ALV tool bar out of which for every distinct logic only two buttons should be actually visible on toolbar.For this am using-
    SET PF-STATUS 'ZQACCAL'  EXCLUDING '&QE17''&QA13''&QE19' IMMEDIATELY.
    Problem is am still viewing excluded buttons (ie '&QE17''&QA13''&QE19' )also.
    Please tell me the solution for the same.
    Thank you.

    Hi,
    Use:-
    *FOR EXCLUDING STANDARD BUTTON FROM ALV TOOLBAR
    DATA : it_exclude TYPE slis_t_extab,
           wa_exclude TYPE slis_extab.
    *          FOR EXCLUDING STANDARD BUTTONS FROM ALV TOOLBAR
      wa_exclude-fcode = '&OUP'.
      APPEND wa_exclude TO it_exclude.
      CLEAR wa_exclude.
      wa_exclude-fcode = '&ODN'.
      APPEND wa_exclude TO it_exclude.
      CLEAR wa_exclude.
      wa_exclude-fcode = '&OAD'.
      APPEND wa_exclude TO it_exclude.
      CLEAR wa_exclude.
      wa_exclude-fcode = '&INFO'.
      APPEND wa_exclude TO it_exclude.
      CLEAR wa_exclude.
    "similarly append more function codes for standard buttons that needs to be excluded
    "you can get to know the func code for the button by enabling debugging at run time
    "and check valus for sy-ucomm and append it to it_exclude
    *          DISPLAY RECORDS IN ALV GRID
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
       i_callback_program                = sy-repid
       it_fieldcat                       = it_field
       it_excluding                      = it_exclude
    TABLES
       t_outtab                          = it_final
    EXCEPTIONS
       program_error                     = 1
       OTHERS                            = 2.
      IF sy-subrc <> 0.
      ENDIF.
    Hope this helps you.
    Regards,
    Tarun
    Edited by: Tarun Gambhir on Mar 6, 2009 5:06 PM

  • New entries tab not appearing in tcode VOR1, VOR2 in application tool bar

    Hi guru's
    Suddenly overnight the new entries tab present in the application tool bar seems to have been vanished from tcode VOR1 & VOR2, in the sandbox, development & quality server, even when the client is open, i.e in tcode SCC4 we have allowed changes to be made, protection level is "0" and changes to repository and cross-client customising allowed.
    Please suggest where & what are the other changes I have to make so that I can get the new entries tab in tcode VOR1 & VOR2
    Thanks & best regards
    satish

    Hi Venkat
    That is where the problem lies. The sales organisation, distribution channel & division has been defined & assigned and even the respective sales area's has been assigned to the respective document types.
    But still the system ECC 6.0 does not allow to create any sales orders because the assgnment in tcodes VOR1 & VOR2 is still pending and the entries do not appear there by default.
    Once again the  distribution channels and divisions has to be assgined to the respective sales organisations in VOR1 & VOR2
    But since the new entries tab is absent I am not able to create any new sales orders because the assignment in tcodes VOR1 & VOR2 is pending.
    Please suggest a solution.
    Thanks
    satish

  • ALV GRID Tool bar options not working

    Hello Experts,
    I copied the standard tool bar into my program with the name 'ZSALV_STANDARD' and displaying the output in the grid format in a container with the method set_table_for_first_display
    When I execute the program the standard buttong in the tool bar are not working... Can anyone guide where am I going wrong...
    Here is my code
    DATA :    gr_event_handler TYPE REF TO lcl_event_handler .
      DATA:  threed TYPE i VALUE 1.
      SET PF-STATUS  'ZSALV_STANDARD'.
    * Creating an instance for the event handler
      CREATE OBJECT gr_event_handler .
      TRY.
          CREATE DATA i_table TYPE TABLE OF (viewname).
          ASSIGN i_table->* TO <i_itab>.
          CREATE DATA wa_all LIKE LINE OF <i_itab>.
          ASSIGN wa_all->* TO <wa_tab>.
    *     Selecting data dynamically
          SELECT * FROM (viewname) INTO TABLE <i_itab>.
    *     Building the fieldcatelog
          CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
            EXPORTING
              i_structure_name       = viewname
            CHANGING
              ct_fieldcat            = li_fieldcat
            EXCEPTIONS
              inconsistent_interface = 1
              program_error          = 2
              OTHERS                 = 3.
          IF sy-subrc <> 0.
            MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
          ENDIF.
    *     Making fields editable except key fields
          IF sy-ucomm = 'UPD' OR  sy-ucomm = 'CHANGE'.
            LOOP AT li_fieldcat INTO lwa_fieldcat.
              IF lwa_fieldcat-key = space.
                lwa_fieldcat-edit = 'X'.
                MODIFY li_fieldcat FROM lwa_fieldcat.
              ENDIF.
            ENDLOOP.
          ENDIF.
    *     Making fields editable
          IF sy-ucomm = 'NEW'.
            LOOP AT li_fieldcat INTO lwa_fieldcat.
              lwa_fieldcat-edit = 'X'.
              MODIFY li_fieldcat FROM lwa_fieldcat.
            ENDLOOP.
            lh_flag = 'X'.
            CLEAR : <i_itab>.
            DO 100 TIMES.
              APPEND <wa_tab> TO <i_itab>.
            ENDDO.
          ENDIF.
    *     Exclude buttons
          PERFORM exclude_tb_functions CHANGING i_exclude.
          IF g_custom_container IS INITIAL.
            CREATE OBJECT g_custom_container
              EXPORTING
                container_name = g_container.
            CREATE OBJECT grid1
              EXPORTING
                i_parent = g_custom_container.
          ENDIF.
    *     Making all fields non-editable if display mode
          IF sy-ucomm = 'SHOW'.
            LOOP AT li_fieldcat INTO lwa_fieldcat.
              lwa_fieldcat-edit = ' '.
              MODIFY li_fieldcat FROM lwa_fieldcat.
            ENDLOOP.
          ENDIF.
          IF sy-ucomm = 'SAVE'.
            LOOP AT li_fieldcat INTO lwa_fieldcat.
              IF lwa_fieldcat-key NE space.
                lwa_fieldcat-edit = space.
                MODIFY li_fieldcat FROM lwa_fieldcat.
              ENDIF.
            ENDLOOP.
          ENDIF.
    *     Displaying ALV Grid
          i_layout-NO_TOOLBAR = 'X'.
          i_layout-edit = 'X'.
          CALL METHOD grid1->set_table_for_first_display
            EXPORTING
              i_structure_name              = viewname
              it_toolbar_excluding          = i_exclude
              i_default                     = 'X'
              is_layout                     = i_layout
            CHANGING
              it_outtab                     = <i_itab>
              it_fieldcatalog               = li_fieldcat
            EXCEPTIONS
              invalid_parameter_combination = 1
              program_error                 = 2
              too_many_lines                = 3.
          IF sy-subrc NE 0.
            EXIT.
          ENDIF.
    *      Getting the changed data
          SET HANDLER gr_event_handler->handle_data_changed FOR grid1 .
        CATCH cx_sy_create_data_error.
      ENDTRY.
    Thanks alot in advance.
    Sri

    Hello ,
    try
        call method g_grid%->set_table_for_first_display
          exporting
            i_save               = p_save_layout%
            i_default            = 'X'
            is_layout            = ps_layout%
            is_variant           = ps_variant%
            it_toolbar_excluding = pt_exclude%
          changing
            it_outtab            = pt_alv_tab1[]
            it_fieldcatalog      = pt_fieldcat%[].
        call method g_grid%->set_toolbar_interactive.
    regards
    Prabhu

  • User exit/ BADI in f-32 / f-28 for adding application tool bar button

    Hi Experts,
    There is a requirement, for adding application tool bar button in the Transaction codes F-32 / F-28 / Feba_lockbox. So that while clearing documents with reference document, they can upload the data(Reference Documents) from local file and after the data is fetched for clearing, they need to download the data to local file for verification. If the data is verified to be okay, then they can go ahead with simulation and posting. They need this verification to be done in excel sheet, so need to download the data into local file.
    I found a BADI in that screen is BADI_LAYER but I don't think it is relevant.         
    Any help is apreciated!
    Is there any EXIT ? Because I can not find it too.
    Regards,
    Nitin

    where you did the enhancement?
    I have to create the IDOC once Clear docuemnt is created.. It may help me.

  • Speed dial only has one icon, to open up the windows. Another used to be on the other end of the tool bar for entering websites into the windows. Also do not know how to form another group.

    I have just downloaded Firefox into a new computer. The firefox I had in my old computer had one (9 pt) icon at one end that brought up the speed 9 speed dial windows. It also had another similar icon at the other end of the tool bar that you could click on and place a website you were looking at into a particular window. This add on does not have that feature, which makes it very hard to make entries into the windows.
    Also I have not found the way to add other groups of windows as I had before. I could even label them in categories. What to do?
    My Computer is an HP p6653w and my default browser is Firefox 3.6
    My operating system is windows 7.

    Hi,http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03149924&cc=uk&dlc=en&lc=en#N89
    First, I am sorry to see your experience, however be aware that this forum is a peer-to-peer community and not a direct contact with HP.
    To clarify, the product specification do list the ink cartridges regionalization, the specifications itself reffer to HP Suresupply to locate the ink cartridges for your region, as well as the following document which clearly state that information:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03239171&tmp_task=prodinfoCategory&cc=uk&dlc=en...
    Firs be sure to have the latest software installed prior contacting HP support, which should be listed as 28
    You may find that information listed in the following document (Check the How can I tell which driver version I have? section), if you have any older version be sure to uninstall it and install the latest software, as listed within the same document:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03149924&cc=uk&dlc=en&lc=en#N89
    If you need, the latest software can be found below:
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=mp-108821-3&cc=uk&dlc=en&lc=en...
    Next ensure you have any of the 564 ink cartridges, once the printer being reset it require all the 4 ink cartridges to work
    Finally check the private messages I sent you prior contacting HP support , the envelope icon at the top-right part of that screen.
    The ensure you use the correct contact details lease double chekc it below:
    http://www8.hp.com/us/en/contact-hp/phone-assist.html#section1
    Regards,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • IC WEBCLIENT tool bar

    Hi Guys,
    I am trying to simulate the inbound call in IC webclient, but in the tool bar i could not see the option of ready state. I dont see that for any of the contact channels.
    Help is greatly appreciated.
    Thanks.

    Walter,
    SAP does offers a simple simulator for phonecall, e-mails and chat session (named Contact Center Simulator) and its part of the SAP J2EE Engine 6.20 and 6.40 (the path is http://../ccsui) .. Usually you can use this to get familiar/demo/test the channel integration through the ICI Interface in the IC WebClient.
    Best Regards,
    Joaquin

  • ALV TOOL BAR BUTTONS NOT ENABLED IN TCODE FBL3N

    Hello All,
    We have currently switched from 4.7 to Ecc 6.0 and while executing
    tcode FBL3N in ALV tool bar all the buttons like Change document , mass
    change , select layout , save layout are disabled.
    These all buttons are active in 4.7 but in ecc 6.0 these buttons are
    totally disabled.
    I have checked all these buttons fcode status in se41 and all that are
    active.
    Kindly guide us how to go about it.
    Regards,
    Sunny

    Hi suny,
    there are some new authority-objects in ecc6.
    try SU53 after executing FBL3N.
    Perhaps you find Authotity-Problems.
    Regards, Dieter

  • Hide the Save button in tool bar in pdf form

    Hi All,
    I need to hide the save button in the tool bar in pdf form out put. I need not hide the print button, hand tool and etc.
    I have seen some forum threads,but i am not able to get the answer.
    I have refered this links
    http://help.sap.com/saphelp_nw04/helpdata/en/e1/fd9841e2ebb05fe10000000a1550b0/frameset.htm
    How to hide tool bar from Adobe Form
    The above link contains some scripts,The code id used for hide the hole tool bar not only save button.
    I need to hide only save button in the tool bar.
    How to hide the save button in the tool bar ?
    Thanks and regards,
    Boopathi M

    Adobe Designer 7.1 uses XFA 2.4
    If you can upgrade to Adobe desinger 8.2 to be abel to use XFA 2.8 you can code in the following way:
    Write the following code in the preSave method
    if (do_not_save_condition == 1) then
      xfa.event.cancelAction = 1
    endif
    Adobe Quote
    cancelAction specifies whether to cancel a forthcoming action.
    This property applies only to the following scripting events: prePrint, preSubmit, preExecute, preOpen, and preSign.
    The user experience is determined by the scripting event that contains the cancelAction reference:
    u2022  preOpen - The drop-down list does not expand to display the list of values. 
    u2022  preSubmit - Form submission does not occur. 
    u2022  preSign - The form is not digitally signed. 
    u2022  prePrint - No print dialog boxappears, and the form is not printed. 
    u2022  preSave The form is not saved. The user experience is that no action occurred. 
    Edited by: Reema Shahbazkar on Sep 10, 2008 7:54 PM
    Using this, the save button will still be visible but, you can prevent the form from being saved.

  • Tool Bar not visible in Adobe Forms

    When i open the form, tool bar(save,print,up,down scroll button, page number, minimize.maximize button)it coming automatically without any press...but some forms its not appearing but when i press F8 then only the toolbar is appearing please suggest me whether we need to write a code or we need to change the settings in the toolbar .If we write a code please let me know where i need to write if it is a settings where i need to change the setting ..Please Advise its very important..I am fresher in the Adobe side ..Please suggest me

    Hi Kiran,
    Please go through the below link:
    http://help.sap.com/saphelp_nw70/helpdata/en/45/2dbb13d79f3446e10000000a155369/frameset.htm
    Here the method to hide the toolbar is given. Try passing ABAP_FALSE in method: lr_method_handler->set_hide_toolbars( abap_false ) if it works.
    Regards,
    Vaibhav

  • Tool bar not coming in Oracle Forms 11g forms

    Hi,
    i am facing problem in my forms 11g application. we migrated our forms from 6i to 11g version.
    while logging in to application main form with verticular tool bar is dispayed . we will navigate into another form by using menus drop down . if we exit 2 form and comes to main form verticular tool bar is missing in main form.
    can any body give me solution for this . it is urgent

    Hi Kiran,
    Please go through the below link:
    http://help.sap.com/saphelp_nw70/helpdata/en/45/2dbb13d79f3446e10000000a155369/frameset.htm
    Here the method to hide the toolbar is given. Try passing ABAP_FALSE in method: lr_method_handler->set_hide_toolbars( abap_false ) if it works.
    Regards,
    Vaibhav

  • Query in Tool Bar Area Searching option.

    Hi All,
    There is a tool bar Searching iView with us.But when any user searches through it, the search option is working fine.But the results shows files with open folder and details option (as we do not want some user go inside details option and change the permissions settings of that file).Can anyone tell me how can we remove open folder and details options??
    Regards,
    Udit

    Hi,
    The UI Command Group resposible to show Open Folder,  See Also and  Details Commands is SearchSingleItemGroup.
    So open it and remove the browse_from_here and SingleDetailsGroup(expanded) UICommands.
    choose System Administration --> System Configiuration --> KM --> Content Management --> User Interface --> Commands --> UI Command Group.
    http://help.sap.com/saphelp_nw70/helpdata/en/9d/233f989a5ba64fa44ed6e0823286ee/frameset.htm
    Greetings,
    Praveen Gudapati

Maybe you are looking for

  • Any way to lock the size of that window? This is a serious, please, help

    Camera raw 6.0.0.205, that's what came with CS5. Sorry about getting back to this uninteresting subject, I thougth it was small stuff and it's not. So every time I open a raw file, I have to play with the bottom right corner, especially to bring up t

  • Need a fonction : start- and end-ID for reading musicfiles in keynote

    My english is not good, but I'm asking for a new fonction in keynote. I really need a fonction in keynotes for making music presentation : to be able to give a startpoint and an endpoint for playing music. To prepare the cuts in the music (to make so

  • Video output half the quality of source files

    I don't understand why this isn't working... I have a video project in which I've imported high quality video files (1280x1024 screen capture, AVI). I've made sure that my sequence settings match the same dimensions as the source clips and that compr

  • KDE network management backend changed on update.

    The last couple of KDE updates have caused the network management backend to be changed to wicd.  I use NetworkManager 0.9 -- I don't even have wicd installed (but I used to).  The network backends listed in System Settings / Information Sources are

  • How to save adobe interactive forms offline in blackberry

    Hi Experts, A basic question... Can  a user save an  adobe interactive form in blackberry while he is not connected to the SAP system. The user is not logged on to the internet(the user is offline/ not connected to the system)when he or she fills out