Problem in double-click on a perform statement in abap editor

Hello,
I was asked to modify a program but as I tried to read it in se38, I could not double click in performs. Their forms are placed in INCLUDES which are stated in the program. So every time i want to see what a perform does, I go into every include and try to search it by name, which is extremely tiring....
Does anybody have  any idea why that happens??? In all my other programs 'double-clicking' works fine in se38.
Please help.
Roxani

Hi,
I don't know any other place. Even when I right-click 'just' an include, I get in addition menu point 'version management'.
Which SAP-version you are on? I think it's only >620.
But I found OSS-note 15447: in older release it's somewhere else. But also most up-to-date systems might have problems, see note 920177.
Just have a search with 'navigation' in module BC-DWB, here a small list with relevant notes will be found.
Regards,
Christian

Similar Messages

  • Problem with double click in alv interactive report

    Hello frnds,
            the problem is i am displaying basic list using grid display with pf-status and usercommand forms. My first column is checkbox, after selecting checkboxes if i click on the pf-status Button then in the internal table  corresponding field is not getting updated with value 'X'. But once if i double click on the basic list after selecting the checkboxes the values are reflecting as X in the internal table . But my requirement is i want to get the values to be populated once i click on push button only ?
    fcode i have used is &IC1( which is the fcode to trigger double event).Please help me out.
    Thanks in advance.
    subash.

    hi ,
    i had used like this .. it is working...
    *&      Form  USER_COMMAND
    FORM USER_COMMAND USING R_UCOMM LIKE SY-UCOMM
                            R_SELFIELD TYPE SLIS_SELFIELD.
      clear : v_flag.
      CASE R_UCOMM.
        WHEN 'DATA'.
    LOOP AT IT_TEMP.
         if it_temp-checkbox =  'X'.
              v_flag = 'X'.
              v_pernr1 = IT_TEMP-PERNR.
    *--Get compensation data and populate final internal table
              refresh it_fin.
              CALL FUNCTION 'Z_HR_COMP_STATEMENT'
                EXPORTING
                  PERNR = v_pernr1
                  BEGDA = s_date-low
                  ENDDA = s_date-high
                TABLES
                  FINAL = it_fin.
              if not it_fin[] is initial.
                delete adjacent duplicates from  it_fin comparing pernr.
                read table it_fin index 1.
                move-corresponding it_fin to it_final.
                append it_final.
                clear it_final.
              endif.
            endif.
         enddo.
    ENDLOOP.
          if not v_flag is initial.
    *------ display final data
            PERFORM final_display.
          else.
            message s000 with 'Select atleast one pernr'.
          endif.
      endcase.
    ENDFORM.                    "USER_COMMAND
    regards,
    venkat.

  • Yosemite problems with double click dock commands and keyboard shorcuts

    I have a mid 2012 macbook pro 17", i recently installed Yosemite although it fixed my internet problem (connection dropping randomly) now i am having issues with opening apps and files. Double clicking on a file launches the corresponding app but does't open the file i just get and message stating the app is not open anymore if click the file again. Finder keyboard shorcuts such as command+Q don't work. Can't access some menu items such as "about this mac". Dragging a file into the dock icon launches the app but doesn't open the file either.
    I have no idea what's causing this. anybody got a clue or having similar problems
    Thank you

    Same problem here. (Yosemite 10.0.1)
    the mouse is a 'team scorpion g-reaver' http://teamscorpion.net/ts2014/g-reaver_1.html
    It's work perfectly on the pc of my brother (he uses windows).
    It's a clean install...
    And has a funny fact... The Left Button was with this problem... So what I did? I changed the primary mouse button to the Right... Worked ok for almost 1~2 days... After that, the two buttons showed the double-click problem....
    But, I repeat, the mouse works perfectly in the windows of my brother '-'

  • Problem in double click in ALV

    In the ALV GRID , I have used the following code to go to VA02 and VA22 .
    WHEN c_ic1.
        Retrieve the vbeln value of the record selected and use it to open tcode VA02.
          CLEAR wa_outtab.
          READ TABLE i_outtab INTO wa_outtab with key p_rs_selfield-fieldname.
          SET PARAMETER ID c_pid FIELD wa_outtab-vbeln.
          if wa_outtab-auart eq  C_ZQT .
          CALL TRANSACTION c_tcode2 AND SKIP FIRST SCREEN.
          ELSEIF wa_outtab-auart eq  C_ZQR .
          CALL TRANSACTION c_tcode2 AND SKIP FIRST SCREEN.
          ELSE.
          CALL TRANSACTION c_tcode1 AND SKIP FIRST SCREEN.
          ENDIF .
          IF sy-subrc <> 0.
            no requirement to display error message in case error
            in opening tcode va02.
          ENDIF.
    Now My problem is that when the user clicks on a particular sales order in ALV GRID , that particular sales order should be displayed in VA02 .I,e instead of user entering the value of sales order manualy in VA02 . It has to automatically take from the ALV GRID tht particular sales order whic he has double clicked in the ALV .
    Please tell me how to achieve this functionality ..
    Regards
    pavan

    refer this code.....
    pass USER_COMMAND IN ALV AND THEN
    ADD THE CODE LIKE THIS..
    FORM user_command USING r_ucomm LIKE sy-ucomm
    rs_selfield TYPE slis_selfield.
    *break mtabap.
      data : lv_vbeln TYPE vbeln_va.
      CASE r_ucomm.
        WHEN '&IC1'.
          IF rs_selfield-fieldname = 'VBELN' .
           Read table  IT_FINAL into  wa_FINAL index rs_selfield-tabindex.
            if sy-subrc = 0.
              lv_vbeln = wa_FINAL-vbeln.
              SET PARAMETER ID 'AUN' FIELD lv_vbeln.
              CALL TRANSACTION 'VA03' AND SKIP FIRST SCREEN .
           clear lv_vbeln.
            endif.
          ENDIF.
          clear wa_final.
            ENDCASE.
    ENDFORM. "user_command

  • Problem in Double click event for ALV.

    Hi experts ,
    My scenario is one ALV is displayed in First screen and after double click  on particular column second screen is displayed with the other ALV.
    I have created 2 custom containers.
    My problem is that for the first double click every thing is fine,then i come back to first screen from second screen when i double click on different item the previous item is displayed which was for the first double click .
    I debugg the program ,  passing of data to the internal table is fine.
    Help me in the problem
    Thanks
    Aisurya

    Hi,
    You have to use refresh_table_dispaly  method to update the values. else it will display the same.
    try this logic
    if  cus_cont is initial.
    o_grid->set_table_for_first_display.
    else.
    o_grid->refresh_table_display.
    endif.,
    check BCALV_GRID_03 standard program for reference.
    hope this helps u.,
    Thanks & Regards,
    Kiran

  • Double Click works in locked state!!

    I accidentally found out that the double click action works even at the locked screen!! i think this is a GREAT addition to iPhone. i have always hated having to close safari to change my songs and do other music related tasks while trying to browse the net. THANKS APPLE!!

    ....and don't forget, a feature that was built in from the start is included right in the headset. That little white mic hanging from the right cord is also a button. Press that between your fingers once to pause and unpause a song and twice to skip to the next song.
    I also agree the double click features works great that you mention! I love this phone!

  • How to configure double click to open picture in my default editor (Photoshop CC)?

    Hi!
    I wanted to ask, if it is possible to open an image in my default editor, if I do a double click on the image?
    In my case, I want to open the image in Photoshop CC for further manipulation.
    Thanks a lot!

    So I posted a feature request: http://feedback.photoshop.com/photoshop_family/topics/configure_double_click_to_e_g_opeb_f ile_in_default_editor

  • Double-Click to Open Folders in Mavericks Problem

    Since I installed Mavericks on my 27" iMac, I have had a problem with double-clicking to open a drive or a folder. It seems to be working only about one out of every tenth time I try it. I can open them with a right click and select open. If a drive is open I can open them using the small grey right arrow next to the folder. Other than that I get failure most of the time. I have tried trashing the Finder preference file, but this does not seem to work. I have tried restarting with no success.
    The only think I did that may be connected is regarding Finder Preferences Tags. I wanted to see what choices there were there. Each colored tag had a small blue square to the right with a minus sign in it. I checked the Red tag to make it a check mark. I can't seem to get it back to the small minus sign. I am not sure if this is connected.
    Anyone else with the same problem or a solution?

    I tried creating a new duplicate account with Migration Assistant, but this did not change. I now suspect it has to do with overall size of my account - many files, pictures, movies, music, etc accumulated over many years. I see that Spotlight is still trying to index all of the files, which may be what is slowing things down.
    The main effect is the inability to double-click a drive or folder to open it up. It works only about 1/3 of the time. When the main folder opens, the next level folder most often still has a problem.
    I will report back when Spotlight finishes its indexing.
    Anyone else have this problem?

  • Double clicking on a region to open it no longer works...

    After installing OS 10.8.2 I have problems with Logic 9.1.8. If I double click on a region in the Arrange window, it used to open on the lower part of the Arrange window so I could edit notes, velocity settings etc. Now, when double-clicking, the lower part opens for very short time (0,1 second) and then disappears. I have deleted prefs files, restarted the iMac etc., but nothing helps. - What should i do? Is there any other way to open a region in the lower part of the Arrange window?
    I just discovered that I have the same problem when double clicking on instruments. They open for a very short while (0,2 sec) and then close. This means that I can't adjust parameters in the pop-up window (instrument, filter etc.). Very strange. I remember I had this problem some weeks ago, but it disappeared. Not now.

    A few ideas..
    Have you checked your mouse/trackpad settings in System Preferences.... in case something got messed up there... as it sounds like an input device issue in some ways
    Also, check Logic Preferences/General/Editing and make sure that Double Clicking a Midi region Opens... is set to Piano Roll (Even if it is.. try unchecking it.. close prefs.. and recheck it again..)
    Finally, you said you had trashed the pref files.. which one(s) did you trash? Did you also trash the CS one too.. as it could be related to a control surface issue.. I mention this because a client of mine had an issue after installing an iPad Controller for Logic...  If you have an iPad/iPhone.. make sure the iPad/iPhone is powered off (Not just asleep) and test after that too...

  • Double clicking a contact fails to place address in Mail "Send To" register

    I just bought a new Mac Mini Q4 with Maverick OS 10.9.4. Everything seems to work except for one glaring  problem. Double clicking a contact name does NOT cause the address to be placed in the "TO" field. After checking on several forum entries and seeing no plausible solution I moved everything to Thunderbird where all is well. I will wait it out there until Apple rectifies this problem.

    If one types the first one or two character of the contact's name then a whole set of options pops up one of which may be what was desired.
    This is an awkward workaround and I suspect Apple software engineers had to work all night to dream this up. It only takes several times longer to develop a "Send To" list this way. You still have to click on the Address Book to see the list of contacts to determine which ones you wish to include. The approach of typing the first few characters only works if you know exactly whom to include and how they are listed in the Address Book and then only if there is just one or maybe two of them.
    I'll just hang with Thunderbird until Apple adds the double click feature back in.

  • How to handle both single click and double click from mouse

    hey,
    I looked in past threads and didn't get a proper answer for capturing both single and double click from the mouse.
    in most applications the single click action does not interfere with the double click action, for example in a text editor, single click sets the cursor in between the text, double click marks a word, triple click marks a sentence, they do not bother each other, they all can happen first the single then the double and then the triple, but what if i have a very distinct action for each of the actions, the e.getClickCount() returns every time the number of clicks and if i use
    if(e.getClickCount()==1)
        doSingleClick();
    if(e.getClickCount()==2)
        doDoubleClick();it will always do first the single click and then the double click, which works fine with the example i gave, but not with what i want to do, so i was thinking to over come this that i will use another thread to run my tasks if dt has past since the last click and by the last click counts to perform the correct action and go to sleep until the next mouse click notify it, what do you think?
    run this to get what i mean...
    package blah;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class MouseClickTest {
         static long previousTime = System.currentTimeMillis();
         public static void main(String[] args) {
              JPanel panel = new JPanel();
              JButton component = new JButton("Hit me, please");
              component.addMouseListener(new MouseAdapter(){
                   public void mouseClicked(MouseEvent me){
                        if(me.getClickCount()==1)
                             System.out.println("Now I will do single click action");
                        if(me.getClickCount()==2)
                             System.out.println("Now I will do DOUBLE click action");
    //                    System.out.println("Click count: " + me.getClickCount());
              panel.add(component);
              Launcher.launch(panel);
    package blah;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Launcher {
         public static JFrame launch (Container contents, String title, Color backgroundColor) {
              JFrame frame = new JFrame (title);
              if (backgroundColor != null) {
                   frame.setBackground (backgroundColor);
                   contents.setBackground (backgroundColor);
              } else {
                   frame.setBackground (contents.getBackground());
              frame.getContentPane().add (contents, BorderLayout.CENTER);
              frame.pack();
              frame.addWindowListener (new WindowAdapter() {
                   public void windowClosing (WindowEvent e) {
                        System.exit (0);
              frame.setVisible (true);
              return frame;
         public static JFrame launch (Container contents, String title)      {
              return launch (contents, title, null);
         public static JFrame launch (Container contents, Color backgroundColor) {
              return launch (contents, contents.getClass().getName(), backgroundColor);
         public static JFrame launch (Container contents) {
              return launch (contents, contents.getClass().getName());
    }

    Read my comments and solution in this posting; [http://forums.sun.com/thread.jspa?forumID=57&threadID=705244]
    and then choose a better design for your application.

  • Double Click Navigation with ABAP Source Codes of Reports On ABAP Workbench

    Hi,
    i have a problem about double click on abap source code on abap workbench. double clicking doesn't work after first double clicked on abap codes. that is going to row of first double clicking.
    did anyone have the same problem? can somebody help me please?
    thanks.

    Nurullah RÜSTEM wrote:
    > isn't there any radical solution to solve this problem?
    > these are very kill-time
    You feel
    Source Code Editor --> Utilities --> Update Navigation Index
    is not radical & kill-time.
    Can you please define "radical" & "kill-time" ?
    BR,
    Suhas

  • Double-click intermittently accepted in Finder and most apps

    since upgrading to Lion, I've experienced intermittent (though frequent) problems with double-clicking being accepted (e.g. to launch an app, open a folder, or to select a word in an application - basically it takes quadruple-click, or more). The first time I solved the problem with suggestions from this community that the Spotify app caused the problem.
    I haven't used Spotify since; and have incidentally doubled the RAM in my iMac to 8GB. But the double-click problem seems to be migrating back.
    Are there any other known or suspected third-party apps? I use MagicPrefs with my MagicMouse, for example. Or is this a known problem? I've also noticed that the Mouse preferences for MagicMouse no longer include a setting for double-click speed...

    I agree. Send Apple Feedback here.
    The more who send feedback the more likely it will get done.

  • Doubt - mouse double click invokes both single and double click

    Hi Friends,
    I added mouse listener to a java component. In the mouseClicked() method, I have implementation for both mouse single and double click. When I try to double click that component it invokes the single click method first and the it invokes the double click method. My problem is when I try to double click that component it should invoke my double click method alone not single click too.
    I'd be very grateful if someone can help me.
    Thanks and Regards,
    Sangeetha J

    Your problem: a double click is two single clicks. The first click will always fire a single-click event. How's the computer supposed to know that another click is to follow?
    All I think you could do is to instantiate a timer in the one-click method, set to whatever amount of time you think a double-click should take. If you get a second event while the timer's still active, it was a double-click and you can stop the timer and do the double-click action. Otherwise your timer should execute the single-click action after it timed out.
    But this will make your GUI look like it's responding slowly to single-clicks.

  • Double clicking to close apps

    Has anyone experienced a problem of double clicking to close open apps, after updating to IOS 7.1, has really slowed down?  I sometimes have to double click many times to get the closing screen to open.  Much more than in previous versions.  Any advice?

    After double clicking fling the page of the app you wish to close off the top of the display.

Maybe you are looking for

  • Unable to send email from iPhone or ipad, Unable to send email from iPhone or ipad

    Recently, I have become unable to send emails from my comcast email account.  I tried uninstalling and reinstalling the account, but get an error (Cannot send. Username or password for Comcast invalid).  The username and password are correct, though,

  • Query related to GAL

    Hello All, We are in process of implementing Exchange 2013 in our Organization and had a Query related to GAL. Below is our Environment description: 01. We have a Single Forest and Single Domain Architecture. 02. We will have separate Active Director

  • Using arrays in LV NXTToolkit

    I've written a post regarding problems with array usage with (version 1.0) LabView compiler (i.e. what is currently used in NXTToolkit and NXT-G). Read it here: http://nxtasy.org/2007/04/12/advanced-nxt-g-block-techniques-part-iv/ Guy Ziv NXTasy.org

  • JNI calls using dll build in DEBUG mode

    I have deployed a filter which loads a dll in the init method. The dll is build in DEBUG mode. The doFilter() method is never called. But If I build the same dll with out DEBUG parameter the doFilter() method is called. what is the issue? I need to d

  • OLAP Universe Refresh creates error

    Hi, we built an OLAP universe based on BEx Query. SAP Netweaver 7.0 EHP1, BO XI3.1 SP3 FP2, BW Integration Kit XI3.1 SP3 FP2. BEx query contains 4 Filters that need user input. When we create the universe for the first time, everything works fine and