How to enable ctrl+Space in Eclipse UI5

I am working on a sample UI5 application to change the theme of an application. I have some exposure using eclipse and must appreciate for Content assist feature (ctrl + Space) which suggests the appropriate values. But when i try with eclipse Juno to change the property of theme using Ctrl + Space , not getting any suggestions .
Is there something i was missing ? or a bug with my eclipse / Ui5 plugin ?

setting looks correct. try to type new sap.ui. and ctrl+space in script tag as shown below.
<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
    <title>Test</title>
    <!-- 1.) Load SAPUI5 (from a remote server), select theme and control library -->
    <script id="sap-ui-bootstrap"
        src="resources/sap-ui-core.js"
        data-sap-ui-theme="sap_platinum"
        data-sap-ui-libs="sap.ui.commons"></script>
    <!-- 2.) Create a UI5 button and place it onto the page -->
    <script>
    new sap.ui.
    </script>
</head>
<body class="sapUiBody">
    <!-- This is where you place the UI5 button -->
    <div id="content"></div>
</body>
</html>
it should start showing proposals.
Regards,
Chandra

Similar Messages

  • HT201364 How can I reduce space on the startup disc to enable the download of Mavericks?

    How can I reduce space on the startup disc to enable the download of Mavericks?  I have enough overall disc space but the update won't download and tells me to reduce "startup" disc space.

      I have enough overall disc space but the update won't download and tells me to reduce "startup" disc space.
    How much free space do you have?
    This warning usually indicates, that your free disk space is critically low.
    Empty you Trash, delete files that you do not need at all, and move large media files, like iPhoto libraries or videos to an external drive.

  • How to enable excel downloading in ALV grid report.

    Hi all,
    How to enable excal downing in ALV grid report?
    Thanks in Advance.
    Siva Sankar.

    hi
    check the following code
    Example of a Simple ALV Grid Report
    REPORT  ZTUFI091                                .
    *& Report  ZDEMO_ALVGRID                                               *
    *& Example of a simple ALV Grid Report                                 *
    *& The basic requirement for this demo is to display a number of       *
    *& fields from the EKKO table.                                         *
    *REPORT  zdemo_alvgrid                 .
    TABLES:     ekko.
    type-pools: slis.                                 "ALV Declarations
    *Data Declaration
    TYPES: BEGIN OF t_ekko,
      ebeln TYPE ekpo-ebeln,
      ebelp TYPE ekpo-ebelp,
      statu TYPE ekpo-statu,
      aedat TYPE ekpo-aedat,
      matnr TYPE ekpo-matnr,
      menge TYPE ekpo-menge,
      meins TYPE ekpo-meins,
      netpr TYPE ekpo-netpr,
      peinh TYPE ekpo-peinh,
    END OF t_ekko.
    DATA: it_ekko TYPE STANDARD TABLE OF t_ekko INITIAL SIZE 0,
          wa_ekko TYPE t_ekko.
    *ALV data declarations
    data: fieldcatalog type slis_t_fieldcat_alv with header line,
          gd_tab_group type slis_t_sp_group_alv,
          gd_layout    type slis_layout_alv,
          gd_repid     like sy-repid,
          gt_events     type slis_t_event,
          gd_prntparams type slis_print_alv.
    *Start-of-selection.
    START-OF-SELECTION.
    perform data_retrieval.
    perform build_fieldcatalog.
    perform build_layout.
    perform build_events.
    perform build_print_params.
    perform display_alv_report.
    *&      Form  BUILD_FIELDCATALOG
          Build Fieldcatalog for ALV Report
    form build_fieldcatalog.
    There are a number of ways to create a fieldcat.
    For the purpose of this example i will build the fieldcatalog manualy
    by populating the internal table fields individually and then
    appending the rows. This method can be the most time consuming but can
    also allow you  more control of the final product.
    Beware though, you need to ensure that all fields required are
    populated. When using some of functionality available via ALV, such as
    total. You may need to provide more information than if you were
    simply displaying the result
                  I.e. Field type may be required in-order for
                       the 'TOTAL' function to work.
      fieldcatalog-fieldname   = 'EBELN'.
      fieldcatalog-seltext_m   = 'Purchase Order'.
      fieldcatalog-col_pos     = 0.
      fieldcatalog-outputlen   = 10.
      fieldcatalog-emphasize   = 'X'.
      fieldcatalog-key         = 'X'.
    fieldcatalog-do_sum      = 'X'.
    fieldcatalog-no_zero     = 'X'.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'EBELP'.
      fieldcatalog-seltext_m   = 'PO Item'.
      fieldcatalog-col_pos     = 1.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'STATU'.
      fieldcatalog-seltext_m   = 'Status'.
      fieldcatalog-col_pos     = 2.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'AEDAT'.
      fieldcatalog-seltext_m   = 'Item change date'.
      fieldcatalog-col_pos     = 3.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'MATNR'.
      fieldcatalog-seltext_m   = 'Material Number'.
      fieldcatalog-col_pos     = 4.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'MENGE'.
      fieldcatalog-seltext_m   = 'PO quantity'.
      fieldcatalog-col_pos     = 5.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'MEINS'.
      fieldcatalog-seltext_m   = 'Order Unit'.
      fieldcatalog-col_pos     = 6.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'NETPR'.
      fieldcatalog-seltext_m   = 'Net Price'.
      fieldcatalog-col_pos     = 7.
      fieldcatalog-outputlen   = 15.
      fieldcatalog-datatype     = 'CURR'.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'PEINH'.
      fieldcatalog-seltext_m   = 'Price Unit'.
      fieldcatalog-col_pos     = 8.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
    endform.                    " BUILD_FIELDCATALOG
    *&      Form  BUILD_LAYOUT
          Build layout for ALV grid report
    form build_layout.
      gd_layout-no_input          = 'X'.
      gd_layout-colwidth_optimize = 'X'.
      gd_layout-totals_text       = 'Totals'(201).
    gd_layout-totals_only        = 'X'.
    gd_layout-f2code            = 'DISP'.  "Sets fcode for when double
                                            "click(press f2)
    gd_layout-zebra             = 'X'.
    gd_layout-group_change_edit = 'X'.
    gd_layout-header_text       = 'helllllo'.
    endform.                    " BUILD_LAYOUT
    *&      Form  DISPLAY_ALV_REPORT
          Display report using ALV grid
    form display_alv_report.
      gd_repid = sy-repid.
      call function 'REUSE_ALV_GRID_DISPLAY'
           exporting
                i_callback_program      = gd_repid
                i_callback_top_of_page   = 'TOP-OF-PAGE'  "see FORM
                i_callback_user_command = 'USER_COMMAND'
               i_grid_title           = outtext
                is_layout               = gd_layout
                it_fieldcat             = fieldcatalog[]
               it_special_groups       = gd_tabgroup
                it_events               = gt_events
                is_print                = gd_prntparams
                i_save                  = 'X'
               is_variant              = z_template
           tables
                t_outtab                = it_ekko
           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.
    endform.                    " DISPLAY_ALV_REPORT
    *&      Form  DATA_RETRIEVAL
          Retrieve data form EKPO table and populate itab it_ekko
    form data_retrieval.
    select ebeln ebelp statu aedat matnr menge meins netpr peinh
    up to 10 rows
      from ekpo
      into table it_ekko.
    endform.                    " DATA_RETRIEVAL
    Form  TOP-OF-PAGE                                                 *
    ALV Report Header                                                 *
    Form top-of-page.
    *ALV Header declarations
    data: t_header type slis_t_listheader,
          wa_header type slis_listheader,
          t_line like wa_header-info,
          ld_lines type i,
          ld_linesc(10) type c.
    Title
      wa_header-typ  = 'H'.
      wa_header-info = 'EKKO Table Report'.
      append wa_header to t_header.
      clear wa_header.
    Date
      wa_header-typ  = 'S'.
      wa_header-key = 'Date: '.
      CONCATENATE  sy-datum+6(2) '.'
                   sy-datum+4(2) '.'
                   sy-datum(4) INTO wa_header-info.   "todays date
      append wa_header to t_header.
      clear: wa_header.
    Total No. of Records Selected
      describe table it_ekko lines ld_lines.
      ld_linesc = ld_lines.
      concatenate 'Total No. of Records Selected: ' ld_linesc
                        into t_line separated by space.
      wa_header-typ  = 'A'.
      wa_header-info = t_line.
      append wa_header to t_header.
      clear: wa_header, t_line.
      call function 'REUSE_ALV_COMMENTARY_WRITE'
           exporting
                it_list_commentary = t_header.
               i_logo             = 'Z_LOGO'.
    endform.
          FORM USER_COMMAND                                          *
          --> R_UCOMM                                                *
          --> RS_SELFIELD                                            *
    FORM user_command USING r_ucomm LIKE sy-ucomm
                      rs_selfield TYPE slis_selfield.
    Check function code
      CASE r_ucomm.
        WHEN '&IC1'.
      Check field clicked on within ALVgrid report
        IF rs_selfield-fieldname = 'EBELN'.
        Read data table, using index of row user clicked on
          READ TABLE it_ekko INTO wa_ekko INDEX rs_selfield-tabindex.
        Set parameter ID for transaction screen field
          SET PARAMETER ID 'BES' FIELD wa_ekko-ebeln.
        Sxecute transaction ME23N, and skip initial data entry screen
          CALL TRANSACTION 'ME23N' AND SKIP FIRST SCREEN.
        ENDIF.
      ENDCASE.
    ENDFORM.
    *&      Form  BUILD_EVENTS
          Build events table
    form build_events.
      data: ls_event type slis_alv_event.
      call function 'REUSE_ALV_EVENTS_GET'
           exporting
                i_list_type = 0
           importing
                et_events   = gt_events[].
      read table gt_events with key name =  slis_ev_end_of_page
                               into ls_event.
      if sy-subrc = 0.
        move 'END_OF_PAGE' to ls_event-form.
        append ls_event to gt_events.
      endif.
        read table gt_events with key name =  slis_ev_end_of_list
                               into ls_event.
      if sy-subrc = 0.
        move 'END_OF_LIST' to ls_event-form.
        append ls_event to gt_events.
      endif.
    endform.                    " BUILD_EVENTS
    *&      Form  BUILD_PRINT_PARAMS
          Setup print parameters
    form build_print_params.
      gd_prntparams-reserve_lines = '3'.   "Lines reserved for footer
      gd_prntparams-no_coverpage = 'X'.
    endform.                    " BUILD_PRINT_PARAMS
    *&      Form  END_OF_PAGE
    form END_OF_PAGE.
      data: listwidth type i,
            ld_pagepos(10) type c,
            ld_page(10)    type c.
      write: sy-uline(50).
      skip.
      write:/40 'Page:', sy-pagno .
    endform.
    *&      Form  END_OF_LIST
    form END_OF_LIST.
      data: listwidth type i,
            ld_pagepos(10) type c,
            ld_page(10)    type c.
      skip.
      write:/40 'Page:', sy-pagno .
    endform.
    hope it will help you
    regards
    sreelatha gullapalli

  • How to Enable MMS without BIS

    How to enable MMS without BIS
    This guide is for you if:
    you have an BlackBBerry OS 7 device on a regular (non-BIS) data plan
      and
      2. you cannot send MMS (multimedia) messages.
    Getting MMS working requires you to split, hex edit, merge and install service books, so read through the instructions and decide whether you’re up to it. I’ve attempted to explain everything as clearly as possible, but it’s a complex process and requires you to follow instructions carefully.
    It's worth asking your carrier if they can just enable MMS for you. If they can and will, you don't need this guide.
    Notes:
    The process described here may also work on earlier devices with OS 4, 5, and 6, but I don’t have those devices to test.
    Many carriers require you to have a data plan in order to send MMS messages. If you don’t have one, this guide may not help you.
    Depending on your cellular plan, sending MMS messages may involve extra charges.
    Preparation: Before You Get Started
    Software
    First, you need some tools to do the work. Download and install these three programs on your computer:
    MagicBerry 3.5 (here)
    A Hex editor (I like HxD, here)
    BlackBerry Desktop (link)
    Service Books
    You will also need a copy of the service books attached to post #1 in this thread over at CrackBerry. Extract the contents of the .zip file to a location of your choice.
    MMS Configuration Information
    Once you have the tools and service books, you need to get the MMS configuration information from your cellular carrier.
    Specifically, you need three settings: MMS Proxy, MMSC, and APN. Search on Google for something like, “MMS settings for [insert your cellular carrier’s name here]” and you should find them. Note that you also need the port number for the MMS Proxy. It should be there on the settings page.
    Note: if the port number for your MMS Proxy is in the 9000s, this process probably won’t work, since your cell carrier may be using the older WAP 1.2 specification. If anyone runs across this, let me know, and I’ll try to help you out.
    A Note on MagicBerry
    MagicBerry is an .ipd file editor. Service books, like the ones responsible for MMS, are .ipd files. The logical conclusion would be that you could edit service books with MagicBerry. But MagicBerry only shows you certain pre-set fields within the .ipd file. As a result, you can't see or edit a lot of the information in the service book. Even worse, if you do edit a service book file with MagicBerry, that unseen information is not saved, so you end up deleting it and rendering the service book useless.
    MagicBerry does have good uses, though: it splits and merges service book files perfectly. In fact, it is the best tool for splitting and merging service books, which is why you downloaded a copy.
    Due to MagicBerry’s limitations, you’re going to edit the files with the hex editor.
    Let’s get started!
    The MMS How-to Guide
    Step 1: Split the .ipd Files
    Start MagicBerry, click File > Open, and open the tmo_servicebooks.ipd file.
    Click Manipulate > Split.
    Tick the box for the MMS Config 2.0 file.
    Press “Split Selected,” enter a file name (and select a directory, so you know where the file is being saved), and press “Save.” Name the file “MMS_Config_20” so that you easily recognize it.
    Note: there are "MMS Config" and "MMS Config 2.0" service books in the tmo_servicebooks.ipd file. Make sure you select the 2.0 version.
    Step 2: Hex Edit the MMS Config 2.0 File
    Now, start your hex editor and open the “MMS_Config_20.ipd” file. It will look like this, without the highlights and bolding. I’ve added those so that it will be easier to provide instructions on editing.
    Hex Editing Basics
    In the HEX editor, the blue numbers don’t matter to you (they’re just column and row labels). Only the black ones are part of the file.
    The bytes (the two-character pairs) on the left side are all numbers, expressed in hexadecimal or “base-16”. The same information is expressed in ANSI characters on the right side.
    The basics of hexadecimal numbering are that you count as follows:
    Base-16 (hexadecimal):  1 2 3 4 5 6 7 8 9  A  B  C   D  E  F  10
    Base-10 (decimal):         1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
    So in the two-character byte pair, 0D = 13, 1F = 31, 50 = 80, etc. If you can figure out those conversions, you’re good. If not, google hexadecimal numbering, and spend some time at a lesson. You need to understand how hex works to do this. There are also decimal to hexadecimal converters online. Use them to check your work, or to do the conversion work for you.
    You can edit the file from either side of the hex editor. As you edit the information on one side, you’ll see it automatically changing on the other as well.
    It’s easier to edit the information in the green, turquoise, and red fields on the right side.
    The information in the grey, yellow, and pink fields must be edited from the left (hex) side, because it’s the hex value that matters, and it shows up as periods or jibberish on the right side. All those “dots” on the right side are not identical when you look over at the left side. They’re actually very different values. The nonsensical letters on the right side are likewise meaningful values on the left side.
    It’s not a bad idea to just spend some time playing around in the hex editor before you move on. When you’re done, close the file without saving it, and the changes you make while experimenting won’t be made permanent.
    Editing the File
    The green blocks: enter your MMS proxy in each one, with the port number following the colon. Add to or delete bytes from the highlighted field if necessary, but whatever you do, do not write over or delete bytes outside the highlighted field! Those bytes contain necessary information, and if they are not there, the service book will not work. The same rule holds true for all of the other edits. You must stay within the highlighted fields. To delete bytes, just press delete. To insert bytes, position the cursor, and go to Edit > Insert Bytes on the menu bar, and choose the number of bytes to insert. If you’re using HxD hex editor, ctrl-z will undo a mistake. It also makes your changes in red, which makes them a little easier to follow. As with all programming, the work has to be perfect. There can be no mistakes. Check everything you do carefully.
    The turquoise block: enter the MMSC address here.
    The red block: enter your APN here.
    The yellow blocks: total number of bytes in the highlighted green, turquoise, or red range that follows. Adjust it when you’ve finished editing. The number must be expressed in HEX of course. Use a decimal to hexadecimal converter online if you prefer that.
    The pink blocks: the total number of bytes in the bolded range that follow (again, in hex). Adjust it when you’re finished editing the field.
    The grey block: a count of the total number of bytes that follow it. In the original file, the value is 30 01 00 00, which breaks down as: 30(hex)=48 01(hex)=256. The total (48+256) is 304. If the number of bytes following the grey block was less than 256, there would be no 01 in the second place. For example, if there were 226 bytes following the block, the grey block would look like this: E2 00 00 00. When you are finished editing the entire file, go back and adjust the number in the grey block accordingly.
    Once you’re done, save the file.
    Step 3: Merge the MMS Config 2.0 and Wap Push Config Service Books
    Open the “MMS_Config_20.ipd” file in MagicBerry
    Once you’ve opened the file, click Manipulate > Merge.
    Tick the box for the MMS Config 2.0 file.
    On the right side of the “Merge” window, where it says, “Choose second IPD file,” press the button with the three dots.
    Choose the tmo_servicebooks.ipd file.
    Tick only the box for the “Wap Push Config” service book.
    Press “Merge Selected,” enter a file name (and select the directory if necessary), and press “Save.”
    Close MagicBerry
    Step 4: Backup Your Phone
    This is mandatory. You’ll need the backup file for step 6.
    You need to have BlackBerry Desktop installed on your computer. If you haven’t done that yet, do it.
    Connect your BlackBerry device to your computer with a USB cable. If BlackBerry Desktop does not start automatically, start it.
    Do a backup. Just hit “Back up now” and follow the prompts. Do a full backup. Once you’re done, go to step 5.
    Step 5: Merge the combined MMS Config 2.0/Wap Push Config service book file with your existing service books
    Open MagicBerry
    Press File > Open and at the bottom of the Open dialogue window beside the File name box, change “IPD Files (.ipd)” to “BBB Files (.bbb)”. Navigate to the folder where you stored your backup, and open it. It might take a while to open.
    Click Manipulate > Merge.
    Go down the list on the left hand side and tick the checkboxes for the service book entries (they will be way down). If there are service books listed for MMS Config or Wap Push Config, uncheck those boxes.
    On the right side of the “Merge” window, where it says, “Choose second IPD file,” press the button with the three dots. Choose your merged MMS Config 2.0/Wap Push Config file.
    Press “Merge Selected,” enter a file name (and select the directory if necessary), and press “Save.”
    Optional: You can merge the newly created file again with any other service books you may need – such as the Anworm service books for the browser mentioned in my thread on CrackBerry. Just follow the process used in step 3.
    Step 6: Install the Service Books to your phone:
    Connect your BlackBerry to your computer with a USB cable if it isn’t still connected.
    On your BlackBerry, go to Options > Device > Advanced System Settings > Service Book
    Hold down the “Alt” key and press S B E B. You should see a message that says, “Legacy SB Restore Enabled.” Press Okay.
    On your computer, open BlackBerry Desktop.
    Go to Device > Restore.
    Press “Change” and navigate to the folder with the merged .ipd file you created. Press “OK.” You should now see the file listed in the Restore window.
    Click on the merged .ipd file you created to select it.
    Under the heading “Select Data to Restore,” select “Select Device Data and Settings” and then tick the box for “Service Book.” This step is really important. Make sure it's done right. If you screw it up you could end up wiping a lot of settings and data.
    Press “Restore” and answer “Yes” to the confirmation dialogue.
    Close the BlackBerry Desktop software, disconnect your device, and do a battery pull to reboot.
    Voila! If everything went well, you should have MMS capabilities. Test your ability to send and receive multimedia by sending yourself a picture message. You should receive the message within about 10 seconds.
    If it doesn’t work, go back and make sure EVERYTHING in the file is done perfectly. If you find a problem, fix it, merge the files again, and reinstall the service books.
    Solved!
    Go to Solution.

    Why not just ask carrier to enable MMS? I know T-Mobile can and will do it, even if there is no data plan at all on the line. We did it for my daughter and I know T-Mobile has done it for others. I assume other carriers do the same, but don't know....Which is why I ask.
    - Ira

  • Spotlight shortcut does not work (ctrl + space)

    Spotlight shortcut does not work. When I press ctrl + space, nothing happen. When I click on magnifier icon by mouse, everything work well.
    In Spotlight configuration and also in keyboard shortcut configuration this shortcut is present and marked as active.
    I've also tried to disable and enable back this shortcut but it still not work.

    Hello Zeleznypa,
    For me, the default shortcut for Spotlight is Command - Space (not Control Space).
    OS X Yosemite: Spotlight keyboard shortcuts
    Open Spotlight to start a search  Command (⌘)-Space bar
    Open a Finder window with the search field selected  Option-Command (⌘)-Space bar
    I changed the shortcut in System Preferences to Control Space and it still worked with that.
    Could you check your keyboard with the Keyboard Viewer?
    OS X Yosemite: Use the Keyboard Viewer
    Take care,
    Nubz

  • How to enable the screen after triggering the error message

    Hi All,
    we have a tcode IW31, in that one field(WBS element -PROID) is not mandatory. so we have written the following code to make it mandatory in a user exit EXIT_SAPLCOIH_010.It's triggering the error message, but it is going into disable mode. Please sugget me how to enable the screen after getting the error message triggering.
    if not caufvd_imp-proid is initial.
      select single * from t350 into wa_t350
              where  auart    = caufvd_imp-auart
                and  imord    = 'X'.
      if sy-subrc is initial.
        pspel = caufvd_imp-proid.
      else.
        call function 'CONVERSION_EXIT_ABPSP_OUTPUT'
             exporting
                  input  = caufvd_imp-proid
             importing
                  output = l_posid.
        concatenate text-t10 l_posid text-t11
                    into l_textline1 separated by space.
        message i208(00) with l_textline1.
      endif.
    else.
      message e208(00) with 'Please maintain WBS element in Location Tab'.
    endif.
    Thanks

    Hi,
    Instead of error message use status message like
    message s208(00) with 'Please maintain WBS element in Location Tab'.
    Leave to screen sy-synnr.
    This will allow to move to the screen and have in enable mode.
    WIth Regards,
    Dwaraka.S
    Edited by: Dwarakanath Sankarayogi on Feb 13, 2009 7:46 AM

  • How to Debug ATG Apllication in eclipse juno

    Hi ,
    Am new to ATG,
    I have existing project which i imported using import option. can any one please let me know
    1.Settings for debug in eclipse.
    2.how to debug ATG application in eclipse with weblogic.
    Am using weblogic 10.3.6 server and IDE is eclipse juno Service Release 1.
    Thanks
    Srinivas A

    Thanks for the replies.
    I have done the following as per the link given:
    1.set a debugFlag =true in setDomainEnv.bat in bin folder of weblogic. JaVa options are
    already set with port no 8453 and based on flag value, the debug java options are set at server startup.
    2.I started weblogic. It started successfully in debug mode.
    3.in eclipse I have created remote configuration under remote java application for my project. Gave port as8453 and host as localhost and clicked debug.the server started.
    4..added some break points in code and generated ear file.
    Please correct the above steps whether I missed anything....
    5.I have created separated managed server called production(which run with port no 17010) through admin console and deployed the ear file to the managed server through admin console.
    5.started the managed server and tried to access the url localhost:17010/mystore.
    No debugging is performed.
    Please let me know
    1.how to deploy the ear file in managed serverfrom eclipse and debug the same from eclipse.
    2.should I use the debug port 8453 or the managed server port for debugging?
    3.in my atg app,they are using out of box debug option.do I require to set any flag to enable application level debug or not required.if required let me know the settings
    Thanks
    Srinivas
    Happy new year to all!!!!!!!!!!!
    Edited by: 972474 on 31 Dec, 2012 9:31 PM

  • Key Press CTRL+Space

    How do I view a JInternalFrame by pressing CTRL+Space from a JTextFeild in another JInternalFrame? Using isControlDown() works but throws NullPointerException. Can it be done by using KeyStroke ? If Yes then how?

    Thanks! I changed the InternalFrame which I wanted to see after pressing. I used A JPanel in which there is a JList. What I tried is pretty simple and like this
    private void jTextFieldlBankIDKeyPressed(java.awt.event.KeyEvent evt) {
    try{
    int keyCode=evt.getKeyCode();
    int modifier=evt.getModifiers();
    int iSpace=java.awt.event.KeyEvent.VK_SPACE;
    if(evt.isControlDown()&& keyCode==iSpace){
    jPanel2.setVisible(true);
    //setValueAtTheList();
    //jList1.grabFocus();
    System.out.println("Key Pressed");
    }catch(NullPointerException e){
    I got what I need but the exception is there like before,
    java.lang.NullPointerException
    at javax.swing.plaf.basic.BasicInternalFrameUI$1.actionPerformed(BasicInternalFrameUI.java:153)
    at javax.swing.SwingUtilities.notifyAction(SwingUtilities.java:1502)
    at javax.swing.JComponent.processKeyBinding(JComponentKey Pressed
    .java:2422)
    at javax.swing.KeyboardManager.fireBinding(KeyboardManager.java:253)
    ������������.

  • Ctrl+Space (Move Tool) : Erratic behaviour?

    Ok, I've been searching the net for an hour now and can't find the solution anywhere, I'm coming here for backup.
    I've been using the Ctrl+Space shortcut for a while and this particular issue is plaguing me since CS4 (Scrubby/Animated Zoom introduction).
    Usually, I use Ctrl+Space while on the move tool to smooth-pan around in a zoomed in document. But sometimes, it will zoom the document entirely out and allow me to drag some kind of marquee representing the size of my zoomed view so I can move around like if I were using the navigator. If it happens and I do not let go the space key, I can zoom entirely out and in at will.
    It happens mostly when I toggle hastily between the zoom tool and the move tool while zooming, panning (back and forth) the document a lot so I must make a weird combination unwillingly (something like z+space or v+space maybe).
    Anybody knows what is happening? I've tried all the combinations of modifiers and can't trigger the feature willingly.
    It's pretty annoying expecting to pan away and instead being zoomed out entirely. It feels confusing... like some entity is sucking me all the way to the sky without warning, then tossing me back on the ground somewhere I definitely didn't expect to be.
    Thanks.
    Edit:
    Ok I've found some kind of a trail:
    Temporarily zoom an image
    Hold down the H key, and then click in the image and hold down the mouse button. The current tool changes to the Hand tool, and the image magnification changes as follows:
    If the entire image originally fit within the document window, the image zooms in to fit the window.
    If only a portion of the image was originally visible, the image zooms out. Drag the zoom marquee to magnify a different part of the image.
    Release the mouse button and then the H key. The image returns to the previous magnification and tool.
    Source: http://help.adobe.com/en_US/photoshop/cs/using/WSfd1234e1c4b69f30ea53e41001031ab64-74e0a.h tml#WSA6DF9C40-CEA8-4cfd-9A8B-44108E2975DD
    Seems like my combination of keys leaks to this feature: If I hold out H while dragging the mouse, it gives out the exact same behaviour I try to avoid but in my case, it happens when I press Space.
    If anyone understands why my Space key behaves like the H key sometimes erratically, I'd really appreciate it.

    Yes thank you Dennis. Got to appreciate that expressing something externally often allows to find solutions just by thinking outside the normal train of thoughts.
    I've also found out that if you are on any other tool but the move tool, pressing V+Space somehow "leaks" the H shortcut and mimics the behaviour. My particular problem does not require me to hold V (Only Space) but I expect it is a related issue.
    Well, no solution possible in the near future except stop going all "Speedy Gonzales" on my shortcuts.
    At least now we know how to reproduce the issue.

  • How to set color space to JPEG image with Java advance Imaging

    How to set color space to JPEG image with Java advance Imaging.
    is there any API in JAI which support to set color space.

    I'm definately no guru, but this is how you can change it.
    CTRL + ALT + Click on the part of the component that you want to change. This brings up the Hidden Dom Inspector, background of component will be surrounded with a red outline (Make sure the red outline is surrounding the part of the tabset you want to change), Now you go to properties sheet and click the ellipses next to rules property this will pop up a dialog you look in this list (At the top) to see the default style classes that are affecting the rendering of the component outlined in red. (You will be able to select different sections of a single component) then you just rewrite the style class that you want to change in your Stylesheet (You will not find the styleclass that you want to change because it is a part of your theme .jar but as long as you name it exactly the same and place in your stylesheet it will override the theme .jar style classes) it's actually very easy -- you were right should be a piece of cake for a guru. Don't have the link handy but you can check out Winston's Blog on changing Table Formatting to get this information...It is EXTREMELY useful if you want your apps to have a custom look and not default that comes with Creator Themes.
    Hope this helps you out God knows others have helped me alot!
    Jason

  • How to Enable Color Management? (DV Compression Is Lightening Gamma)

    This problem has plagued me with both After Effects and Premiere. I have a project with a number of .mpeg video files (I know MPEG is a bad file choice, but it's not causing the problem--I tested this with uncompressed media also). In AE, I have a darkly lit scene with gamma turned down to produce pure blacks in the shadowy areas. When I render as DV, Windows Media, or QuickTime and play the resulting file in Windows Media Player or Media Player Classic, the file has rather ugly dark grays where pure blacks should be. I read the article on color management and thought I had found the problem, but the "Use Display Color Management" option is grayed out and I've been unable to re-enable it.
    Also, I don't know if this is of any major value, but the DV and Windows Media file versions look the same in Windows Media Player as they do in Media Player Classic. QuickTime files look slightly better in Classic than in the default QT player. This issue is especially confusing since the article only acknowledged that this can happen with QuickTime, whereas I'm having this problem with all formats except uncompressed. Thanks!

    > How do I enable display color management?
    Have you enabled color management for the project (i.e., selected a working color space for the project)? If not, please read
    "Choose a working color space and enable color management" for an explanation of how to enable color management for a project.
    "Enable or disable display color management" contains information on managing colors using your monitor's color profile.
    You said that you read "the article on color management", by which I presume that you mean the "Color Management Workflow" white paper on the Adobe Design Center website. That paper links to the
    "Color management" section of After Effects CS3 Help on the Web and presumes that you'll consult that document for some of the basic underlying concepts and detailed procedures.
    > And I guess it's a redundant question, but are the answers to this issue the same for Premiere as for AE?
    Premiere Pro does not do color management.

  • How to enable ibus in console?(finished)

    When I open the terminal console, I just want to use ibus to type.But after I use Ctrl+Space , I found that the ibus program didn't work.How can I use ibus in console?
    Last edited by metaphor (2012-02-22 17:33:32)

    Gcool wrote:Which terminal application do you use? Which WM/DE do you use? Does ibus work correctly in other applications you use?
    Thank you! I have solved the problem. I just forgot to append these lines in ~/.bashrc .
    after I add these
    export GTK_IM_MODULE=ibus
      export XMODIFIERS=@im=ibus
      export QT_IM_MODULE=ibus
    ibus work perfectly with the terminal.

  • Agent Collection disabled by upload manager - how to enable it

    Hi
    I am using EM grid control agent 10.2.
    The upload is disabled in my machine.how to enable it?
    and the agent is UP for a few minutes and goes DOWN again.
    Can anyone help me on this please?
    Thanks and Regards
    C:\>emctl status agent
    Oracle Enterprise Manager 10g Release 10.2.0.1.0.
    Copyright (c) 1996, 2006 Oracle Corporation. All rights reserved.
    Agent Version : 10.2.0.1.0
    OMS Version : 10.2.0.1.0
    Protocol Version : 10.2.0.0.0
    Agent Home : D:\OraHome_2
    Agent binaries : D:\OraHome_2
    Agent Process ID : 1076
    Agent URL : https://monkey:3872/emd/main/
    Repository URL : https://jpdel15da.jp.oracle.com:1159/em/upload
    Started at : 2006-05-23 15:39:15
    Started by user : SYSTEM
    Last Reload : 2006-05-23 15:39:15
    Last successful upload : (none)
    Last attempted upload : (none)
    Total Megabytes of XML files uploaded so far : 0.00
    Number of XML files pending upload : 132
    Size of XML files pending upload(MB) : 74.84
    Available disk space on upload filesystem : 60.47%
    Collection Status : Disabled by Upload Manager
    Last successful heartbeat to OMS : 2006-05-23 15:41:12
    Agent is Running and Ready
    Message was edited by:
    user457188

    I'm getting the agent collection disable message too..I have this message in the secure.log file, how are we suppose to enable it?
    The Oracleagent10gAgent service is stopping...
    The Oracleagent10gAgent service was stopped successfully.
    [30-10-2009 11:10:26] USERINFO ::Agent successfully stopped... Done.
    [30-10-2009 11:10:26] USERINFO ::Securing agent... Started.
    2009-10-30 11:10:33,099 [main] INFO agent.SecureAgentCmd secureAgent.223 - Requesting an HTTPS Upload URL from the OMS
    2009-10-30 11:10:33,208 [main] INFO agent.SecureAgentCmd secureAgent.244 - Requesting an Oracle Wallet and Agent Key from the OMS...
    2009-10-30 11:10:33,208 [main] INFO agent.SecureAgentCmd secureAgentWithOMS.359 - Performing INIT
    2009-10-30 11:10:33,240 [main] INFO agent.SecureAgentCmd secureAgentWithOMS.382 - INIT operation succeded
    2009-10-30 11:10:33,240 [main] INFO agent.SecureAgentCmd secureAgentWithOMS.390 - Performing AUTH
    2009-10-30 11:10:33,411 [main] INFO agent.SecureAgentCmd secureAgentWithOMS.411 - AUTH operation succeded
    2009-10-30 11:10:33,458 [main] INFO agent.SecureAgentCmd secureAgent.248 - Check if HTTPS Upload URL is accessible from the agent...
    2009-10-30 11:10:33,833 [main] INFO agent.SecureAgentCmd secureAgent.256 - Upload URL is accessible
    2009-10-30 11:10:33,833 [main] INFO agent.SecureAgentCmd secureAgent.260 - Checking issuer hostname in the certificate...
    2009-10-30 11:10:33,849 [main] INFO agent.SecureAgentCmd getIssuerName.563 - OMS DN: CN=csdowgrid001.cspas.kp.org
    2009-10-30 11:10:33,849 [main] INFO agent.SecureAgentCmd getIssuerName.568 - Issuer CN: csdowgrid001.cspas.kp.org
    2009-10-30 11:10:33,849 [main] INFO agent.SecureAgentCmd secureAgent.266 - Configuring Agent for HTTPS
    2009-10-30 11:10:33,911 [main] INFO agent.SecureAgentCmd main.202 - Successfully secured the Agent.
    Oracle Enterprise Manager 10g Release 5 Grid Control 10.2.0.5.0.
    Copyright (c) 1996, 2009 Oracle Corporation. All rights reserved.
    The Oracleagent10gAgent service is starting.....
    The Oracleagent10gAgent service was started successfully.
    Agent Version : 10.2.0.5.0
    OMS Version : 10.2.0.5.0
    Protocol Version : 10.2.0.5.0
    Agent Home : D:\OracleHomes\agent10g
    Agent binaries : D:\OracleHomes\agent10g
    Agent Process ID : 3904
    Agent URL : https://CSDOWPDMS002.cs.msds.kp.org:3872/emd/main/
    Repository URL : https://csdowgrid001.cspas.kp.org:1159/em/upload
    Started at : 2009-10-30 11:10:38
    Started by user : SYSTEM
    Last Reload : 2009-10-30 11:10:38
    Last successful upload : (none)
    Last attempted upload : (none)
    Total Megabytes of XML files uploaded so far : 0.00
    Number of XML files pending upload : 36
    Size of XML files pending upload(MB) : 16.24
    Available disk space on upload filesystem : 87.98%
    Last attempted heartbeat to OMS : 2009-10-30 11:10:44
    Last successful heartbeat to OMS : unknown
    [30-10-2009 11:10:46] USERINFO ::Agent successfully restarted... Done.
    [30-10-2009 11:10:46] USERINFO ::Securing agent... Successful.

  • How to enable export option in oracle apps

    I have a custom form, which needs to export the data. File->Export option is disabled in all the responsibilities. How to enable this option only for this form?
    appreciate your help

    The Export function is disabled when the responsibility is opened initially .
    When we enter into a specific form its automatically enabled .
    Login to a user who has Application Developer responsibility & to Application >Register & press f11 and Ctrl f11 .

  • How to enable trace in DBMS_DATAPUMP

    Hi,
    I am running a data pump job using DBMS_DATAPUMP qhich will export all the schema data. When I run it on one test environment it runs successfully but on other environmnet which contians a lot of data it stops after expoting two tables.
    I just want to know is there any way by which I can monitor why it is taking so long or failing to export rest of the data?
    I heard we can use some trace command but i dont know which parameter is it in DBMS_DATAPUMP or how to enable it.
    Please advise.
    Regards
    -Vinod

    965358 wrote:
    Hi,
    I am running a data pump job using DBMS_DATAPUMP qhich will export all the schema data. When I run it on one test environment it runs successfully but on other environmnet which contians a lot of data it stops after expoting two tables.
    I just want to know is there any way by which I can monitor why it is taking so long or failing to export rest of the data?
    I heard we can use some trace command but i dont know which parameter is it in DBMS_DATAPUMP or how to enable it.
    Please advise.
    Regards
    -VinodExport/Import DataPump Parameter TRACE - How to Diagnose Oracle Data Pump [ID 286496.1]
    http://arjudba.blogspot.com/2009/04/how-to-tracediagnosis-oracle-data-pump.html
    by the way what do you mean by
    it stops after expoting two tables.no errors? no space issues i presume...what does dba_datapump_jobs show at that point?

Maybe you are looking for

  • How do I play all tracks on an album sequentially on iPod nano 6th generation ?

    I have an ipod nano 6th generation. I want to play all tracks on an album sequentially (as if I was playing a CD) without having to select each one in turn. On my ipod nano it repeats the same song and wont move to the next one automatically. can any

  • HT4623 ipag not showing up in windows or itune

    I used to be able to connect my windows8 with my ipad.  Now it will not sync or show up on my comptuer.  What can I do?

  • Sentinel 7/LM: events sub-queries, DB queries...

    Hi, Im using Sentinel 7 but I think that SLM works at the same way. I have an IDM workflow with tree forms: request, approval1 and approval2. I need show all the history based on my activities, ie: Activity0: requested by user1, date, request text; A

  • Problem in we19

    hi all.... i 've a problem in we19(test tool to generate idoc). my receiver port and partner no is not getting generated.... plz tell me the possible methods to hit the receiver port and partner no from the sender... thanks in advance...

  • Signal to noise ration for the attached signal

    Hi every body any one can help me to find the signal to noise ratio of the attached signal, and how to convert it to frequency domain. I know it is easy but it is not working with me since the power must have a main amplitude at the fundemental frequ