Question Related to Check-box in Dialog Program

Hi All-
I desgined check box in Table Control... In my Internal table I have 41 records, When user click on Select all button it selects only first 14 records from the table control...When the user uses page-down, then click on Select all, selects remaining 14 records and so on...
But how to select all the records at a time instead of using page-down...
Please advice me how to solve my problem!!!!
Thanks,
Sony

I would not suggest doing it like that.  Instead move the MODULE USER_COMMAND outside of that loop.
*  Screen Flow Logic 
PROCESS AFTER INPUT.
LOOP AT i_x002 .
ENDLOOP.
MODULE user_command_0600 .
*  Module coding
MODULE user_command_0600 input..
CASE sy-ucomm.
WHEN 'SELA'.
loop at i_x002.
i_x002-flag = 'X'.
MODIFY i_x002.
endloop.
WHEN 'DELA'.
loop at i_x002.
i_x002-flag = space.
MODIFY i_x002.
endloop.
ENDCASE.
endmodule.
Regards,
Rich Heilman

Similar Messages

  • Pop-up box in dialog programming

    Hi,
    Is it possible to add a pop-up box inside dialog programs?..if so can someone show me how?
    thanks!

    hi,
    it is possible to display popup box inside the dialog programs.
    follow this sample program, it clearly explains the logic.......
    <u><b>FLOW-LOGIC CODE.</b></u>
    PROCESS ON VALUE-REQUEST.
        FIELD SFLIGHT-CONNID MODULE HELP-FOR-CONNID.
    <u><b>CODE FOR MODULE POOL PROGRAM.</b></u>
    MODULE HELP-FOR-CONNID INPUT.
        DATA: begin of it_itab occurs 0,
                       connid1(45),
                  end of it_itab.
                  refresh it_itab.
                  it_itab-connid1 = 'possible vales for connectionid'.
                  append it_itab.
                select * from sflight.
                      it_itab-connid1 = sflight-connid.
                      append it_itab.
               endselect.
          ****here call FM to display pop-up box
             call function 'popup_with_table_display'
                               exporting
                                           endpos_col = 45
                                           endpos_row = 25
                                           startpos_col = 10
                                           startpos_row = 1
                                           titiletext        = 'text'
                               tables
                                           valuetab = it_itab.
    the above program display the list of possible values for the field connid in popup-box.
    regards,
    Ashok Reddy

  • Handle  text  using list box in dialog program

    hi,
      I am  working  on  dialog program  , Created  two fileds , one is list  box type  I/O field and another is  i/O  field  which displays  text  based  on  value  selected in list box.
    Please  provide  any  inf  how  to Handle  text  using list box value in dialog program.
    thanks

    Hi,
    <li>Check the screen to know how to set I/O field to set as listbox.[ dropdown box picture|http://2.bp.blogspot.com/_O5f8iAlgdNQ/Sm7RBrqfjcI/AAAAAAAAFaU/RateViiVqrU/s1600-h/drop_down-754481.JPG]
    <li>in the above screen we need to set FctCode  for the dropdown box field so that when you select value from the dropdown box PAI event is triggered.
    <li>screen flow logic like below
    PROCESS BEFORE OUTPUT.
    MODULE values_into_dropdown.
    FIELD g_bukrs.
    FIELD g_text.
    PROCESS AFTER INPUT.
    FIELD g_bukrs.
    FIELD g_text MODULE get_bukrs_txt.
    <li>Logic to fill Dropdown field with values.
      PROGRAM  sapmztest_dropdown.
    DATA: g_bukrs TYPE t001-bukrs.
    *&      Module  VALUES_INTO_DROPDOWN  OUTPUT
    MODULE values_into_dropdown OUTPUT.
    TYPE-POOLS:vrm.
    DATA:
           field     TYPE  vrm_id,
           it_values TYPE  vrm_values,
           wa_values LIKE LINE OF it_values.
    DATA: t001 TYPE t001 OCCURS 0 WITH HEADER LINE.
    IF it_values[] Is INITIAL.
       SELECT * FROM t001 INTO TABLE t001 UP TO 10 ROWS.
       LOOP AT t001.
         wa_values-key  = t001-bukrs.
         wa_values-text = t001-butxt.
         APPEND wa_values TO it_values.
         CLEAR  wa_values.
       ENDLOOP.
    ENDIF.
    field = 'G_BUKRS'.
    CALL FUNCTION 'VRM_SET_VALUES'
       EXPORTING
         ID     = FIELD
         values = it_values.
    ENDMODULE.                 " VALUES_INTO_DROPDOWN  OUTPUT
    *&      Module  get_bukrs_txt  INPUT
    MODULE get_bukrs_txt INPUT.
    read table it_t100 into wa_t100 with key bukrs = g_bukrs.
    g_text = t001-butxt.
    ENDMODULE.                 " VALUES_INTO_DROPDOWN  INPUT
    I hope that it helps you.
    Thanks
    Venkat.O

  • Handling Check box in  BDC program

    Hi Folks,
              I am developng a BDC for a transaction. The BDC has to pass four tabs in that transaction. Everything is working, but in the fourth tab, there is check box which need to be checked. But when the BDC program enters that tab..it throwing a error message saying 'No field with that name in this screen'. there are still some more check boxes in that tab. Is there any specific way to handle the check boxes...is there anything to add as extension for that check box field..pls suggest me...
             Thanks,
              Shyam.

    hi,
    check the screen field name.. like 'GLACCOUNT_SCREEN_CCODE-WAERS'
    which field it is throwing error?? which transaction??
    thanks,
    vijay.R

  • Control of Text box in Dialog programming

    Hai Friends
    i am having problem in controlling the Text box in PAI of Screen. For eg. if it is command button with the use of Function name i can able to check or do validation in PAI.
    As in the case of Textbox how to give the name for the text box and how to handle it in PAI for Validation.
    Please
    Badhri.

    Are you talking about a text editor?  IF so,  what is the validation that you want to perform.  Do you want to check to make sure that the user has entered something in the text editor?
    If so, then just get the text from the text editor into an internal table, and check that internal table to make sure that something is in it.
        call method editor->get_text_as_r3table
           exporting
                 only_when_modified = c_textedit_control=>false
           importing
                 table              = textlines
           exceptions
                 others             = 1.
    <b>    if textlines[] is initial.
          message e014.
        endif.</b>
    Regards,
    Rich Heilman

  • List box in dialog programming

    Hi Frnds,
                  i am working on a complex scenario,
    i want to print 3 list box.
    first one i can show but the problem is with second one and third one.
    first list box have three fields suppose
    program
    events
    movies
    when user will select either one , suppose he will select program
    then in second listbox program releted entries should be displayed like fiction , non fiction.
    and when he will select any entry then in third list box corresponding sub entries should be come.
    all data i have in ztables.
    i can make search help also.
    any suggestion should be appreciated.
    Thanks and Regards
    vijay

    Use this program!
    TYPE-POOLS: vrm.
    DATA: name TYPE vrm_id, list TYPE vrm_values, value LIKE LINE OF list.
    TABLES: sscrfields.
    Selection screen
    List box
    PARAMETERS: ps_parm AS LISTBOX VISIBLE LENGTH 10
                              USER-COMMAND abc.
    Radio buttons
    PARAMETERS: rb1 RADIOBUTTON GROUP ab MODIF ID bl2,
                rb2 RADIOBUTTON GROUP ab MODIF ID bl2,
                rb3 RADIOBUTTON GROUP ab MODIF ID bl3.
    INITIALIZATION.
    Populate list box values
      name = 'PS_PARM'.
      value-key = '1'. value-text = 'Line 1'. APPEND value TO list.
      value-key = '2'. value-text = 'Line 2'. APPEND value TO list.
    AT SELECTION-SCREEN OUTPUT.
    Set list box with value
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          id     = name
          values = list.
    Control the display of screen components
      LOOP AT SCREEN.
        IF ps_parm = 1.
          IF screen-name = 'RB1' OR screen-name = 'RB2' .
            screen-invisible = 0.
          ELSEIF screen-name = 'RB3'.
            screen-invisible = 1.
          ENDIF.
          MODIFY SCREEN.
        ELSEIF ps_parm = 2.
          IF screen-name = 'RB1' OR screen-name = 'RB2' .
            screen-invisible = 1.
          ELSEIF screen-name = 'RB3'.
            screen-invisible = 0.
          ENDIF.
          MODIFY SCREEN.
        ELSEIF ps_parm = space.
          rb1 = 'X'.
          clear: rb2,rb3.
          IF screen-name = 'RB1' OR screen-name = 'RB2' OR
             screen-name = 'RB3'.
            screen-invisible = 0.
            MODIFY SCREEN.
          ENDIF.
        ENDIF.
      ENDLOOP.
    AT SELECTION-SCREEN.
      IF sscrfields-ucomm = 'ABC'.
      ENDIF.
    START-OF-SELECTION.
      WRITE: / 'Parameter:', ps_parm.
    And use:
    AT-SELECTION-SCREEN on value request for p_yyyy.
    if p_xxxx-key is not initial..
    get the values required for second parameter...or listbox..
    endif..
    similarily for 3rd listbox also!

  • Modal Dialog box in Dialog Programe

    I have create one Modal Dialog Box in Module Pool.
    when i click on the 'X' on the top right side of that screen the Dialog box is not closed.
    Can any one help on this?

    For the Modal Dialog box you need to create the Status, while creating the status Choose the Status for Dialog box. that time you it will show different Status Options.
    you need to set the status to the CANCEL(X) button , Then handle the Function in the PAI user_command module.
    CASE sy-ucomm.
    when 'CANCEL'.
    leave to screen 0.
    endcase.

  • Values not populating in list box in dialog programing.

    hi,
    i am facing a problem i.e. i am having a listbox on screen , in pbo i am filling that listbox with some values in an internal table.
    But i am not able to populate the values i.e. while i am debugging the pai ......the list box is containing nothing.
    So needed some help in this issue.
    regards,
    somesh

    Hi,
    Try to read these links. It will give you some pointers regarding on your problem.
    <link-farm removed>
    Revert if you have still any concern.
    Thanks,
    iostreamax
    Edited by: Suhas Saha on Feb 21, 2012 8:50 AM

  • Declaring constant data in a list box - Dialog programming

    i need to declarare some constant data 1...4 in list box in dialog programming i have done some coding its not working here is the code, can you plz tell me whats wrong in the code non of the values are displaying in drop downbox.
    type-pools vrm.
    DATA: name TYPE vrm_id,
    list TYPE vrm_values,
    value LIKE LINE OF list.
    clear list.
    REFRESH LIST.
    value-key = '1'.
    value-text = 'Sales & Distribution'.
    append value to list.
    value-key = '2'.
    value-text = 'Material Management'.
    append value to list.
    value-key = '3'.
    value-text = 'Finance & Controlling'.
    append value to list.
    CALL FUNCTION 'VRM_SET_VALUES'
      EXPORTING
        id                    = 'LISTBOX1'
        values                = list
    EXCEPTIONS
      ID_ILLEGAL_NAME       = 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.

    I think your code is correct onlybut the problem may be where
    you are passing the internal table to the FM 'VRM_SET_VALUES' ...
    Try to use the  following code..
    CALL FUNCTION 'VRM_SET_VALUES'
    EXPORTING
    id = 'LISTBOX1'
    values = list[]

  • How to print those check boxes in SAP scripts?

    Hi experts,
    I have to create sap script form in which i have to create check boxes and at run time according to some condition i have to
    check those check boxes.how this can be done?
    Thanks in advance
    Rohit

    Check out the below related threads
    check box
    Re: check box in script
    Regards,
    Santosh

  • Check box near name column

    How do I add or delete check in box to left of song name column.
    My library list is full of those checks and I don't know how they got there.

    Thanks to Philip and everyone else who answered my question about the check-box next the NAME column in the music library.

  • On Ibooks Author, my programmed image for the Chapter page no longer shows up on new pages, just appears as a question mark inside a box, How do I fix this?

    On Ibooks Author, my programmed image for the Chapter page no longer shows up on new pages, just appears as a question mark inside a box, How do I fix this? Please help, its the same when I try and copy and paste the same image within Ibooks author.

    https://discussions.apple.com/message/24420017#24420017
    You may have  moved or removed content on your page or  its possible you  used the"Adjust Image" and over sharpeed one or more images.
    I assume  you mean it does not show up of new Chapter pages... have you checked the  template?
    Where you see the  ?    you  need to either reduce teh  box outline size - or drop anther  copy of the original image onto  it, it may  fill the  ? box or sit on top.... delete the ? box.
    If its Chapter page only related, its  better doing this in the template.
    Is you image .jpg or .png?

  • Question related to Java Concurrent Program

    Hi Friends,
    I have a basic question related to Java Concurrent Program in the Oracle application. I would like to know the how Java concurrent program is executed in Oracle applications.Also, want to know where can I find the document for the AOL packages for Java concurrent program. Document for packages like oracle.apps.fnd.cp.request.* , oracle.apps.fnd.util.*.
    Please let me know.
    -Thanks,
    Satya

    You may also check:
    Note: 250964.1 - How to Register Sample Java Concurrent Program
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=250964.1
    Note: 186301.1 - How to register and execute Java Concurrent Program ?in Oracle Applications R11i?
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=186301.1

  • How do I create a check-box matrix question using Acrobat XI Pro?

    I would like to insert a question that is a 10 x 10 matrix that allows respondents to select multiple boxes in each row.  For example, the "add item > rating scale" feature formats a matrix the way I would like, although it only seems to allow for radio buttons.  With this feature, respondents can only select one item per row.  Is there any way to use this feature with check-boxes rather than radio buttons?  Or a different feature to create a matrix that allows for multiple selections per row? 
    Thanks so much,
    Andy 

    I created a 30 page Form in Microsoft Word with 20 to 30 check boxes on each page using the Zapf Dingbats Font.
    When I used Acrobat XI Pro to automatically convert the form it fails to create usable check boxes.
    It worked properly about 3 times on test pages but it will not do it again.
    Manually inserting check boxes one by one on 30 pages is mind numbing to say the least.
    Why doesn't the software work properly anymore?

  • Check Box/ItemListener question

    Hello all,
    I'm trying to create a GUI for a program that I've been working on for some time. In the program, various sections can be run depending on what variables are present in the input file AND whether or not certain previous sections have been selected to run. I'm trying to represent this with a menu comprised of check boxes, where if the proper sections have been selected other boxes become enabled accordingly. I tried to get this behavior simply by saying in itemStateChanged() that if stp1bt3 is selected and stp1bt1 has just been selected, to enable stp2bt1. For some reason, stp2bt1 isn't enabled whenever I try this. Any help would be greatly appreciated, as I'm sure it's something very small that I have to add to this. Here is the code I have:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class CheckGUI extends JPanel implements ItemListener {
    private JCheckBox stp1bt1;
    private JCheckBox stp1bt2;
    private JCheckBox stp1bt3;
    private JCheckBox stp2bt1;
    private JCheckBox stp2bt2;
    private JCheckBox stp2bt3;
    private JCheckBox stp3bt1;
    private JCheckBox stp3bt2;
    private JCheckBox stp3bt3;
    private JCheckBox stp3bt4;
    private JCheckBox stp3bt5;
    private JLabel emptyLabel;
    private JLabel step1Label;
    private JLabel step2Label;
    private JLabel step3Label;
    private boolean s1b2, s1b3, s2b1, s2b2, s2b3, s3b1, s3b2, s3b3, s3b4, s3b5;
    public CheckGUI(boolean s12, boolean s13, boolean s21,
    boolean s22, boolean s23, boolean s31,
    boolean s32, boolean s33, boolean s34,
    boolean s35){
    s1b2 = s12;
    s1b3 = s13;
    s2b1 = s21;
    s2b2 = s22;
    s2b3 = s23;
    s3b1 = s31;
    s3b2 = s32;
    s3b3 = s33;
    s3b4 = s34;
    s3b5 = s35;
    emptyLabel = new JLabel("");
    stp1bt1 = new JCheckBox("Button 1");
    stp1bt2 = new JCheckBox("Button 2");
    if (s1b2 == false){
    stp1bt2.setEnabled(false);
    stp1bt3 = new JCheckBox("Button 3");
    if (s1b3 == false){
    stp1bt3.setEnabled(false);
    stp2bt1 = new JCheckBox("Button 1");
    stp2bt1.setEnabled(false);
    stp2bt2 = new JCheckBox("Button 2");
    stp2bt2.setEnabled(false);
    stp2bt3 = new JCheckBox("Button 3");
    stp2bt3.setEnabled(false);
    stp3bt1 = new JCheckBox("Button 1");
    stp3bt1.setEnabled(false);
    stp3bt2 = new JCheckBox("Button 2");
    stp3bt2.setEnabled(false);
    stp3bt3 = new JCheckBox("Button 3");
    stp3bt3.setEnabled(false);
    stp3bt4 = new JCheckBox("Button 4");
    stp3bt4.setEnabled(false);
    stp3bt5 = new JCheckBox("Button 5");
    stp3bt5.setEnabled(false);
    step1Label = new JLabel("Step 1");
    step2Label = new JLabel("Step 2");
    step3Label = new JLabel("Step 3");
    setLayout(new BoxLayout(this, BoxLayout.Y_AXIS));
    add(step1Label);
    add(stp1bt1);
    if(s1b2 == true)
    add(stp1bt2);
    else
    add(emptyLabel);
    if(s1b3 == true)
    add(stp1bt3);
    else
    add(emptyLabel);
    add(step2Label);
    if(s2b1 == true)
    add(stp2bt1);
    else
    add(emptyLabel);
    if(s2b2 == true)
    add(stp2bt2);
    else
    add(emptyLabel);
    if(s2b3 == true)
    add(stp2bt3);
    else
    add(emptyLabel);
    add(step3Label);
    if(s3b1 == true)
    add(stp3bt1);
    else
    add(emptyLabel);
    if(s3b2 == true)
    add(stp3bt2);
    else
    add(emptyLabel);
    if(s3b3 ==true)
    add(stp3bt3);
    else
    add(emptyLabel);
    if(s3b4 == true)
    add(stp3bt4);
    else
    add(emptyLabel);
    if(s3b5 == true)
    add(stp3bt5);
    else
    add(emptyLabel);
    public void itemStateChanged(ItemEvent e){
    Object source = e.getItemSelectable();
    if (source == stp1bt1){
    if(e.getStateChange() == ItemEvent.SELECTED && stp1bt3.isSelected() && s2b1 == true){
    stp2bt1.setEnabled(true);
    public static void main (String args[]) {
    JFrame f = new JFrame ("CheckBox Test");
    JPanel j = new CheckGUI(true,true,true,true,true,true,true,true,true,true);
    f.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    f.getContentPane().add (j, BorderLayout.CENTER);
    f.setSize (150, 450);
    f.show();
    }

    Hello,
    My dear frind you have to add the item listener fro an item to do dymaic changes in the check box.
    So for now i have added it.. check it down
    i have also placed the system.out.println(....);
    Alll THe Best
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class CheckGUI extends JPanel implements ItemListener {
    private JCheckBox stp1bt1;
    private JCheckBox stp1bt2;
    private JCheckBox stp1bt3;
    private JCheckBox stp2bt1;
    private JCheckBox stp2bt2;
    private JCheckBox stp2bt3;
    private JCheckBox stp3bt1;
    private JCheckBox stp3bt2;
    private JCheckBox stp3bt3;
    private JCheckBox stp3bt4;
    private JCheckBox stp3bt5;
    private JLabel emptyLabel;
    private JLabel step1Label;
    private JLabel step2Label;
    private JLabel step3Label;
    private boolean s1b2, s1b3, s2b1, s2b2, s2b3, s3b1, s3b2, s3b3, s3b4, s3b5;
    public CheckGUI(boolean s12, boolean s13, boolean s21,
    boolean s22, boolean s23, boolean s31,
    boolean s32, boolean s33, boolean s34,
    boolean s35){
    s1b2 = s12;
    s1b3 = s13;
    s2b1 = s21;
    s2b2 = s22;
    s2b3 = s23;
    s3b1 = s31;
    s3b2 = s32;
    s3b3 = s33;
    s3b4 = s34;
    s3b5 = s35;
    emptyLabel = new JLabel("");
    stp1bt1 = new JCheckBox("Button 1");
    stp1bt2 = new JCheckBox("Button 2");
    if (s1b2 == false){
    stp1bt2.setEnabled(false);
    stp1bt3 = new JCheckBox("Button 3");
    if (s1b3 == false){
    stp1bt3.setEnabled(false);
    stp2bt1 = new JCheckBox("Button 1");
    stp2bt1.setEnabled(false);
    stp2bt2 = new JCheckBox("Button 2");
    stp2bt2.setEnabled(false);
    stp2bt3 = new JCheckBox("Button 3");
    stp2bt3.setEnabled(false);
    stp3bt1 = new JCheckBox("Button 1");
    stp3bt1.setEnabled(false);
    stp3bt2 = new JCheckBox("Button 2");
    stp3bt2.setEnabled(false);
    stp3bt3 = new JCheckBox("Button 3");
    stp3bt3.setEnabled(false);
    stp3bt4 = new JCheckBox("Button 4");
    stp3bt4.setEnabled(false);
    stp3bt5 = new JCheckBox("Button 5");
    stp3bt5.setEnabled(false);
    step1Label = new JLabel("Step 1");
    step2Label = new JLabel("Step 2");
    step3Label = new JLabel("Step 3");
    setLayout(new BoxLayout(this, BoxLayout.Y_AXIS));
    add(step1Label);
    add(stp1bt1);
    if(s1b2 == true)
    add(stp1bt2);
    else
    add(emptyLabel);
    if(s1b3 == true)
    add(stp1bt3);
    else
    add(emptyLabel);
    add(step2Label);
    if(s2b1 == true)
    add(stp2bt1);
    else
    add(emptyLabel);
    if(s2b2 == true)
    add(stp2bt2);
    else
    add(emptyLabel);
    if(s2b3 == true)
    add(stp2bt3);
    else
    add(emptyLabel);
    add(step3Label);
    if(s3b1 == true)
    add(stp3bt1);
    else
    add(emptyLabel);
    if(s3b2 == true)
    add(stp3bt2);
    else
    add(emptyLabel);
    if(s3b3 ==true)
    add(stp3bt3);
    else
    add(emptyLabel);
    if(s3b4 == true)
    add(stp3bt4);
    else
    add(emptyLabel);
    if(s3b5 == true)
    add(stp3bt5);
    else
    add(emptyLabel);
    stp1bt1.addItemListener(this);
    stp1bt2.addItemListener(this);
    stp1bt3.addItemListener(this);
    stp2bt1.addItemListener(this);
    stp2bt2.addItemListener(this);
    stp2bt3.addItemListener(this);
    stp3bt1.addItemListener(this);
    stp3bt2.addItemListener(this);
    stp3bt3.addItemListener(this);
    stp3bt4.addItemListener(this);
    stp3bt5.addItemListener(this);
    public void itemStateChanged(ItemEvent e){
    Object source = e.getSource();
    if (source == stp1bt1){
         /*      System.out.println(e.getStateChange() == ItemEvent.SELECTED);
              System.out.println(stp1bt3.isSelected());
              System.out.println(s2b1 == true); */
    if(e.getStateChange() == ItemEvent.SELECTED && stp1bt3.isSelected() && s2b1 == true){
    stp2bt1.setEnabled(true);
    public static void main (String args[]) {
    JFrame f = new JFrame ("CheckBox Test");
    JPanel j = new CheckGUI(true,true,true,true,true,true,true,true,true,true);
    f.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    f.getContentPane().add (j, BorderLayout.CENTER);
    f.setSize (150, 450);
    f.show();
    }

Maybe you are looking for

  • Error While Inserting Data into table using OAF

    Hi Experts, I am learning OAF; i am trying into insert the data into table using OAF. I followed the below procedure. My table(OLF_TEST_TBL) Columns: EmpID (Number), Ename(VARCHAR2 100), Sal Number, and who columns. 1. created Application Module (AM)

  • The music in my iTunes library are out of order...***

    This new version of iTunes doesn't allow you to resort your music. The only music i can sort out are the music in the Purchased section of mu library but that does not automatically sort out music in my "Library". How the heck do you fix this? They a

  • Can we write more than one routing rule in a RS?

    Can we write more than one routing rule in a RS?

  • Enable Print in IW22 after the maintanence Order is TECOed

    Hi Frds, I have a requirement to enable the print functionality (in the PM notification menu - PMNotification>Print-->Notification) for any maintanence order's notification after the maintanence order is TECOed. Once we do TECO the notification becom

  • Api for system shutdown

    hi, is there any api available in core java to shutdown the system? i want to run a java program soon after booting of the system.i need help on this regard. thanks in advance. sibu