Changing alv_list programme into alv_grid

hi iam new to abap can anyone help me in converting a alv_list programme into alv_grid.I just need to know what r the changes i need to make.below is the code.
TYPE-POOLS: slis.
TYPES: BEGIN OF ty_mara       ,
         matnr TYPE mara-matnr,
         mtart TYPE mara-mtart,
       END OF ty_mara         ,
       BEGIN OF ty_makt       ,
         matnr TYPE makt-matnr,
         maktx TYPE makt-maktx,
       END OF ty_makt         ,
       BEGIN OF ty_final      ,
         mtart TYPE mara-mtart,
         matnr TYPE mara-matnr,
         maktx TYPE makt-maktx,
       END OF ty_final        .
*************************INTERNAL TABLES******************************
DATA: it_mara     TYPE TABLE OF ty_mara   ,
      it_makt     TYPE TABLE OF ty_makt   ,
      it_final    TYPE TABLE OF ty_final  ,
      it_fieldcat TYPE slis_t_fieldcat_alv,
      it_events   TYPE slis_t_event       .
*************************WORK AREAS***********************************
DATA: wa_mara     TYPE ty_mara          ,
      wa_makt     TYPE ty_makt          ,
      wa_final    TYPE ty_final         ,
      wa_fieldcat TYPE slis_fieldcat_alv,
      wa_layout   TYPE slis_layout_alv  ,
      wa_events   TYPE slis_alv_event   .
**************************VARIABLES***********************************
DATA: v_mtart TYPE mara-mtart,  "#EC NEEDED
      v_repid TYPE sy-repid  ,
      v_text  TYPE string    .
**************************CONSTANTS***********************************
CONSTANTS: c_zroh(4)              TYPE c VALUE 'ZROH'            ,
           c_x(1)                 TYPE c VALUE 'X'               ,
           c_02(2)                TYPE c VALUE '02'              ,
           c_04(2)                TYPE c VALUE '04'              ,
           c_06(2)                TYPE c VALUE '06'              ,
           c_mtart(5)             TYPE c VALUE 'MTART'           ,
           c_matnr(5)             TYPE c VALUE 'MATNR'           ,
           c_maktx(5)             TYPE c VALUE 'MAKTX'           ,
           c_it_final(8)          TYPE c VALUE 'IT_FINAL'        ,
           c_mara(4)              TYPE c VALUE 'MARA'            ,
           c_makt(4)              TYPE c VALUE 'MAKT'            ,
           c_l(1)                 TYPE c VALUE 'L'               ,
           c_user_command(12)     TYPE c VALUE 'USER_COMMAND'    ,
           c_alv_user_command(16) TYPE c VALUE 'ALV_USER_COMMAND',
           c_top_of_page(11)      TYPE c VALUE 'TOP_OF_PAGE'     ,
           c_alv_top_of_page(15)  TYPE c VALUE 'ALV_TOP_OF_PAGE' ,
           c_end_of_list(11)      TYPE c VALUE 'END_OF_LIST'     ,
           c_alv_end_of_list(15)  TYPE c VALUE 'ALV_END_OF_LIST' .
************************INITIALIZATION********************************
INITIALIZATION.
Initialize MTART at the selection screen
  PERFORM initialize_mtart.
*********************SELECTION SCREEN*********************************
  SELECTION-SCREEN BEGIN OF BLOCK blk1 WITH FRAME TITLE text-001.
  PARAMETERS: p_mtart TYPE mara-mtart.
  SELECTION-SCREEN END OF BLOCK blk1.
*********************AT SELECTION SCREEN******************************
AT SELECTION-SCREEN.
Validate MTART entered at the selection screen.
  PERFORM validate_mtart.
**********************START-OF-SELECTION******************************
START-OF-SELECTION.
Select all the required data
  PERFORM select_data.
Prepare final table
  PERFORM populate_final_tab.
**********************END-OF-SELECTION********************************
END-OF-SELECTION.
Prepare ALV settings for display
  PERFORM prepare_settings.
Display ALV Report
  PERFORM display_report.
**********************SUBROUTINES*************************************
*&      Form  initialize_mtart
      Subroutine to Initialize MTART at the selection screen.
FORM initialize_mtart .
  p_mtart = c_zroh.
ENDFORM.                    " initialize_mtart
*&      Form  validate_mtart
      This subroutine is to validate MTART entered at the
      selection screen.
FORM validate_mtart .
  SELECT SINGLE mtart
           FROM t134
           INTO v_mtart
          WHERE mtart = p_mtart.
If not found display error message
  IF sy-subrc <> 0.
    MESSAGE e014 WITH text-002.
  ENDIF.
ENDFORM.                    " validate_mtart
*&      Form  select_data
      This subroutine selects all the required data
FORM select_data .
  SELECT matnr
         mtart
    FROM mara
    INTO TABLE it_mara
   WHERE mtart = p_mtart.
  IF sy-subrc <> 0.
    MESSAGE i014 WITH text-003.
    LEAVE LIST-PROCESSING.
  ELSE.
    SORT it_mara BY matnr.
    SELECT matnr
           maktx
      FROM makt
      INTO TABLE it_makt
       FOR ALL ENTRIES IN it_mara
     WHERE matnr = it_mara-matnr
       AND spras = sy-langu.
    IF sy-subrc <> 0.
      MESSAGE i014 WITH text-004.
      LEAVE LIST-PROCESSING.
    ELSE.
      SORT it_mara BY mtart.
      SORT it_makt BY matnr.
    ENDIF.
  ENDIF.
ENDFORM.                    " select_data
*&      Form  populate_final_tab
      This subroutine prepares final internal table.
FORM populate_final_tab .
  LOOP AT it_mara INTO wa_mara.
    CLEAR wa_final.
    CLEAR wa_makt.
    READ TABLE it_makt INTO wa_makt
    WITH KEY matnr = wa_mara-matnr
    BINARY SEARCH.
    IF sy-subrc = 0.
      wa_final-mtart = wa_mara-mtart.
      wa_final-matnr = wa_mara-matnr.
      wa_final-maktx = wa_makt-maktx.
      APPEND wa_final TO it_final.
    ENDIF.
  ENDLOOP.
ENDFORM.                    " populate_final_tab
*&      Form  prepare_settings
      This subroutine prepares ALV settings for display
FORM prepare_settings .
Prepare layout
  CLEAR wa_layout.
  wa_layout-zebra = c_x.
Prepare fieldcat
  CLEAR wa_fieldcat.
  wa_fieldcat-col_pos       = c_02.
  wa_fieldcat-fieldname     = c_mtart.
  wa_fieldcat-tabname       = c_it_final.
  wa_fieldcat-ref_fieldname = c_mtart.
  wa_fieldcat-ref_tabname   = c_mara.
  wa_fieldcat-ddictxt       = c_l.
  wa_fieldcat-seltext_l     = text-005.
  wa_fieldcat-seltext_m     = text-005.
  wa_fieldcat-seltext_s     = text-005.
  APPEND wa_fieldcat TO it_fieldcat.
  CLEAR wa_fieldcat.
  wa_fieldcat-col_pos       = c_04.
  wa_fieldcat-fieldname     = c_matnr.
  wa_fieldcat-tabname       = c_it_final.
  wa_fieldcat-ref_fieldname = c_matnr.
  wa_fieldcat-ref_tabname   = c_mara.
  wa_fieldcat-ddictxt       = c_l.
  wa_fieldcat-seltext_l     = text-006.
  wa_fieldcat-seltext_m     = text-006.
  wa_fieldcat-seltext_s     = text-006.
  wa_fieldcat-hotspot       = c_x.
  APPEND wa_fieldcat TO it_fieldcat.
  CLEAR wa_fieldcat.
  wa_fieldcat-col_pos       = c_06.
  wa_fieldcat-fieldname     = c_maktx.
  wa_fieldcat-tabname       = c_it_final.
  wa_fieldcat-ref_fieldname = c_maktx.
  wa_fieldcat-ref_tabname   = c_makt.
  wa_fieldcat-ddictxt       = c_l.
  wa_fieldcat-seltext_l     = text-007.
  wa_fieldcat-seltext_m     = text-007.
  wa_fieldcat-seltext_s     = text-007.
  APPEND wa_fieldcat TO it_fieldcat.
Prepare Events table.
  CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
    EXPORTING
      i_list_type     = 0
    IMPORTING
      et_events       = it_events
    EXCEPTIONS
      list_type_wrong = 1
      OTHERS          = 2.
  IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.
  SORT it_events BY name.
  CLEAR wa_events.
  READ TABLE it_events INTO wa_events
  WITH KEY name = c_user_command
  BINARY SEARCH.
  IF sy-subrc = 0.
    wa_events-form = c_alv_user_command.
    MODIFY it_events
      FROM wa_events
     INDEX sy-tabix
TRANSPORTING form.
  ENDIF.
  CLEAR wa_events.
  READ TABLE it_events INTO wa_events
  WITH KEY name = c_top_of_page
  BINARY SEARCH.
  IF sy-subrc = 0.
    wa_events-form = c_alv_top_of_page.
    MODIFY it_events
      FROM wa_events
     INDEX sy-tabix
TRANSPORTING form.
  ENDIF.
  CLEAR wa_events.
  READ TABLE it_events INTO wa_events
  WITH KEY name = c_end_of_list
  BINARY SEARCH.
  IF sy-subrc = 0.
    wa_events-form = c_alv_end_of_list.
    MODIFY it_events
      FROM wa_events
     INDEX sy-tabix
TRANSPORTING form.
  ENDIF.
ENDFORM.                    " prepare_settings
*&      Form  display_report
      This subroutine calls FM to display report
FORM display_report .
  CLEAR v_repid.
  v_repid = sy-repid.
  CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
      i_callback_program = v_repid
      is_layout          = wa_layout
      it_fieldcat        = it_fieldcat
      it_events          = it_events
    TABLES
      t_outtab           = it_final
    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_report
*&      Form  alv_user_command
      This subroutine handles user command
FORM alv_user_command USING v_cmd       TYPE sy-ucomm
                            wa_selfield TYPE slis_selfield.  "#EC * "#EC CALLED
  CLEAR wa_final.
  READ TABLE it_final INTO wa_final
  INDEX wa_selfield-tabindex.
  CLEAR v_text.
  CONCATENATE text-008
              wa_final-matnr
         INTO v_text
    SEPARATED BY space.
Display to user which material he/she has clicked
  CALL FUNCTION 'POPUP_TO_DISPLAY_TEXT'
    EXPORTING
      titel        = text-009
      textline1    = v_text
      start_column = 25
      start_row    = 6.
ENDFORM.    "alv_user_command.
*&      Form  alv_top_of_page
      This subroutine writes top of page
FORM alv_top_of_page.   "#EC CALLED
  FORMAT COLOR COL_HEADING.
  ULINE AT /1(80).
  WRITE:/1 sy-vline,
         2 text-010,
         9 sy-datum,
        80 sy-vline.
  WRITE:/1 sy-vline,
         2 text-011,
         9 sy-uzeit,
        40 text-012,
        80 sy-vline.
  WRITE:/1 sy-vline,
         2 text-013,
         9 sy-uname,
        80 sy-vline.
  ULINE AT /1(80).
  FORMAT COLOR OFF.
ENDFORM.    "alv_top_of_page.
*&      Form  alv_end_of_list
      This subroutine writes end of list
FORM alv_end_of_list.   "#EC CALLED
  FORMAT COLOR COL_HEADING.
  ULINE AT /1(80).
  WRITE:/1 sy-vline,
         2 text-014,
        12 sy-pagno,
        80 sy-vline.
  ULINE AT /1(80).
  FORMAT COLOR OFF.
ENDFORM.    "alv_end_of_list.

Hi,
Now u need to use the FM ' Reuse_alv_grid_display insted of
the FM 'Reuse_alv_list_display.
regards,
S.Agarwal..

Similar Messages

  • Changing a software into a Labview Programme

    Hi all,
    I am new to LabView and would like some help in changing a software into a Labview Programme. 
    The PC software is a platform that enables a PC to control a R/C transmitter. It is written in C# therefore I need to change it into LabView for my project.
    For more information about the software you can download it from the following link: (http://www.min.at/prinz/?x=entry:entry130721-182227) 
    It is under the PC control software section.
    Thanks for all the help!!! 
    Attachments:
    TX Control.png ‏128 KB

    Welcome to my world.
    I have been working on a project (not a school project, a work project) for a while now to emulate a set of C/LabWindows programs to LabVIEW.
    "Why?" RavensFan asks. Because the software on the instruments we build needs rapid updating as the instruments are updated, doing this in C is always a major task (it is thought that using LabVIEW should [eventually] be quicker and less prone to error), and we are a small company which cannot afford the luxury of a staff of C and/or LabWindows programmers.
    But what RavensFan says is true. You have to figure out exactly what the C# program does and how to do the same thing in LabVIEW. You cannot do a transliteration by any means, it will come out like some of those old Japanese instrument manuals transliterated into English, and have just about as much use (i.e., none). But you have at least one thing in your favor, quite a bit of the C# code functionality can be replaced with very simple LabVIEW code.
    As to understanding the C# code, well, you just might have to grab one of your buddies and bribe him with pizza (the Universal Currency for students) to walk through it with you until you can understand the flow of the program. This may take more than one pizza and/or night.
    One thing, remember to make your LabVIEW code modular (i.e., using subVIs for common tasks) so you can (1) fix one bug and have it corrected in many places at once, and (2) build VIs which don't take up acres of screen real estate - there is little that is so frustrating (to me, anyway) as having to skip back and forth over a 9000x2600 pixel screen to troubleshoot code.
    Best of luck,
    Cameron
    To err is human, but to really foul it up requires a computer.
    The optimist believes we are in the best of all possible worlds - the pessimist fears this is true.
    Profanity is the one language all programmers know best.
    An expert is someone who has made all the possible mistakes.
    To learn something about LabVIEW at no extra cost, work the online LabVIEW tutorial(s):
    LabVIEW Unit 1 - Getting Started
    Learn to Use LabVIEW with MyDAQ

  • HT6030 Since I did the update, my mail-programm doesn't work no more. So I cannot send any eMail out or change the text into the eMail. Help, this is a catastrophe!!! Lukas Schmid

    Since I did the Mavericks-update, my mail-programm doesn't work no more. So I cannot send any eMail out or change the text into the eMail. Help, this is a catastrophe!!! Lukas Schmid

    Hey Lukas Schmid,
    The following resource may provide more help in troubleshooting Mail for OS X:
    OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/kb/TS3276
    For more information, you can also visit http://www.apple.com/support/mail/
    Thanks,
    Matt M.

  • How can I change my JApplet into a JApplication?

    I am working with a JApplet and am finding that some of my code only works in applications.
    So being new to this, I am clueless as to how to change my Applet into an Application. I understand the difference in definition between the two, but when it comes to looking at Applet Code and Application Code, I am not able to see a difference. (Other than an Applet stating "Applet")
    So, that being said how can I change my code so that it runs as an application and not an applet? Here is my current layout code
    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.*;
    import java.text.NumberFormat;
    import java.text.DecimalFormat;
    // Creating the main class
    public class test extends JApplet implements ActionListener
         // Defining of format information
         JLabel heading = new JLabel("McBride Financial Services Mortgage Calculator");
         Font newFontOne = new Font("TimesRoman", Font.BOLD, 20);
         Font newFontTwo = new Font("TimesRoman", Font.ITALIC, 16);
         Font newFontThree = new Font("TimesRoman", Font.BOLD, 16);
         Font newFontFour = new Font("TimesRoman", Font.BOLD, 14);
         JButton calculate = new JButton("Calculate");
         JButton exitButton = new JButton("Quit");
         JButton clearButton = new JButton("Clear");
         JLabel instructions = new JLabel("Please Enter the Principal Amount Below");
         JLabel instructions2 = new JLabel("and Select a Loan Type from the Menu");
         // Declaration of variables
         private double principalAmount;
         private JLabel principalLabel = new JLabel("Principal Amount");
         private NumberFormat principalFormat;
         private JTextField enterPrincipal = new JTextField(10);
         private double finalPayment;
         private JLabel monthlyPaymentLabel = new JLabel("  Monthly Payment    \t         Interest Paid    \t \t            Loan Balance");
         private NumberFormat finalPaymentFormat;
         private JTextField displayMonthlyPayment = new JTextField(10);
         private JTextField displayInterestPaid = new JTextField(10);
         private JTextField displayBalance = new JTextField(10);
         // Creation of the String of arrays for the ComboBox
         String [] list = {"7 Years @ 5.35%", "15 Years @ 5.50%", "30 Years @ 5.75%"};
         JComboBox selections = new JComboBox(list);
         // Creation of the textArea that will display the output
         private TextArea txtArea = new TextArea(5, 10);
         StringBuffer buff = null;
         // Initializing the interface
         public void init()
              // Creation of the panel design and fonts
              JPanel upper = new JPanel(new BorderLayout());
              JPanel middle = new JPanel(new BorderLayout());
              JPanel lower = new JPanel(new BorderLayout());
              JPanel areaOne = new JPanel(new BorderLayout());
              JPanel areaTwo = new JPanel(new BorderLayout());
              JPanel areaThree = new JPanel(new BorderLayout());
              JPanel areaFour = new JPanel(new BorderLayout());
              JPanel areaFive = new JPanel(new BorderLayout());
              JPanel areaSix = new JPanel(new BorderLayout());
              Container con = getContentPane();
              getContentPane().add(upper, BorderLayout.NORTH);
              getContentPane().add(middle, BorderLayout.CENTER);
              getContentPane().add(lower, BorderLayout.SOUTH);
              upper.add(areaOne, BorderLayout.NORTH);
              middle.add(areaTwo, BorderLayout.NORTH);
              middle.add(areaThree, BorderLayout.CENTER);
              middle.add(areaFour, BorderLayout.SOUTH);
              lower.add(areaFive, BorderLayout.NORTH);
              lower.add(areaSix, BorderLayout.SOUTH);
              heading.setFont(newFontOne);
              instructions.setFont(newFontTwo);
              instructions2.setFont(newFontTwo);
              principalLabel.setFont(newFontThree);
              monthlyPaymentLabel.setFont(newFontFour);
              displayInterestPaid.setFont(newFontFour);
              displayBalance.setFont(newFontFour);
              areaOne.add(heading, BorderLayout.NORTH);
              areaOne.add(instructions, BorderLayout.CENTER);
              areaOne.add(instructions2, BorderLayout.SOUTH);
              areaTwo.add(principalLabel, BorderLayout.WEST);
              areaTwo.add(enterPrincipal, BorderLayout.EAST);
              areaThree.add(selections, BorderLayout.NORTH);
              areaFour.add(calculate, BorderLayout.CENTER);
              areaFour.add(exitButton, BorderLayout.EAST);
              areaFour.add(clearButton, BorderLayout.WEST);
              areaFive.add(monthlyPaymentLabel, BorderLayout.CENTER);
              areaSix.add(txtArea, BorderLayout.CENTER);
              // Using the ActionListener to determine when each button is clicked
              calculate.addActionListener(this);
              exitButton.addActionListener(this);
              clearButton.addActionListener(this);
              enterPrincipal.requestFocus();
              selections.addActionListener(this);
         }

    baftos wrote:
    Here is one of the sites that explains the procedure:
    [http://leepoint.net/notes-java/deployment/applications_and_applets/70applets.html].
    But maybe you should try to fix the code that does not work as applet?
    Which one is it?
    >Here is one of the sites that explains the procedure:
    [http://leepoint.net/notes-java/deployment/applications_and_applets/70applets.html].
    But maybe you should try to fix the code that does not work as applet?
    Which one is it?
    The code that doesn't work in my applet is the exit button code
    else if (source == exitButton)
                        System.exit(1);
                   }I also can't get my program to properly validate input. When invalid input is entered and the user presses calculate, an error window should pop up. Unfortunately it isn't. I compile and run my applications/applets through TextPad. So when I try to test the error window by entering in invalid info, the applet itself shows nothing but the command prompt window pops up and lists errors from Java. Anyhow, here is the method I was told to use to fix it.
    private static boolean validate(JTextField in)
              String inText = in.getText();
              char[] charInput = inText.toCharArray();
              for(int i = 0; i < charInput.length; i++)
                   int asciiVal = (int)charInput;
              if((asciiVal >= 48 && asciiVal <= 57) || asciiVal == 46)
              else
                   JOptionPane.showMessageDialog(null, "Invalid Character, Please Use Numeric Values Only");
                   return false;
                   return true;
         }My Instructor told me to try the following, but I still can't get it to work.String content = textField.getText();
    if (content.length() != 0) {       
    try {          Integer.parseInt(content);  
    } catch (NumberFormatException nfe) {}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • I need to change a photo into a video file in order to post on youtube. How can I do this with my mac?

    I need to change a photo into a video file in order to post in youtube. How can I do this with my mac mini?

    When I go to import, the choices are :
    movies
    camera archive
    imovie for IOS
    imovie for HD
    It refuses to import a photo with any of these choices, which is located on the desktop or in a folder. It's a regular .jpg
    There are instructions to drag it. I put it there, and it bounces right back. The photo will not stay.
    I just need this one picture to go on so I can post a meditation on youtube.  It doesn't come from a camera.

  • Change a song into a ringtone

    how do i change a song into a ringtone

    I've seen the suggestion to follow ehow iPhone ringtones before, but, as with every other suggestion, I get to one point and what my computer says and what the instructions claim it will say are two different things. For instance, I get to the point on the ehow tutorial (#11) to right-click the ringtone and select "Delete." I do that, and what is SUPPOSED to pop up is a selection box with a (#12) "Keep Files" option. I do not get the "Keep Files" option; rather, a "Remove" or "Cancel" button. If I click "Cancel," of course, it brings me back to square one. If I select "Remove," it removes the files and closes it out with no option to keep the file somewhere. What type of computer is actually in use in the ehow directions?

  • Using PRO XI for educators. Every time I try to change a document into a PDF document the program asks me to sign up for a monthly fee.  What's going on???

    I am using Adobe XI Pro for educators.
    Every time I try to change a document into a PDF document the program asks me to sign up for a monthly fee. What’s going on???

    Hi Peter,
    Are you still facing this issue.
    I am not able to see any product registered under the email id using you are registered here.
    Regards,
    Ajlan Hulda.

  • I want to change normal order into expire order

    Hi,
    I am oracle apps developer working in istore 11i module and i new to this forum.My question is i need to change normal order into expire order for this what are all the profile i need change .Please guide me
    Thanks in advance.
    DV.Balaji

    You no need to add the changes, It can be shown in Environment menu. If u want to see the person who changed the PO in ur Print, ABAP work will be required..
    By the way what is the business requirement for this. B'cas PO is meant for vendor, Why do u want to print, whoever did the changes..This thing you can see from SAP itself at anytime.
    Cheers!
    ***Reward If useful (RIU)

  • How can i change analog waves into digital waves?

    we had labview lab last week.. were doing fine if we have instructions unfortunately the professor will give us an exercise regarding baseband signals spectra.. were trying to download a trial software but we dont have any luck. the question asks for us to change analog waves into digital waves, measure the amplitude of the 5-th harmonic using spectrum analyzer.. i hope you can help me thnx..

    After you are successful getting LabVIEW on your computer, put together something to at least show us you're up for learning.  Then we can guide you to a solution that you've developed (mostly) on your own. 
    Bill
    (Mid-Level minion.)
    My support system ensures that I don't look totally incompetent.
    Proud to say that I've progressed beyond knowing just enough to be dangerous. I now know enough to know that I have no clue about anything at all.

  • I do not manage to find the function to change a letter into exposing. I have MUSE DC 2014.2 and the menu does not display this possibility. I tried to import it IN design but that does not function either?

    I do not manage to find the function to change a letter into exposing. I have MUSE DC 2014.2 and the menu does not display this possibility. I tried to import it IN design but that does not function either?

    I'm not clear on exactly what it is you're asking, but if you're referring to changing opacity, you can change the opacity setting for the States of a menu item via the States panel and Control Strip.

  • In CS6, changing a sublayer into a main layer?

    Hi,
    I believe in earlier versions if you wanted to change a sublayer into a main layer you could just drag and drop. But I don't see any way in CS6 to change a sublayer into a main layer — anyone know how to do this?
    Thanks in advance.....

    You still can in CS6 and believe you can in the cloud version. You need to drag until the line is in the correct location.

  • Now that i have installed the software how do i change a pdf into a word doc

    now that i have installed the software how can i change a pdf into a word doc

    Hi patm23422687,
    I hope by saying 'installed the software', you mean that Acrobat XI is now installed on your computer.
    Now, open the PDF in Adobe Acrobat and choose "File> Save as Other> Microsoft Word"
    This is all you need to do
    Please try and let me know if you need further assistance.
    Regards,
    Anubha

  • How do I change a WAR into a portlet?

    Hi,
    How do I change a WAR into a portlet?
    Do I just change the zone.properties, jserv.properties, and the provider.xml. In other words, do I treat it like a jar?
    Any help would be greatly appreciated,
    Wilson

    If you mean how do you get the contents of a .war file into a JServ environment, then I would advise against trying this unless really necessary. The servlets in the .war file will only work if they do not rely on any Servlet 2.2-specific features, since JServ only supports Servlet 2.0.
    Why not just plug the .war file into OC4J? You can still 'front end' it with Apache if you want by using mod_proxy.
    If you really wanted to try this, first you would need to unzip the .war file to the filesystem. Then the full path to WEB-INF/classes (if it exists) and each .jar file in WEB-INF/lib would have to be mentioned as repositories in zone.properties, as these all contain 'zone' (or 'web app') specific classes.
    WEB-INF/web.xml contains an XML description of the servlets that need mounting in zone.properties, including their init args.
    All the other files outside of WEB-INF should be treated as documents by the web server, so should either be copied into your default htdocs directory or exposed under an alias in httpd.conf.This also relies on the classes in the .war file not 'clashing' with different versions in the server's global classpath in jserv.properties.

  • Changing a photo into a vector in Ai using High Fidelity

    I fully understand how to change a picture into a vector in Ai and to be clear,  I don't want a silhouette or a black and white image, I want to use the picture.  I have had good success with using the high fidelity option to change the pic and it looks great.  The problem is, I am using a cutout and when I use the high fidelity option it fills the background in as white instead of a transparency.  I've even tried to hit the ignore white button but it does not help.  I've resorted to then opening it in PS and removing the white and saving as a PNG24 but, when you then open in Ai to work with again it's then again pixelated.

    You need to expand and ungroup after the trace. Then delete the white you do not want. I missed a little piece in the last screen shot. But you get the idea. I put a black background behind the trace.
    Traced:
    Expanded and ungrouped:
    White selected:
    White deleted:

  • How to change 'z' key into 'A' key with key blinding?

    How to change 'z' key into 'A' key?
    Although txt.setText("A") can set the text field with 'a', but it is not original input from keyboard because it cant trigger the key listener.
    It is possible to perform key pressing more than a key in same time? Example, perform 'q' & 'w' keys pressing at the same time.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Main
    {   public static void main(String[] args)
        {   JFrame f = new JFrame("Test");
            Test GUI = new Test();
            GUI.setOpaque(true);
            f.setContentPane(GUI);
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.pack();
            f.setVisible(true);
    class Test extends JPanel
    {   JTextArea txta = new JTextArea(10,20);
        JTextField txt = new JTextField(10);
        JScrollPane sp_txta = new JScrollPane(txta);
        public Test()
        {   this.setPreferredSize(new Dimension(400,300));
            setLayout(new BorderLayout());
            txta.setEditable(false);
            add(sp_txta, BorderLayout.CENTER);
            add(txt, BorderLayout.PAGE_END);
            Action testAction = new AbstractAction()
            {   public void actionPerformed(ActionEvent ae){ txt.setText("A"); }
            txt.getInputMap().put(KeyStroke.getKeyStroke('z'), "test");    //Change z into A
            txt.getActionMap().put("test", testAction);
            txt.addKeyListener
            (   new KeyListener()
                {   public void keyPressed(KeyEvent e){ txta.append(e.getKeyChar() + " key is pressed \n"); }
                    public void keyReleased(KeyEvent e){ txta.append(e.getKeyChar() + " key is released \n"); }
                    public void keyTyped(KeyEvent e){ txta.append(e.getKeyChar() + " key is typed \n"); }
    }Edited by: 835972 on Feb 11, 2011 8:11 AM

    It is possible to perform key pressing more than a key in same time? Example, perform 'q' & 'w' keys pressing at the same time.With r.keyPress method, it only can perform single key pressed at a time. Do you have any idea how to perform multiple key pressed at a time?The javadoc for Robot.keyPress suggests ( "+The key should be released using the keyRelease method+" ) that the key remains "pressed" until you keyRelease(...) it. So, press the keys sequentially:
    theRobot.keyPress(KeyEvent.VK_Q);
    theRobot.keyPress(KeyEvent.VK_W);
    // At this stage both Q and W are pressed "in same time"
    ... // do stuff
    theRobot.keyRelease(KeyEvent.VK_W);
    // At this stage, only Q is pressedI suspect that in real life, unless you're a very gifted musician, you don't really press keys "at the same time" (under the time resolution of a keyboard, which I imagine is around a few milliseconds).

Maybe you are looking for

  • Pc suite wont send or load messages

    I have a nokia n70 with all the latest updates but for some reason when i connect the n70 up to the laptop and want to send messages through nokia suite it wont work. EVERY time it just says "Failed to send the message". It also doesnt load messages

  • Turn off display mirroring once and for all ?

    Hi there, I have a 13'' macbook pro, recently upgraded to Snow Leopard. Now every time I connect my external screen (a DELL E198WFP connected with the DVI output) the display starts in "mirroring" mode. I have to manually turn mirroring off every tim

  • HFM and Workspace 11.1.2.0 issues with opening Apps and reports via web

    Hi, we are running decentralized environment where we have HFM Web and App servers on Windows 2008 Server SP2 and few shared elements like OHS, HSS (Shared Services) and Workspace service from Solaris 10 SPARC (64bit) server. The base version is 11.1

  • I lost music and would like it back

    I bought a few albums off of the iTunes Store and they worked great for a while before I had a chance to back the files up. Then my computer crashed and I had to re install Vista on my computer and I no longer have the albums that I purchased. I know

  • Business connector and idoc

    Experts Currently i am working on BC for creating sales order using idoc , i have input file with me, which is an xml format and the mapping is ready in BC , only problem which i am facing is that i am not able to understand following thing 1) How ca