Chck box

hi frnds,
    I have prepared an Hierarchial alv list.its working fine.now i need a Check box as my first field for every record in header table only.
can any one help me???

Hi,
In ALV grid it is possible.
check the below code...
  s_fieldcatalog-col_pos = 1.
  s_fieldcatalog-fieldname = 'ICON'.
  s_fieldcatalog-tabname = 'IT_TAB'.
  s_fieldcatalog-seltext_l = 'Status'.
  s_fieldcatalog-icon = 'X'.
  APPEND s_fieldcatalog TO t_fieldcatalog1.
  CLEAR s_fieldcatalog.
  s_fieldcatalog-col_pos = '2'.
  s_fieldcatalog-fieldname = 'MATNR'.
  s_fieldcatalog-tabname   = 'IT_TAB'.
  s_fieldcatalog-seltext_m = 'MATERIAL'.
  APPEND s_fieldcatalog TO t_fieldcatalog1.
  CLEAR s_fieldcatalog.
  s_fieldcatalog-col_pos = '3'.
  s_fieldcatalog-fieldname = 'MAKTX'.
  s_fieldcatalog-tabname   = 'IT_TAB'.
  s_fieldcatalog-seltext_m = 'DESRIPTION'.
  APPEND s_fieldcatalog TO t_fieldcatalog1.
  CLEAR s_fieldcatalog.
  s_fieldcatalog-col_pos = '4'.
  s_fieldcatalog-fieldname = 'SERNR'.
  s_fieldcatalog-tabname   = 'IT_TAB'.
  s_fieldcatalog-seltext_m = 'SERIAL NUMBER'.
  APPEND s_fieldcatalog TO t_fieldcatalog1.
  CLEAR s_fieldcatalog.
  s_fieldcatalog-col_pos = '5'.
  s_fieldcatalog-fieldname = 'EXNUM'.
  s_fieldcatalog-tabname   = 'IT_TAB'.
  s_fieldcatalog-seltext_m = 'EXCISE INV.NO.'.
  APPEND s_fieldcatalog TO t_fieldcatalog1.
  CLEAR s_fieldcatalog.
  s_fieldcatalog-col_pos = '6'.
  s_fieldcatalog-fieldname = 'EXDAT'.
  s_fieldcatalog-tabname   = 'IT_TAB'.
  s_fieldcatalog-seltext_m = 'DATE'.
  APPEND s_fieldcatalog TO t_fieldcatalog1.
  CLEAR s_fieldcatalog.
  s_fieldcatalog-col_pos = '7'.
  s_fieldcatalog-fieldname = 'RDOC2'.
  s_fieldcatalog-tabname   = 'IT_TAB'.
  s_fieldcatalog-seltext_m = 'INV.NO.'.
  APPEND s_fieldcatalog TO t_fieldcatalog1.
  CLEAR s_fieldcatalog.
ENDFORM.                    " fill_fieldcat
*&      Form  DISPLAY
FORM display .
*s_layout-box_fieldname = 'FLAG'.
  s_layout-box_fieldname = 'CHK'.
*s_layout-zebra = 'X'.
  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
      i_callback_program = sy-repid
     i_callback_user_command = 'USER_COMMAND'
    I_CALLBACK_TOP_OF_PAGE = 'TOP_OF_PAGE'
      i_grid_title       = text-021
     is_layout          = s_layout
      it_fieldcat        = t_fieldcatalog1[]
     it_events          = t_events
     it_sort            = it_sort
    TABLES
      t_outtab           = it_tab
    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.
Sastry

Similar Messages

  • Chck box in alv

    Hi,
    problem 1.
    I have created check box in ALV and i want to display it in First columnn.But it is displaying in all the columns.Can any one tell me how to control it.
    Here is my code.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
          I_CALLBACK_PROGRAM       = SY-REPID
          IS_LAYOUT                = WRK_LAYOUT
          IT_FIELDCAT              = FIELDCAT             I_CALLBACK_USER_COMMAND  = 'USER_COMMAND'
    *      I_CALLBACK_PF_STATUS_SET = 'SET_PF_STATUS'
          I_SAVE                   = 'A'
          IS_PRINT                 = WRK_PRINT
        TABLES
          T_OUTTAB                 = T_INS
        EXCEPTIONS
          PROGRAM_ERROR            = 1
          OTHERS                   = 2.
      I_FIELDCAT-FIELDNAME    = 'CHECK'.
      I_FIELDCAT-TABNAME      = 'T_INS'.<b>
      I_FIELDCAT-CHECKBOX     = 'x'.
      I_FIELDCAT-INPUT = 'X'.
      I_FIELDCAT-EDIT = 'X'.
    </b> I_FIELDCAT-NO_OUT       = '   '.
      I_FIELDCAT-SELTEXT_L    = ''.
      I_FIELDCAT-OUTPUTLEN    = 2.
      APPEND I_FIELDCAT TO FIELDCAT.
      I_FIELDCAT-FIELDNAME    = 'XBLNR'.
      I_FIELDCAT-TABNAME      = 'T_INS'.
      I_FIELDCAT-NO_OUT       = '   '.
      I_FIELDCAT-SELTEXT_L    = 'DN number'.
      I_FIELDCAT-OUTPUTLEN    = 15.
      APPEND I_FIELDCAT TO FIELDCAT.
    problem 2.
    when i use I_CALLBACK_PF_STATUS_SET = 'SET_PF_STATUS'
    in the output, ALV default controls are not displaying.
    Can any one tell me the solutions..
    points guaranteed
    cheers
    kaki

    copy the status from some standard program using se41 to your program.
    then give it in the form.
    FORM SET_PF_STATUS USING RT_EXTAB   TYPE  SLIS_T_EXTAB.
      SET PF-STATUS 'STANDARD' EXCLUDING RT_EXTAB.
    ENDFORM.                    "set_pf_status
    check the below code...
    REPORT  ZTESTDFALV1                             .
    *Data Declaration
    DATA: BEGIN OF T_EKKO,
      EBELN TYPE EKPO-EBELN,
      EBELP TYPE EKPO-EBELP,
      FLAG TYPE C,
    *  HANDLE_STYLE TYPE LVC_T_STYL,
    END OF T_EKKO.
      DATA: GD_REPID LIKE SY-REPID, "Exists
      REF_GRID TYPE REF TO CL_GUI_ALV_GRID. "new
    DATA: BEGIN OF IT_EKKO OCCURS 0.
            INCLUDE STRUCTURE T_EKKO.
    DATA: END OF IT_EKKO.
    DATA: BEGIN OF IT_BACKUP OCCURS 0.
            INCLUDE STRUCTURE T_EKKO.
    DATA: END OF IT_BACKUP.
    *ALV data declarations
    TYPE-POOLS: SLIS.                                 "ALV Declarations
    DATA: FIELDCATALOG TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE,
          GD_LAYOUT    TYPE SLIS_LAYOUT_ALV.
    *Start-of-selection.
    START-OF-SELECTION.
      PERFORM DATA_RETRIEVAL.
      PERFORM BUILD_FIELDCATALOG.
      PERFORM BUILD_LAYOUT.
      IT_BACKUP[] = IT_EKKO[].
      PERFORM DISPLAY_ALV_REPORT.
    *&      Form  build_fieldcatalog
    *       text
    FORM BUILD_FIELDCATALOG.
      REFRESH FIELDCATALOG.
      CLEAR FIELDCATALOG.
      FIELDCATALOG-FIELDNAME   = 'FLAG'.
      FIELDCATALOG-SELTEXT_M   = 'Purchase Order'.
      FIELDCATALOG-CHECKbox     = 'X'.
      FIELDCATALOG-EDIT     = 'X'.
      FIELDCATALOG-COL_POS     = 1.
      APPEND FIELDCATALOG.
      CLEAR  FIELDCATALOG.
      FIELDCATALOG-FIELDNAME   = 'EBELN'.
      FIELDCATALOG-SELTEXT_M   = 'Purchase Order'.
      FIELDCATALOG-INPUT     = 'X'.
      FIELDCATALOG-EDIT     = 'X'.
      FIELDCATALOG-COL_POS     = 2.
      APPEND FIELDCATALOG.
      CLEAR  FIELDCATALOG.
      FIELDCATALOG-FIELDNAME   = 'EBELP'.
      FIELDCATALOG-SELTEXT_M   = 'PO Item'.
      FIELDCATALOG-COL_POS     = 3.
      APPEND FIELDCATALOG.
      CLEAR  FIELDCATALOG.
    ENDFORM.                    " BUILD_FIELDCATALOG
    *&      Form  BUILD_LAYOUT
    *       Build layout for ALV grid report
    FORM BUILD_LAYOUT.
      "Permet d'ajuster les colonnes au text
    *  gd_layout-colwidth_optimize = 'X'.
    *  GD_LAYOUT-TOTALS_TEXT       = 'Totals'(201).
    *  gd_layout-box_fieldname = 'SELECT'.
    *  gd_layout-box_tabname   = 'IT_EKKO'.
    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'
                I_CALLBACK_PF_STATUS_SET  = 'SET_PF_STATUS'
                I_CALLBACK_USER_COMMAND   = 'USER_COMMAND'
    *            i_grid_title             = 'My Title'
                IS_LAYOUT                 = GD_LAYOUT
                IT_FIELDCAT               = FIELDCATALOG[]
           TABLES
                T_OUTTAB                  = IT_EKKO
           EXCEPTIONS
                PROGRAM_ERROR             = 1
                OTHERS                    = 2.
      IF SY-SUBRC <> 0.
        WRITE:/ SY-SUBRC.
      ENDIF.
    ENDFORM.                    " DISPLAY_ALV_REPORT
    *&      Form  DATA_RETRIEVAL
    *       Retrieve data form EKPO table and populate itab it_ekko
    FORM DATA_RETRIEVAL.
      SELECT EBELN EBELP
       UP TO 10 ROWS
        FROM EKPO
        INTO CORRESPONDING FIELDS OF TABLE  IT_EKKO.
    ENDFORM.                    " DATA_RETRIEVAL
    *                      FORM SET_PF_STATUS                              *
    FORM SET_PF_STATUS USING RT_EXTAB   TYPE  SLIS_T_EXTAB.
      SET PF-STATUS 'STANDARD_FULLSCREEN1' EXCLUDING RT_EXTAB.
    ENDFORM.                    "set_pf_status
    *&      Form  user_command
    *       text
    *      -->R_UCOMM    text
    *      -->RS_SELFIELDtext
    FORM USER_COMMAND  USING R_UCOMM LIKE SY-UCOMM
                             RS_SELFIELD TYPE SLIS_SELFIELD.
    *then insert the following code in your USER_COMMAND routine...
      IF REF_GRID IS INITIAL.
        CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
          IMPORTING
            E_GRID = REF_GRID.
      ENDIF.
      IF NOT REF_GRID IS INITIAL.
        CALL METHOD REF_GRID->CHECK_CHANGED_DATA
      ENDIF.
    *modify
      CASE R_UCOMM.
        WHEN '&IC1'.
          CHECK RS_SELFIELD-TABINDEX > 0.
          IF RS_SELFIELD-VALUE EQ '6000000001'.
            CALL TRANSACTION 'ZDF2'.
          ENDIF.
        WHEN 'REFRESH'.
          READ TABLE IT_EKKO INDEX  RS_SELFIELD-TABINDEX.
          IF SY-SUBRC = 0.
            READ TABLE IT_BACKUP INDEX RS_SELFIELD-TABINDEX.
            IF SY-SUBRC = 0.
              IF IT_EKKO <> IT_BACKUP.
    *  then do your check
              ENDIF.
            ENDIF.
          ENDIF.
          PERFORM DATA_RETRIEVAL.
          RS_SELFIELD-REFRESH = 'X'.
      ENDCASE.
    ENDFORM.                    "user_command
    Message was edited by: Vijay Babu Dudla

  • In mac os 10.6.6 i can use shift alt F11 to  incremental decrease volume , but now in LION i can't use it , what is the problem ???

    in mac os 10.6.6 i can use shift alt F11 to  incremental decrease volume , but now in LION i can't use it , what is the problem ???

    HellO:
    What type of keyboard do you have?
    In any event, system preferences>keyboard has a chck box to change the behavior of "F" keys.
    Barry

  • How does obj permitted in Determination (Org. Unit) work?

    Hi ,
    How does Object permitted in Detetmnation chck box in the Org Unit works....
    Please explain....
    Many Thanks,
    Neeraj

    Hi Neeraj,
    Object permitted check box in organization model helps in to automatic determination of sales org, division, distribution channel in configuration. And another thing it carries all data to the next level of organization. For example if you have defined the the org structure and you have assigned the value of the field like Language and country in you org. structure then in next level you will get these data also if you have clicked and if you want to create any transaction and you hane assigned your sales area in org. structure it carries the sales area data to your transaction.
    Another example if you have defined your sales area in org. structure and mark the check box in object permitted then while createing the product you can assign the sales area while configuring the product, means it will carry all the sales area data.
    Thanx
    Chinmaya

  • Coding ma selection screen of report

    suppose i hav
    field (all visible)
    a
    b
    c
    and den a check box
    d
    again a field (non visible)
    e
    f
    intial my  chck box d should be blank
    when i tick my d check box
    my field  my invisible field shld be visible
    in my selection screen
    plz help me with the code
    Title was edited by:
            Alvaro Tejada Galindo

    Do something like this .........
    selection-screen begin of block sel2 with frame title z02.
    parameters: p_bos radiobutton group rad1 user-command mode,
                p_rohs radiobutton group rad1 default 'X',
                p_bapi radiobutton group rad1,
                p_wlist radiobutton group rad1.
    parameters: p_alvvar type slis_vari no-display.           
    selection-screen end of block sel2.
    selection-screen skip.
    selection-screen begin of block sel1 with frame title z01.
    select-options: s_matnr for estmj-matnr modif id sub,
                    s_spec for estrh-subid modif id sub.
    parameters: p_skip1 as checkbox default 'X' modif id skp,
                p_force as checkbox modif id trc,
                p_sim as checkbox default ' ' modif id rol,
                p_trace as checkbox modif id trc.
    selection-screen end of block sel1.
    parameters: s_subid type string no-display.
    at selection-screen.
      if sy-ucomm = 'MODE'.
        perform f_adjust_fields.
      else.
        if s_matnr[] is initial and s_spec[] is initial
          and ( p_bos = 'X' or p_rohs = 'X' ).
          message e000(38) with 'Please specify blah blah'
          'or a specification number' '' ''.
        endif.
      endif.
    at selection-screen output.
      perform f_adjust_fields.
    form f_adjust_fields .
      loop at screen.
        if screen-group1 = 'SUB'.
          if p_wlist = 'X'.
            "Hide
            screen-active    = '0'.
            screen-request   = '1'.
            screen-invisible = '1'.
          else.
            "Show
            screen-active    = '1'.
            screen-request   = '1'.
            screen-invisible = '0'.
          endif.
          modify screen.
        elseif screen-group1 = 'SKP' or screen-group1 = 'TRC'.
          if p_bos = 'X' or p_rohs = 'X' .
            "Hide
            screen-active    = '0'.
            screen-request   = '1'.
            screen-invisible = '1'.
          else.
            "Show
            screen-active    = '1'.
            screen-request   = '1'.
            screen-invisible = '0'.
          endif.
          modify screen.
        elseif screen-group1 = 'ROL'.
          if p_rohs = ' ' .
            "Hide
            screen-active    = '0'.
            screen-request   = '1'.
            screen-invisible = '1'.
          else.
            "Show
            screen-active    = '1'.
            screen-request   = '1'.
            screen-invisible = '0'.
          endif.
          modify screen.
        endif.
      endloop.
    endform.                    " f_adjust_fields
    Best!

  • Logic for Selection screen output

    Hi All,
    I have 2  blocks on my selection screen
    First block has 3 radio buttons(a, b,c) and second block has 5 check boxes. When i select radio button 'C' 2 checks boxes of 2nd block  should be activated (enabled).if RB 'C' is not selected those 2 chck boxes should be in disabled position. an any one help me in this regard.(logic)
    Thanks in advance
    P.D .Rao

    Please check the below code:
    REPORT  ypra_sample56.
    SELECTION-SCREEN BEGIN OF BLOCK a1 WITH FRAME TITLE text-001.
    PARAMETER: p_r1 RADIOBUTTON GROUP rg1 USER-COMMAND vend DEFAULT 'X',
               p_r2 RADIOBUTTON GROUP rg1,
               p_r3 RADIOBUTTON GROUP rg1.
    SELECTION-SCREEN END OF BLOCK a1.
    SELECTION-SCREEN BEGIN OF BLOCK a2 WITH FRAME TITLE text-002.
    PARAMETER: p_c1 TYPE c AS CHECKBOX,
               p_c2 TYPE c AS CHECKBOX,
               p_c3 TYPE c AS CHECKBOX,
               p_c4 TYPE c AS CHECKBOX,
               p_c5 TYPE c AS CHECKBOX.
    SELECTION-SCREEN END OF BLOCK a2.
               INITIALIZATION
    INITIALIZATION.
      PERFORM enable_fields.
               AT SELECTION SCREEN OUTPUT
    AT SELECTION-SCREEN OUTPUT.
      PERFORM sel_screen_output.
    *&      Form  sel_screen_output
          Selection screen Output
    FORM sel_screen_output.
      IF p_r1 EQ 'X' OR p_r2 EQ 'X'.
        PERFORM enable_fields.
      ENDIF.
      IF p_r3 EQ 'X'.
        LOOP AT SCREEN.
          IF screen-name EQ 'P_C4' OR screen-name = 'P_C5'.
            screen-active = '1'.
          ENDIF.
          MODIFY SCREEN.
        ENDLOOP.
      ENDIF.
    ENDFORM.                    " sel_screen_output
    *&      Form  enable_fields
          enable fields in selection screen
    FORM enable_fields .
      IF p_r1 EQ 'X' OR p_r2 EQ 'X'.
        LOOP AT SCREEN.
          IF screen-name EQ 'P_C4' OR screen-name EQ 'P_C5'.
            screen-active = '0'.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ENDIF.
    ENDFORM.                    " disable_fields
    Use  screen-input = '1' to enable and screen-input = '0' to disable the checkbox. And if u want to totally make that field disappear from screen use screen-active = '1' and '0'.
    Regards,
    Prakash.
    Message was edited by: Prakash Ramu

  • Commitment to show against PR,PO, GR, GI in report S_ALR_87013542

    Kindly advise me during the purch process for a component attached to a activity do u see the cost moving from Plan column to Commitment COlumn and finally to Actual column .
    I observed the amount moving from Plan(on generation of PR) moving straight away to Actual (after making PO, MIGO and GI).
    I need to see the details of Plan column items from the same report i.e. S_ALR_87013542.

    Thanks for reply. I want to know how to activate the same of for type 20 orders. I tried doing it in IMG by going thru Co->Int ord->Commitment and Fund Management->Activate Commit management. I could not do it as there is no chck box available for ord type 20 which I can tick (as it is available for other order types.)
    Kindly advise.
    Note:- For controlling area I have checked up that the setting is maintained for "1 Components Active " against Commit Managment
    Thanks
    Rajeev

  • Rule returns no agent and workitem sent to all users

    Hi,
    In my workflow I have defined a rule fot a workitem. The task is general task. When this rule does not return a possible agent system is sending workitem to all the users in the system.
    I tried to make the task general forwarding not allowed, then the workitem is not triggered saying no agent assigned though my rule results in an agent.
    I can give a user of workflow administrator or dummy user in rule - function module. But what is the standard way of solving this issue. I was expecting the workflow to go into error mode when my rule - function module returns no agent instead its going to the inbox of all users in the system.
    Please advise.
    Best Regards,
    Aleem Mohiuddin.

    In PFAC ubder Rule definition tab...
    You have a chck box for  "Terminate if rule resolution without result"
    Please cheeck this and try.

  • 10.8.4 Screen Brightness Keys No Longer Work

    I ran updates this morning and I assume it updated to 10.8.4 from the app store updates tab.
    After this update and booting back up the screen brightness keys no longer work. F1 and F2 keys do nothing and they worked fine before the update.
    Anyone else experiencing this? If so know a way to fix it?
    Thanks
    Patrick

    I have been having the same issue and even with updates have continued to have the problem. I was able to find a chck box under the keyboard settings that I never noticed before. When checked it only allows you to use the function keys on the top of the keyboard when pressing the fn (function) key. Simply unchecking this (not sure how it got checked in the first place) solved the issue immediately.

  • Workflow triggers unwantedly

    Hi All ,
    we are a strange issue in EC incoming Invoice workflow in SRM, descriptiojn is as follows
    we have two workflow in our system for invoice one goes through approval and other auto approval , and on the SRM portal at header level in the basic data we have added two custom fields allow NON-PO invoice and Allow RE ,and implemented the doc_check_badi , now at the line item level if we do not give any PO refernce and check/post  then we get an error message saying the entrer PO and the status of the invoice to " to be corrected manually" ideally in the above case approval  workflow should not trigger , it sould only trigger when we tick the allow Non-po invoice check button , and it was working fine , but suddenly after patch upgrade the approval workflow triggers even if we do not tick the chck box at header level . Can anyone suggest did any thing go wrong in patch upgrade , I have checked all the conditions and linkages all are fine, but i guess some standard setting is missing which would have gone missing .

    Dear all,
             Thanks a lot for reading my post with intention to answer.
             The issue is resolved now.
             The problem was at BAdI.To trigger the workflow with event CREATED for purchase requisition, BAdI named ME_REQ_POSTED needs to be used :
             Following coding is used for the same :
    method IF_EX_ME_REQ_POSTED~POSTED.
      DATA: WA_EBAN TYPE EBAN.
      DATA L_S_EBAN TYPE UEBAN.
      DATA: OBJKEY TYPE SWEINSTCOU-OBJKEY .
      LOOP AT IM_EBAN INTO L_S_EBAN .
      ENDLOOP.
        IF ( SY-TCODE = 'ME51N' AND SY-UCOMM NE 'MECHECKDOC' ) OR SY-TCODE = 'ME52N'  .
          IF  L_S_EBAN-BSART = 'ZNB'.
            OBJKEY = L_S_EBAN-BANFN.
            SELECT SINGLE * FROM EBAN INTO WA_EBAN WHERE BANFN EQ OBJKEY.
            IF SY-SUBRC NE 0.
              CALL FUNCTION 'SAP_WAPI_CREATE_EVENT'
                EXPORTING
                  OBJECT_TYPE             = 'BUS2105'
                  OBJECT_KEY              =  objkey
                  EVENT                   =  'CREATED'
                 COMMIT_WORK             = 'X'
                 EVENT_LANGUAGE          = SY-LANGU
                 LANGUAGE                = SY-LANGU
                 USER                    = SY-UNAME
    *   IFS_XML_CONTAINER       =
    * IMPORTING
    *   RETURN_CODE             =
    *   EVENT_ID                =
    * TABLES
    *   INPUT_CONTAINER         =
    *   MESSAGE_LINES           =
    *   MESSAGE_STRUCT          =
            endif.
          endif.
        endif.
       endmethod.
              I have missed the loop block.That's why the workflow was not triggering.
    Regards,
    S.Suresh

  • Problem:Get Referance To CheckBox Element in Table

    Hello Forum,
    I created a table with a checkbox column,I also enable the multipule dis/selection buttons - the creation was done like in the "Table Component Sample Project" - in http://blogs.sun.com/divas.
    Following that, I add a text field to the jsp page.
    In this text field the user can set a range of rows (for example 1-5) and when he submit the page the rows,1 to 5, are selected in the table.
    Till now every thing is OK except the checkbox element that is not selected and remain the same (without the selection).
    I need to now how I can get a referance to each checkbox item in each table row?and how to set it to selected or unselected?
    Note: the checkbox & the table are bound to the selected property in the session bean:
    selected property:
    public Object getSelected() {
    RowKey rowKey = tableRowGroup1.getRowKey();
    return tablePhaseListener.getSelected(rowKey);
    public void setSelected(Object object) {
    RowKey rowKey = tableRowGroup1.getRowKey();
    if (rowKey != null) {
    tablePhaseListener.setSelected(rowKey, object);
    public boolean isCurrentRowSelected() {
    RowKey rowKey = tableRowGroup1.getRowKey();
    return tablePhaseListener.isSelected(rowKey);
    public Object getSelectedValue() {
    RowKey rowKey = tableRowGroup1.getRowKey();
    return (rowKey != null) ? rowKey.getRowId() : null;
    Thanks in advance.
    EDSD.

    Hi All,
    Actually, the chck box is in a user defined value node under the RFC node. Since it had no values it was in disabled form. So i looped through the RFC node and created element for this new value node of mine and it got enabled.
    Thanks
    Yusuf

  • MM01 Err.

    D/ Friends,
    MM01 Err: Batch management requirement cannot be changed; choose "Display errors".
    Material Type is FERT. When I'm ticking the chck box of Batch Management in Sales: General/ Plant tab & Plant Data / Stor.1 (Field name: XCHPF), I'm getting the above err & althogh it is an Information Message (green) still I'm not able to Save. Plz help.
    Message no. M3530.
    Thank you very much.

    Hi
    You can not tick the Batch Management in MaterMaster view. As some documents have already been created from the material and these documents inncludes sales order ,stock . If you want to have the tick in Batch Management than you have to reverse the stock and cancel all the subsiquent documents of that particular matrial.......
    cheers
    shalsa007...........

  • Check box information

    Dear Friends,
    Good afternoon
    here i got a requirement, where iam using checkbox option,
    there are two check boxes, here i need is when i chck one
    check box other one has to un check like radiobutons.
    Thanks & Regards
    Jagadeeshwar.B

    Hi,
    Try this:
    DATA: v_seleCted TYPE string.
    PARAMETERS: p1 TYPE checkbox USER-COMMAND one,
               p2 TYPE checkbox USER-COMMAND two.
    AT SELECTION-SCREEN.
      GET CURSOR FIELD v_selected.
      CASE v_selected.
        WHEN 'P1'.
          CLEAR p2. p1 = 'X'.
        WHEN 'P2'.
          CLEAR p1. p2 = 'X'.
      ENDCASE.
    Regards,
    Aditya

  • Contact form check boxes will not work on a Tablet

    Hi there,
    I created a website (Desktop) and a mobile version (Phone).  I did not create one for a tablet but have relied on the Desktop version if someone views it on a Tablet.
    Here's the thing, I created a contact form with checkboxes.  It works great on a desktop (because people check the boxes with their mouse), however, it doesn't work on a Tablet, when you try and check the boxes with your finger.
    Help!

    Please share the site URL.

  • Expand Text Box? "Advanced" text options not hidden?

    The title text box/editor is very small in the 10.2 update.  It's just big enough for 2 lines of text.  I find it fairly inconvenient to have it so small (I am referring to the text box in the inspector).  I'm guessing there is no way to expand this to fit more lines of text in, but if anyone knows how that'd be sweet! Otherwise I'm just crossing my fingers it gets a quick update since I'm using it every day for work.
    Also, the "advanced" tab always being collapsed in the basic text editing tools is annoying, too.  I use this every time I make a title(which I'm making two videos a day, so it's a little more tedious now after the update).  Personally, for a professional program I would consider the options in the "advanced" section to actually be basic and fairly necessary...based on how I use it, so maybe I'm not a normal case.
    Nothing is broken, just less convenient...
    Thanks y'all!

    That is a wonderful idea if I could find where to do that (maybe another feedback will be to make finding the feedback area easier (: ). Where can I find the feedback area?  Thanks for the quick reply as well!

Maybe you are looking for

  • RH10 and Windows 8.0/8.1

    Hi Everyone, Please can some advise what the current state of play is with RH10 and windows 8.0 and window 8.1.  i.e does it work properly? I am expecting to be asked to document a package running under window 8.0 or 8.1 shortly wondered if my copy o

  • IPhone 5; iOS 8.1.2: How do I remove a deleted App from Cloud storage so that I may do a fresh install from the App Store?

    I Deleted a faulty App in order to do a fresh re-install from the App Store - but it keeps installing from Cloud storage and I don't know whether this is the original App. How do I stop this happening?

  • Dynamic visibility for icon

    Hi friends, In my current dasboard i am using dynamic visibility functionality. So for that i am using 2 icons for pricing & costing,2 pie charts for pricing & costing. for this i map like for each icon in destination property i gave i blank cell in

  • Lost podcasts and music

    This was an unhappy discovery on April Fools' Day; tonight when I fired up iTunes to download podcasts and sync my 2nd gen shuffle for work tomorrow, it's like the program was newly installed and running for the first time.  All the podcast subscript

  • The stdout and stderr in javaw.exe enviroment

    hi, when i run a class using java.exe enviroment,the stdout and stderr is the console,but can someone tell me that where the stdout and stderr in javaw.exe is? or javaw.exe don't have stdout and stderr ? thanks for your answer