Right click on Report Output

Hi all,
  I am new here and i need ur help. I need to give the user an option to go to a transaction whenever he right clicks on the output of a report.
I need to get the cursor position to get the parameters for the transaction and then just give him an option to go there (ex:like a pop-up) when he right clicks on the report output.
Please let me know if you know how to do that. ( Its not a screen its the output of a report)
Thanks

Hi
Wow!!!!! I didn't know that! You are right!!!!!!!!!!
You can try to use the event AT PFn.
In your STATUS insert, in function Key section, a new function with code PFn (for example PF01).
START-OF-SELECTION.
LOOP AT ITAB.
HIDE ITAB.
WRITE: / ITAB.
ENDLOOP.
CLEAR ITAB.
AT PF01.
Get line where cursor is placed
CHECK NOT ITAB IS INITIAL.
Call Popup to confirm the action
CALL 'POPUP_TO_CONFIRM_STEP'
IMPORTING
  ANSWER = ANSWER.
CHECK ANSWER = 'J'.
SET PARAMETER ID <ID> FIELD ITAB-FIELD.
CALL TRANSACTION <CODE> AND SKIP FIRST SCREEN.
CLEAR ITAB.
Max
Thanks!!!

Similar Messages

  • Right Click in ALV output ?

    Hi,
    I have got an ALV output.
    The reqmnt now is that, if the user Right Clicks on a particular field which is displayed, it should show two transactions, and then it should go to the transaction which is selected by the user.
    How to do this in ALV. Any sample code would be very helpful.
    Regards.

    Check this sample program..may be it will help u.
    REPORT z_alv_context_menu NO STANDARD PAGE HEADING.
    * Type pool declaration
    TYPE-POOLS: slis.
    * Internal table declaration
    DATA: BEGIN OF gt_outtab OCCURS 0.
            INCLUDE STRUCTURE sflight.
    DATA: END OF gt_outtab.
    data: gt_events       TYPE slis_t_event.
    * Structure / Variable declaration
    DATA: g_repid         LIKE sy-repid,
          event           TYPE slis_alv_event.
    * Event: START-OF-SELECTION
    START-OF-SELECTION.
    * Storing the program name
      g_repid = sy-repid.
    * Building ALV event table
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          i_list_type     = 4
        IMPORTING
          et_events       = gt_events
        EXCEPTIONS
          list_type_wrong = 1
          OTHERS          = 2.
      IF sy-subrc = 0.
        REFRESH gt_events.
    *   Adding records for CONTEXT_MENU event
        event-name = 'CONTEXT_MENU'.
        event-form = 'CONTEXT_MENU'.
        APPEND event TO gt_events.
      ENDIF.
    * Data Selection
      SELECT * FROM sflight INTO CORRESPONDING FIELDS
                       OF TABLE gt_outtab
                       UP TO 00030 ROWS.
    * Display ALV grid
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_html_top_of_page = 'HTML_TOP_OF_PAGE'
          i_callback_program          = g_repid
          i_callback_user_command     = 'USER_COMMAND'
          i_structure_name            = 'SFLIGHT'
          it_events                   = gt_events
        TABLES
          t_outtab                    = gt_outtab
        EXCEPTIONS
          program_error               = 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.
    * FORM html_top_of_page
    FORM html_top_of_page USING top TYPE REF TO cl_dd_document.
      CALL METHOD top->add_text
        EXPORTING
          text      = 'Hello world '
          sap_style = 'heading'.
      CALL METHOD top->add_gap
        EXPORTING
          width = 200.
      CALL METHOD top->add_picture
        EXPORTING
          picture_id = 'ENJOYSAP_LOGO'.
    ENDFORM.                    "html_top_of_page
    * Form  context_menu
    FORM context_menu USING e_object TYPE REF TO cl_ctmenu.
      DATA: l_smenu TYPE REF TO cl_ctmenu.
      IF e_object IS BOUND.
    *   Create custom Sub-menu to hide column on which right
    *   mouse button will be clicked
        CREATE OBJECT l_smenu.
        CALL METHOD l_smenu->add_function
          EXPORTING
            fcode = 'ZFN1'
            text  = 'Hide Column'(001).
        CALL METHOD e_object->add_submenu
          EXPORTING
            menu = l_smenu
            text = 'Hide'(002).
      ENDIF.
    ENDFORM.                    "CONTEXT_MENU
    * Form  user_command
    FORM user_command  USING r_ucomm TYPE sy-ucomm
                             ls_selfield TYPE slis_selfield.
      DATA: g_grid TYPE REF TO cl_gui_alv_grid,
            t_catalog TYPE lvc_t_fcat,
            w_catalog TYPE lvc_s_fcat,
            l_repid  TYPE sy-repid.
      CASE r_ucomm.
    *   When 'hide column' sub-menu is clicked from the context menu
    *   then hide the column from where this is happened
        WHEN 'ZFN1'.
    *     Get the global instance of the ALV grid as well as
    *     it's field catalog info.
          CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
            IMPORTING
              e_callback_program = l_repid
              e_grid             = g_grid
              et_fieldcat_lvc    = t_catalog.
          CHECK l_repid = g_repid.
          IF g_grid IS BOUND AND t_catalog[] IS NOT INITIAL.
    *       Set the 'NO_OUT' attribute of the catalog to 'X'
            w_catalog-no_out = 'X'.
    *       Modify the field with this above value
    *       on which right click occured
            MODIFY t_catalog FROM w_catalog TRANSPORTING no_out
                WHERE fieldname = ls_selfield-fieldname.
            IF sy-subrc = 0.
    *         Set the field catalog with this modified one
              CALL METHOD g_grid->set_frontend_fieldcatalog
                EXPORTING
                  it_fieldcatalog = t_catalog.
            ENDIF.
          ENDIF.
        WHEN OTHERS.
    * Do nothing
      ENDCASE.
      ls_selfield-refresh = 'X'.
    ENDFORM.                    "USER_COMMAND

  • Basic List:- Need to get data when user double click on report output

    Hi,
    My requirement is to display asset details as a report and when user double clicks on the asset details, transaction AS03 need to be opened.
    The output layout is as follows:
    Company code    800                             Asset class 111
    Asset 1 ................
    Asset 2.................
    Asset 3.................
    Company code    900                             Asset class 111
    Asset 1 ................
    Asset 2.................
    Asset 3.................
    when user double click on Asset 1 of Company code 800, then transaction AS03 need to be triggerd. But when I use ATLine selection. I only get the Asset1....details in the sy-lisel. But I need Company code for triggering the AS03 transaction.
    Please let me know any way of getting company code along with the Asset 1 ......
    Regards
    Suresh Kumar

    Hi,
    Herewith i am sending the sample coding for the report.
    REPORT YMS_INTERTESTALV .
    TYPE-POOLS: slis.
    DATA: BEGIN OF itab1 OCCURS 0,
    vbeln TYPE vbeln,
    bstnk TYPE vbak-bstnk,
    erdat TYPE vbak-erdat,
    kunnr TYPE vbak-kunnr,
    END OF itab1.
    DATA: BEGIN OF itab2 OCCURS 0,
    vbeln TYPE vbeln,
    matnr TYPE vbap-matnr,
    netpr TYPE vbap-netpr,
    kwmeng TYPE vbap-kwmeng,
    END OF itab2.
    DATA: t_fieldcatalog1 TYPE slis_t_fieldcat_alv.
    DATA: t_fieldcatalog2 TYPE slis_t_fieldcat_alv.
    DATA: v_repid TYPE syrepid.
    v_repid = sy-repid.
    Get the fieldcatalog1
    PERFORM get_fieldcat1.
    Get the fieldcatalog2
    PERFORM get_fieldcat2.
    SELECT vbeln bstnk erdat kunnr UP TO 10 ROWS
    INTO TABLE itab1
    FROM vbak.
    IF NOT itab1[] IS INITIAL.
      SELECT vbeln matnr netpr kwmeng
      INTO TABLE itab2
      FROM vbap
      FOR ALL ENTRIES IN itab1
      WHERE vbeln = itab1-vbeln.
    ENDIF.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
         EXPORTING
              i_callback_program      = v_repid
              i_callback_user_command = 'DISPLAY_DETAIL'
              it_fieldcat             = t_fieldcatalog1
         TABLES
              t_outtab                = itab1.
    FORM display_detail *
    --> UCOMM *
    --> SELFIELD *
    FORM display_detail USING ucomm LIKE sy-ucomm
    selfield TYPE slis_selfield.
      DATA: itab2_temp LIKE itab2 OCCURS 0 WITH HEADER LINE.
      IF ucomm = '&IC1'.
        READ TABLE itab1 INDEX selfield-tabindex.
        IF sy-subrc = 0.
          LOOP AT itab2 WHERE vbeln = itab1-vbeln.
            MOVE itab2 TO itab2_temp.
            APPEND itab2_temp.
          ENDLOOP.
          CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
               EXPORTING
                    i_callback_program = v_repid
                    it_fieldcat        = t_fieldcatalog2
               TABLES
                    t_outtab           = itab2_temp.
        ENDIF.
      ENDIF.
    ENDFORM.
    FORM GET_FIELDCAT1 *
    FORM get_fieldcat1.
      DATA: s_fieldcatalog TYPE slis_fieldcat_alv.
      s_fieldcatalog-col_pos = '1'.
      s_fieldcatalog-fieldname = 'VBELN'.
      s_fieldcatalog-tabname = 'ITAB1'.
      s_fieldcatalog-rollname = 'VBELN'.
      s_fieldcatalog-hotspot = 'X'.
      APPEND s_fieldcatalog TO t_fieldcatalog1.
      CLEAR s_fieldcatalog.
      s_fieldcatalog-col_pos = '2'.
      s_fieldcatalog-fieldname = 'BSTNK'.
      s_fieldcatalog-tabname = 'ITAB1'.
      s_fieldcatalog-rollname = 'BSTNK'.
      APPEND s_fieldcatalog TO t_fieldcatalog1.
      CLEAR s_fieldcatalog.
      s_fieldcatalog-col_pos = '3'.
      s_fieldcatalog-fieldname = 'ERDAT'.
      s_fieldcatalog-tabname = 'ITAB1'.
      s_fieldcatalog-rollname = 'ERDAT'.
      APPEND s_fieldcatalog TO t_fieldcatalog1.
      CLEAR s_fieldcatalog.
      s_fieldcatalog-col_pos = '4'.
      s_fieldcatalog-fieldname = 'KUNNR'.
      s_fieldcatalog-tabname = 'ITAB1'.
      s_fieldcatalog-rollname = 'KUNNR'.
      APPEND s_fieldcatalog TO t_fieldcatalog1.
      CLEAR s_fieldcatalog.
    ENDFORM.
    FORM GET_FIELDCAT2 *
    FORM get_fieldcat2.
      DATA: s_fieldcatalog TYPE slis_fieldcat_alv.
      s_fieldcatalog-col_pos = '1'.
      s_fieldcatalog-fieldname = 'VBELN'.
      s_fieldcatalog-tabname = 'ITAB2'.
      s_fieldcatalog-rollname = 'VBELN'.
      APPEND s_fieldcatalog TO t_fieldcatalog2.
      CLEAR s_fieldcatalog.
      s_fieldcatalog-col_pos = '2'.
      s_fieldcatalog-fieldname = 'MATNR'.
      s_fieldcatalog-tabname = 'ITAB2'.
      s_fieldcatalog-rollname = 'MATNR'.
      APPEND s_fieldcatalog TO t_fieldcatalog2.
      CLEAR s_fieldcatalog.
      s_fieldcatalog-col_pos = '3'.
      s_fieldcatalog-fieldname = 'NETPR'.
      s_fieldcatalog-tabname = 'ITAB2'.
      s_fieldcatalog-rollname = 'NETPR'.
      APPEND s_fieldcatalog TO t_fieldcatalog2.
      CLEAR s_fieldcatalog.
      s_fieldcatalog-col_pos = '4'.
      s_fieldcatalog-fieldname = 'KWMENG'.
      s_fieldcatalog-tabname = 'ITAB2'.
      s_fieldcatalog-rollname = 'KWMENG'.
      APPEND s_fieldcatalog TO t_fieldcatalog2.
      CLEAR s_fieldcatalog.
    ENDFORM.
    Thanks,
    Shankar

  • PopUp Menus - using right click on report line

    Hi,
    Do HTMLDB support a popup menu which will present a list of activities to perform ( user choice ) according to the line in the report you are on ?
    do you have a way of doing that ?
    Thanx

    Hello,
    There are a many slightly different ways to override the browser context menu.
    http://www.google.com/search?q=javascript+context+menu
    Carl

  • Right Click not working in published output.  ??

    I'm relatively new to Captivate, and NOT a developer, so please bear with me on this.
    I'm recording a training video of a basic application and have a need to use a right-click to bring up a menu.  This is a requirement of the app, so I need Captivate to provide the same functionality to avoid confusing the user going through the training video.  I have the Click Box options set to Right Click, and it works in the Preview.  However, when I Publish the finished video, the right-click does not work - only a left-click will advance to the next slide.
    I found a few threads discussing issues with the right-click, but all of them were dealing with permissions issues.  I'm saving the output to my desktop (Windows XP) and am launching the HTM file to confirm the video is working properly, so I don't see how a permissions issue would come into play.  ??  If it is a permissions issue, how do I fix it within Captivate so that the end user can run this from any PC/MAC, where I have no control of their permissions?
    Any suggestions or tips on how to get the right-click working in the final product are greatly appreciated.
    D

    Hi there
    The right-click function relies on JavaScript. JavaScript may also be influenced by the Flash Security Settings.
    Please try what is outlined in the link and see if your right-click suddenly begins working. Also note that you don't need to adjust these settings if you are serving content from a server. You only have to worry about it if you are testing by running from your local C drive.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Double Click on ALV Report Output, Bringing to selections creen

    Hello Gurus,
    Please help me When i do double click on ALV Report  output , it is going back to Selection screen, actually its working as Back button. Now how to stop it.. I did debugging but i cannot trace it.

    PERFORM SUB_CREATE_FCAT.
    DATA W_REPID LIKE SY-REPID.
        W_REPID = SY-REPID.
    ls_layout-colwidth_optimize = 'X'.
    ls_layout-zebra = 'X'.
    PERFORM SUB_SORT.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
    *     I_INTERFACE_CHECK                 = ' '
    *     I_BYPASSING_BUFFER                = ' '
    *     I_BUFFER_ACTIVE                   = ' '
          I_CALLBACK_PROGRAM                 = SY-CPROG
          I_CALLBACK_PF_STATUS_SET          = 'STATUS'
           I_CALLBACK_USER_COMMAND           = 'C_USERCOMMAND '
    *     I_CALLBACK_TOP_OF_PAGE            = ' '
    *     I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
    *     I_CALLBACK_HTML_END_OF_LIST       = ' '
    *     I_STRUCTURE_NAME                  =
    *     I_BACKGROUND_ID                   = ' '
    *     I_GRID_TITLE                      =
    *     I_GRID_SETTINGS                   =
           IS_LAYOUT                         = ls_layout
           IT_FIELDCAT                       = IT_FIELDCAT
    *     IT_EXCLUDING                      =
    *     IT_SPECIAL_GROUPS                 =
           IT_SORT                           = IT_SORT
    *     IT_FILTER                         =
    *     IS_SEL_HIDE                       =
    *     I_DEFAULT                         = 'X'
          I_SAVE                            = 'U'
    *     IS_VARIANT                        =
    *     IT_EVENTS                         =
    *     IT_EVENT_EXIT                     =
    *     IS_PRINT                          =
    *     IS_REPREP_ID                      =
    *     I_SCREEN_START_COLUMN             = 0
    *     I_SCREEN_START_LINE               = 0
    *     I_SCREEN_END_COLUMN               = 0
    *     I_SCREEN_END_LINE                 = 0
    *     I_HTML_HEIGHT_TOP                 = 0
    *     I_HTML_HEIGHT_END                 = 0
    *     IT_ALV_GRAPHICS                   =
    *     IT_HYPERLINK                      =
    *     IT_ADD_FIELDCAT                   =
    *     IT_EXCEPT_QINFO                   =
    *     IR_SALV_FULLSCREEN_ADAPTER        =
    *   IMPORTING
    *     E_EXIT_CAUSED_BY_CALLER           =
    *     ES_EXIT_CAUSED_BY_USER            =
         TABLES
           t_outtab                          = T_FINAL
    *   EXCEPTIONS
    *     PROGRAM_ERROR                     = 1
    *     OTHERS                            = 2
       IF sy-subrc <> 0.
    * Implement suitable error handling here
       ENDIF.

  • Right click not working on BI web report

    Hi,
    We are facing an issue while working with BI 7.0 on Web.
    When we execute a report on the web and right-click anywhere on the characteristics, Menu options-Filter, Change Drilldown, Broadcast & Export etc - are displayed for the first time. After some time when we right click again, the menu options do not appear and even drag and drop does not work.

    Hi Nisha,
    Could you help us with what GUI front end version and patch do u have, What BEx version are u using.
    May be you should upgrade you gui to 7.10 and patch 11 or 12, and also install the corresponding BW and BI addOn.
    Bim, Let us know what your version of BEX and GUI front end is.
    reagards,
    Sree.
    Edited by: Sree Nair on Sep 8, 2009 7:19 AM

  • Acrobat 11 Pro - problem with right-click "Convert to Adobe PDF" output folder

    I'm migrating from one machine running Windows XP Pro with Acrobat 8 Pro to Windows 7 Pro with Acrobat 11 Pro.
    On the XP machine, when I right-click on a document and select "convert to Adobe PDF" the process works just fine - it always outputs the file to the target destination I have set in the Adobe PDF printer definition.
    On the Windows 7 Pro/Acrobat 11 Pro machine, the exact same settings are ignored: the PDF will always end up in the same folder as the source file.
    Both the source folder and the destination folder are on one of my office's networked drives.
    Under the Printing Preferences, I have the output folder address set the same on both machines, so it *should* go to the right location on the new machine.
    Oddly enough, on the Acrobat 11 Pro machine, if I select Adobe PDF as the default printer and do a test print, it *does* print to the correct folder!
    This has got me stumped!
    Thoughts?
    (update from later in the day)
    If Adobe PDF is selected as the default printer, I *can* select a bunch of documents, right-click, select "print", and Word will open up, and they'll print to the correct target folder.
    So, it's "just" the right-click "Convert to Adobe PDF" that doesn't work correctly.

    The reinstall is typically the last ditch effort to do. The first step is Help>Repair and Help>Updates. As far as Office 2013, the PDF Maker of AA X is not compatible and you can only print. In your list of errors it showed a problem with AcroTray.exe. As a first step, go to the print and select print-to-file. The file will be a PS file (maybe with a PRN extension). Once the printer if finished, open the file in Distiller to complete the process. If that is successful, then the problem is with AcroTray. Check your running tasks to be sure AcroTray is indeed running. If not, that is likely the problem. If it is, then restart it (it is located in the Acrobat folder). AcroTray provides the interface between the PS creation and Distiller to automate the process of creating the PDF.

  • When I right click on a report I need to run, I can not run it because a pop-up says "Back Forward Reload... Inspect Element ". How do I prevent this popup?

    I have created reports in Wal-Mart Retail Link. To run the report, you right click on the report and a pop-up comes up that allows you to modify, submit, delete or share this report. These options are hidden by another popup that gives the options to Back Forward Reload...Inspect Element (Q). It runs correctly when using Internet Explorer but not Firefox.

    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * On Windows you can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac you can open Firefox 4.0+ in Safe Mode by holding the '''option''' key while starting Firefox.
    * On Linux you can open Firefox 4.0+ in Safe Mode by quitting Firefox and then going to your Terminal and running: firefox -safe-mode (you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Please report back soon.

  • Bug in prompts off of right clicking reports that have actions

    Build 22.71, Windows and Linux, going against either Oracle 9i or 10g.
    I right click a row in the session report and choose either kill session or trace session, and the window that appears... its first tab selected has the labels for the prompts, but not the information on it, so you do now know what owner's session you are killing or tracing.

    FYI -
    This is a bug: BUG Reference 5499573

  • Call Report output via a Button click

    Hello,
    I am using a button placed on a SCREEN.
    WHen i click on the button i am doing some process using on user command.
    I want the output on a report (as a list output) based ob my write statments
    I tried with  leave to list processing , set screen 0..etc stuff but thats not calling my report output.
    Can any one suggest?
    Thanks
    Ricky

    hmmm... sounds to me like you're looking for something like
    * Print report
      NEW-PAGE PRINT ON NEW-SECTION PARAMETERS Z_L_PRI_PARAMS NO DIALOG.
      FORMAT COLOR COL_BACKGROUND INTENSIFIED OFF.
      LOOP AT Z_T_ITAB INTO Z_L_ITAB.
        WRITE: / SY-VLINE(01), Z_L_ITAB-EBELN,
                 SY-VLINE(01), Z_L_ITAB-EBELP,
                 SY-VLINE(01), Z_L_ITAB-AEDAT,
                 SY-VLINE(01), Z_L_ITAB-OID_EXTBOL.
      ENDLOOP.
      NEW-PAGE PRINT OFF.
      COMMIT WORK AND WAIT.
    Lookup NEW-PAGE

  • [1.1.0.23.64] Drill down reports - right click actions

    The release notes of SQL Developer version 1.1 includes a line concerning 'increased right click actions' for the reports category. One of the new actions is 'Go to <object>', if you select this action it will show you the properties of the object. For instance, when performing a right click and selecting 'Go to EMP' on the EMP row in
    the result set of the 'All objects' report, SQL Developer shows you the properties of the EMP table. This feature is also known as drill down capability (for screen shots see http://jornica.blogspot.com/2006/12/changing-preferences-by-executing.html).
    In the previous version 1.0, the 'Go to' object name was implemented by double-clicking a row in the result set. In version 1.1, if you double-click a row SQL Developer shows a button (this button appears in the cell you double-click). If you click this button SQL Developer shows the Edit Value window for Line terminator value.You can change this value by clicking the change button and SQL Developer shows the Preferences window.
    Because the line terminator value is a global setting (this value is used for every report) I'm wondering why you can change the line terminator value in version 1.1 from every result set cell? You can also use the main menu Alt-Tools Preferences. I find the version 1.0 drill down capability much more intuitive and easier to use than the version 1.1 implementation.
    With kind regards,
    Jornica

    This is exactly the same problem I have.
    Not able to start remote debug listener

  • [2.1.1-64] Right-clicking to "Copy" text in Script Output and other windows

    Right-clicking should bring up a menu to "Copy" text in Script Output. The short cut key for copy does work as a workaround.

    The tricky bit is knowing which story you want copied first. But you certainly don't want to involve system Events, or even copy and paste. This should get you started:
    tell application "Adobe InDesign CS4"
    set theSel to selection
    set thePage to parent of item 1 of selection
    set emptyFrame to text frame 1 of thePage whose contents = ""
    duplicate parent story of item 1 of theSel to after insertion point 1 of emptyFrame
    duplicate parent story of item 2 of theSel to after insertion point 1 of emptyFrame
    end tell

  • Bug in right click selection in reports

    Build 22.71, on Linux and Windows.
    When I go to, for example, the sessions report, and right click on a row which I want to invoke a trace session command on, the whole column where I right clicked get selected, so it does not correctly indicate to the user which session will have trace enabled on.

    Add mouselistener:
    MouseListener ml = new MouseAdapter() {
          public void mousePressed(MouseEvent e) {
             if (SwingUtilities.isRightMouseButton(e)) {
               doSomething();
          }//mousePressed
          public void mouseReleased(MouseEvent e) {
            if (SwingUtilities.isRightMouseButton(e)) {
              doSometing();
          }//mouseReleased
        };//mouseListener
        myList.addMouseListener(ml);

  • 17, Yes. 17 items in Skype Desktop's Right Click Menu but not one for REPORT

    Thank you for the post. There are literally SEVENTEEN options in the menu when you right click on a Recent Contact but Skype (Microsoft really, and my recent former employer, in the interest of full disclosure), is spammers best friend as it hides the REPORT ABUSE option inside the BLOCK option making people have to hunt for answers. Every new release of Skype under Microsoft has seen the quality of the audio/video get better (maybe because our laptops and bandwidth ar so much better anyway than a few years ago) but the UI and UX have goten worse and worse. And to this day anyone can associate your email address with any Skype ID you did NOT create, and even in 2015 Skype does not send a validation email and just associates [e-mail removed for privacy and security] to Tom, **bleep**, Harry, Scammer, Spammer, Jerk, and any user ID you would not want to be associated with. Shame. Imranhttp://blog.imran.com

    Jatra wrote:  <item label="Libre Office">
      <item label="Libre Office" icon=/usr/share/icons/gnome/16x16/apps/libreoffice-main.png
        <action name="Execute">
          <command>libreoffice</command>
         </action>
      </item>
    There are two <item label="Libre Office"> lines and the second one doesn't have the terminating '>' character ...

Maybe you are looking for

  • SAP Business One Table

    Hello, I would like to briefly tell you about Table Management function in B1SD. You can easily manage tables and fields by B1SD. Managing various databases? Let's say that you are a system manager of various numbers of sites and you need to either c

  • System Settings - Problem: New Window occurs

    Hi all, can you help me? - If I start "Systemeinstellungen" (System settings?) and change to "Network" a new window occurs with the text: "Ihre Netzwerkeinstellungen wurden von einem anderen Programm geändert" (your network-settings were changed by a

  • SAP Online Pdf Files - 4.7 v

    Hi, Can any one pls tell me where can I find the SAP ABAP online pdf files for 4.7 version for different topics. Is there any link in help.sap.com from where I can download the pdf file for any topic in ABAP. If so please tell me the link from where

  • TCP connectivity of subnet error : pre installation check  oracle 11.2 RAC

    Hi, I am trying to setup RAC 11.2 on Centos 5.7. When I run the preinstallation check, I am getting this error: Check: Node connectivity of subnet "192.168.210.0" Source Destination Connected? rac2[192.168.210.102] rac1[192.168.210.101] yes Result: N

  • RF guns had a error message

    Hi Guys Whenever RF guns had a error message (e: verrouillage OT) as the users wanted to scan the TOs numbers. we must login in SAP individually with every user id in order to interrupt (Kill) the opened Session on the scanner(RF Gun) Then one could