Table loading with empty selected row

hi i have below table ,when the page load it has empty row created, i what it to show that message emptyText=No data to Display when the page load,the table was created based on the bean,am in jdeveloper 11.1.1.6.0,i don't what to use #{!adfFacesContext.initialRender} becuase it does not allow me to add value in the table
<af:table
                          var="row" rows="#{bindings.addmemberBean.rangeSize}"
                          emptyText="#{bindings.addmemberBean.viewable ? 'No data to display.' : 'Access Denied.'}"
                          fetchSize="#{bindings.addmemberBean.rangeSize}"
                          rowBandingInterval="0" id="t1"
                          binding="#{pageFlowScope.MemberBean.tempTable}"
                          value="#{bindings.addmemberBean.collectionModel}"
                          rowSelection="multiple"
                          selectionListener="#{bindings.addmemberBean.collectionModel.makeCurrent}">
                  <af:column sortProperty="name" sortable="false"
                             headerText="#{bindings.addmemberBean.hints.name.label}"
                             id="c6" width="106">
                    <af:outputText id="ot2" value=" #{row.name}"/>
                  </af:column>
                  <af:column sortProperty="surname" sortable="false"
                             headerText="#{bindings.addmemberBean.hints.surname.label}"
                             id="c4" width="104">
                    <af:outputText value="#{row.surname}" id="ot3"/>
                  </af:column>
                  <af:column sortProperty="emailaddress" sortable="false"
                             headerText="#{bindings.addmemberBean.hints.emailaddress.label}"
                             id="c5" width="105">
                    <af:outputText value="#{row.emailaddress}" id="ot4"/>
                  </af:column>
                  <af:column sortProperty="firstname" sortable="false"
                             headerText="#{bindings.addmemberBean.hints.firstname.label}"
                             id="c3" width="105">
                    <af:outputText value="#{row.firstname}" id="ot1"/>
                  </af:column>
                  <af:column id="c7" headerText="AddUser">
                    <af:selectBooleanCheckbox
                                              label="Label 1" id="sbc1"/>
                  </af:column>
                  <af:column headerText="#{bindings.addmemberBean.hints.name.label}"
                             id="c8" visible="false">
                    <af:inputText value="#{row.bindings.name.inputValue}"
                                  label="#{bindings.addmemberBean.hints.name.label}"
                                  required="#{bindings.addmemberBean.hints.name.mandatory}"
                                  columns="#{bindings.addmemberBean.hints.name.displayWidth}"
                                  maximumLength="#{bindings.addmemberBean.hints.name.precision}"
                                  shortDesc="#{bindings.addmemberBean.hints.name.tooltip}"
                                  id="it2">
                      <f:validator binding="#{row.bindings.name.validator}"/>
                    </af:inputText>
                  </af:column>
                </af:table>and i don't what to user
public void emptytable(){
        ViewObjectImpl vo = this.getAddMemberVo1();
        vo.executeEmptyRowSet();
    }because am not using a view,am using a bean
Edited by: adf0994 on 2012/11/06 10:38 AM
Edited by: adf0994 on 2012/11/06 10:41 AM
Edited by: adf0994 on 2012/11/06 10:44 AM

public Beantest() {
super();
addmemberBean = new ArrayList<AddmemberBean>();
This way, the list will be completely empty when your bean is created.
And thus, your table shouldn't contain any data.

Similar Messages

  • Problem with showing selected rows

    Hi,
    I have writed ALV report with OO and some input field(dialog programming) in same screen.I want to select rows but rows looking like unselected(all of them) on ALV report when i fill input field after selected rows and use enter key.I didn't understand
    why my input fields reset my ALV report.

    After selecting your Input fields, & when you processing the data, check in debugging mode, whether your ALV report (Table) is getting refreshed or not. If its refreshing, try it not to get refreshed, it solves your problem.
    -Dileep .C

  • Dynpro table - footer and highlight selected row

    I have two questions reg. tables: WebAS 6.40 SP13
    a) Although I set the property footerVisible to false, I do still have this navigation footer visible. Is there another condition which must be met in order to hide it (e.g. design alternating works only in readOnly mode)?
    b) Is there a way to have selectionMode Single without this box in the first column (only highlighting the selected row with this orange frame).
    Thanks F.

    Thanks folks for your support. Maybe I should have described what I am going to do: I want to realize a table where the first two columns are fixed, while the rest of the columns are scrollable (horizontally).
    I have used two tables, both referring to the same model (singleton). The second table (to the right) is in a scrollable container, so I can scroll horizontally. For the user this looks like one table, only the second part is scrollable. All works fine, except for the two things I have posted:
    a1) Since I already have a footer for navigation in the first table, I want to hide the one in the second table.
    a2) In the NWStudio the footer is hidden when I set footerVisible false, but in the Browser it is still there.
    b1) Since I have already the lead selection boxes in the first table, I do not need it in the second.
    b2) However, I still want to indicate the selected row (spanning two tables). Since the same(!) model data are used, this works when I have selection mode single. I do not even have to program anything, any selection in the first table highlights the same row in the second - only I do not want to have the boxes twice.

  • Multiple selection in table not returning all selected rows

    I am unable to obtain multiple selected rows from a table. I only get a single row no matter how many I select.
    I have the following table
    <af:table value="#{bindings.TargetSelectorTargets1.collectionModel}"
    var="row"
    rows="#{bindings.TargetSelectorTargets1.rangeSize}"
    emptyText="#{bindings.TargetSelectorTargets1.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.TargetSelectorTargets1.rangeSize}"
    rowBandingInterval="0"
    filterModel="#{bindings.ImplicitViewCriteriaQuery2.quickQueryDescriptor}"
    queryListener="#{bindings.ImplicitViewCriteriaQuery2.processQuery}"
    filterVisible="true" varStatus="vs"
    selectedRowKeys="#{bindings.TargetSelectorTargets1.collectionModel.selectedRow}"
    selectionListener="#{bindings.TargetSelectorTargets1.collectionModel.makeCurrent}"
    rowSelection="multiple"
    partialTriggers="::qryId1" id="t3"
    styleClass="AFStretchWidth"
    binding="#{testbean.targetselectortable}">
    <af:column sortProperty="Name" filterable="true"
    sortable="true"
    headerText="#{bindings.TargetSelectorTargets1.hints.Name.label}"
    id="c2">
    <af:outputText value="#{row.Name}" id="ot33"/>
    </af:column>
    <af:column sortProperty="Type" filterable="true"
    sortable="true"
    headerText="#{bindings.TargetSelectorTargets1.hints.Type.label}"
    id="c11">
    <af:outputText value="#{row.Type}" id="ot34"/>
    </af:column>
    </af:table>
    and I have the following bean method to get the selected rows
    RowKeySet rks = targetselectortable.getSelectedRowKeys();
    Iterator itr = rks.iterator();
    Object key;
    while(itr.hasNext())
    key = (Object)itr.next(); targetselectortable.setRowKey(key);
    Object o = targetselectortable.getRowData();
    JUCtrlHierNodeBinding rowData = (JUCtrlHierNodeBinding) o;
    Row row = rowData.getRow();
    System.out.println(row.getAttribute("Name").toString());
    and I only get one row.
    Note: selectedRowKeys="#{bindings.TargetSelectorTargets1.collectionModel.selectedRow}"
    shows a warning that "reference selectedRow" not found.
    Can I do something to make it work?

    can u change the logic like
    RowKeySet rowSet = targetselectortable.getSelectedRowKeys();
    Iterator rowSetIter = rowSet.iterator();
    > while (rowSetIter.hasNext()) {
    > List l = (List)rowSetIter.next();
    > Key key = (Key)l.get(0);
    >
    FacesContext fc = FacesContext.getCurrentInstance();> BindingContainer bindings =
    > (BindingContainer)fc.getApplication().evaluateExpressionGet(fc,
    > "#{bindings}",
    > BindingContainer.class);
    >
    DCBindingContainer bindings = (DCBindingContainer)bindings ;> DCIteratorBinding iter =
    > bindings.findIteratorBinding("TargetSelectorTargets1Iterator");
    >
    > iter.setCurrentRowWithKey(key.toStringFormat(true));
    > Row r = iter.getCurrentRow();
    > System.out.println(row.getAttribute("Name").toString());
    > }

  • Table section with 3 header rows pagination issue

    Hi experts.
    I have a table section pagination issue. In my case the table section combines 3 header rows.
    Down bellow the series of screenshots I hope they describe my example well (click on screenshots to enlarge).
    1) The data context
    2) Layout elements
    Here is my issue (table header output at the end of the page but there is no data row):
    As you can see on the first page there is no more place for a data row but the header still exists.
    if I set keep with next flag on the pagination tab for all header rows the result will be:
    Is it possible somehow to fix it?
    I would like to have the header row output on the page only if a data row exists bellow the header, the footer should only output if a data row exists above.
    Here is PDF output:
    https://docs.google.com/viewer?a=v&pid=explorer&chrome=true&srcid=0B4wQz1XhRuysMzhiN2EyYzM tMDdjZS00Yzc3LWIyNTgtODUzZWRhY2MwYjMx&hl=en_US
    https://docs.google.com/viewer?a=v&pid=explorer&chrome=true&srcid=0B4wQz1XhRuysNmYxNGFlOTk tZGQ2MS00MDQ3LTgyMWUtZTg4YmEwYWRmMWQ4&hl=en_US

    The solutions is easy. You´d better create the corresponding DDIC objects hierarchy in the backend and then use the form to PRINT the prepared data ONLY. I mean:
    In your backend:
    in a row there is a dataset (table) and a optional dataset (table) == DDIC structure with two "fields" of type "table" = row A
    use this "row" to create the "outer" table == DDIC table type with row A
    Then you can just drag and drop this structure in your adobe form and will have do difficult with formatting.
    Regards Otto

  • Full Load  with deletion selections  in Data Mart

    Hi,
    I have a DataMart INFOCUBE “A” to INFOCUBE “B”, Full loads must be diary. But the infocube “A” have snapshot, by the zvalid characteristic (AAAA.MM) Eg. 2006.06.
    And the INFOCUBE “B” dosen’t have , it needs the last snapshot from INFOCUBE “A”.
    I am using a delete selection (“deleted request from infocube after update”) from the infopackage with “infosources are the same ” checked, “Datasources are the same” checked, “Source Systems are the same” checked, and with the “selections are” same or more comprehensive, and I develop a abap routine in the data selection of the characteristic zvalid to create the  year.month necessary for the extraction and i have other selection on 0project characteristic. But when beginning a new month, it do not delete the last request, it inserts the new one. ( even when  the “selections are” overlapping).
    Example that what I need:
    31.01.2006
    In the infocube A.
    0project| Zvalid |    amount
    PROJ1   |12.2005  |  300
    PROJ1   |01.2006  |100
    In the infocube B
    0project |Zvalid  |   amounT
    PROJ1|01.2006     |100
    01.02.2006
    In the infocube A.
    0project |Zvalid   |  amount
    PROJ1|12.2005  | 300
    PROJ1| 01.2006  | 100
    PROJ1| 02.2006  |  200
    In the infocube B
    0project |Zvalid   |  amount
    PROJ1 |02.2006     |    100
    What is the correct combination in the “deleted request from infocube after update”?
    I would appreciate yor help.
    Regars
    Victoria Leó

    Do you upload the cube from other sources too? Otherwise there is a flag in the InfoPackage that is called 'Delete entire content of data target'.
    It's under Data targets and you can change it if you select 'Select Data Targets'.
    Best regards
       Dirk

  • Problem getting the Table Data with the selection listener

    Hi All,
    I am working on a tree and table components. I wrote a logic in the backing bean in such a way that when I expand a node the child nodes for the tree are getting added dynamically and also getting the data in the table for the node expanded in the tree using the same Toplink Query . I added the selection listener for the table and when I am selecting a row in the table I am getting the Null Pointer Exception as the RowKeySet Value for the row selected is coming null.
    Can any one please help me out with this problem
    I will be very thankful
    Regards,
    Madhavi.

    Hi All,
    I am working on a tree and table components. I wrote a logic in the backing bean in such a way that when I expand a node the child nodes for the tree are getting added dynamically and also getting the data in the table for the node expanded in the tree using the same Toplink Query . I added the selection listener for the table and when I am selecting a row in the table I am getting the Null Pointer Exception as the RowKeySet Value for the row selected is coming null.
    Can any one please help me out with this problem
    I will be very thankful
    Regards,
    Madhavi.

  • Report Painter problem with empty selection variant

    Hello,
    I use the cost center selection variant for the column definition in Report Painter as characteristic value. This selection variant get only the cost centers which are valid from 1.1.2003 to 31.12.2004. The column of the report created by Report Painter which uses this selection variant display value without taking into account limitations follow from this selection variant. I expect value zero for year fiscal year 2007 in this column, because the cost centers are invalid in 2007 year but the report displays different value. The problem appeared after upgrade from 4.6C to ECC 6.0.
    Best Regards
    ZD

    My problem with Report Painter occurred when I was creating my own report based on 1VK library.
    In my example I used in the column definition characteristic Cost
    Center, which is determined by selection variant, and Basic Key Figure
    equal SWKG-Costs. For system date (18.07.2007) there are no valid
    master data for the characteristic Cost Center but when I execute
    report for fiscal year 2007 the column display no-zero value without
    taking into account value of Characteristic Cost Center. I expected
    zero value in this column because there are no postings for Cost
    Centers (no valid cost centers were selected) in financial year 2007.
    Could you help me with this problem ?

  • Sys_refcursor from a table variable with columns per row not fixed

    i am creating a crosstab aggregation report where the number of columns in a table is determined at runtime from the dataset.
    so, i have:
    type strArray is table of varchar2(32767);
    type strArray2 is table of strArray index by pls_integer;
    i want to return a sys_refcursor (created from a strArray2 type variable) so a BIRT .rptdesign file can use it.
    sqldeveloper complains table not found when i do open for on the sys_refcursor.
    i cannot do a table of user defined record type because the number of columns depends on the dataset and therefore not fixed.
    how to get the sys_refcursor which upstream api can use ?

    Not exactly sure what you want to do and why... Keep in mind that pulling data from the SQL engine into the PL/SQL engine (or into external code lke Java) and processing it there, can never be as fast or scale as well as crunching that data in the SQL engine instead. So where processing can be done in the SQL engine, do it there.
    As for a 2D array definition and SQL projection, you can have a look at something like the following. Not sure if this is the approach you have in mind though. (note: the implicit cursor used could very easily be exposed to an external client via a ref cursor interface):
    SQL> --// 1 dimensional array definition
    SQL> create or replace type T1D is table of varchar2(4000);
      2  /
    Type created.
    SQL> --// 2 dimensional array definition
    SQL> create or replace type T2D is table of T1D;
      2  /
    Type created.
    SQL>
    SQL> declare
      2          arr2D   T2D;
      3  begin
      4          select
      5                  T1D( object_id, object_type, object_name )
      6                          bulk collect into
      7                  arr2D
      8          from    user_objects;
      9 
    10          for x in 1..2   --// just showing the 1st 2 elements and not arr2D.Count
    11          loop
    12                  for y in 1..arr2D(x).Count
    13                  loop
    14                          DBMS_OUTPUT.put_line( 'x='||x||' y='||y||' value='||arr2D(x)(y) );
    15                  end loop;
    16          end loop;
    17  end;
    18  /
    x=1 y=1 value=296403
    x=1 y=2 value=PACKAGE
    x=1 y=3 value=SYSLIB
    x=2 y=1 value=296404
    x=2 y=2 value=PACKAGE BODY
    x=2 y=3 value=SYSLIB
    PL/SQL procedure successfully completed.
    SQL>

  • To capture the selected rows along with edited field contents in alv report

    Dear All,
             I do have requirement where, in alv report output one field is editable and need to save the content of the edited field along with the selected rows.
             For example If there are 10 records displayed in the alv output with 20 fields.
    Out of this 20 fields one field (say XYZ) is editable. Also i have already created a new pushbutton (say ABC) on alv output. Now in the alv output if we maintain some value in the field (XYZ ) for the 2nd and 4th record and select this two records, and when clicked on the pushbutton (ABC) it has to update the DB table.
          I am using the Func Module  'REUSE_ALV_GRID_DISPLAY'. 
          Your early reply with sample code would be appreciated.
    Thanks in Advance.

    HI Naveen ,
    There is an import parameter "i_callback_program" in the function module,
    plz pass the program name to it.
    Capture the command by passing a field of type sy-ucomm to "I_CALLBACK_USER_COMMAND ".  Check the returned command and
    and program a functionality as desired.
    u can try the event double_click or at line selection. there u can use READLINE command to c if the line has been selected.
    In case it is , process the code segment.
    Regards
    Pankaj

  • Passing selected rows in a table to Popup Iview

    Hi all,
    I have a main iview in which i search and display some data in a table. Users can select multiple rows from the table and upon clicking on a button in the table toolbar, all the selected rows should be passed to a popup iview.
    But, when i tried, only one value is passed to the popup.
    I need to update a set of rows together from the popup iview.
    Is it a limitation of pop iviews in VC, or did i miss out anything?
    I have selected "multiple select" option for the source table.
    Can anyone advice us on this???
    Thanks alot in advance
    Shobin

    Hi Sreeni,
    Thanks alot for your reply.
    As I saw in some forum posts in SDN, multiple data rows can not be passed to a pop up.
    My application has a list of submitted appointment orders which the authorized person can  approve. I wanted a popup in order to provide a confirmation message when the user multi select and approve many AOs together.
    I found a work around without using pop ups. Instead, I used layers to show the confirmation message. I passed the selected rows to another table using signal in and out.
    It works now.
    Thanks alot
    Shobin

  • How can I get the index of the selected row, ALV

    In alv I need to get the selected row id and then calling a screen to show the detailed infomation on this row and providing the ability to update the row.
    I know how to do but do not know how to get the selected index of the alv grid.
    If it was desired based on just double click, it was ok but I have to provide a button and when it is clicked the detailed screen will come with the selected row details.
    Thanks everyone.
    Deniz.

    Hi Deniz,
    While defining the internal table which u pass in ALV_GRID function module, define a field (suppose CHECK type c) in the structure of that internal table.
    and while defining field layout, pass the value 'CHECK' to the field BOX_NAME of the layout.
    Now, when you execute the report, a selection box will be displayed infront of every record. If you select that record and press the button on application tool bar, the field 'CHECK' in the internal table will be having the value 'X'... By looping throught this internal table where check = 'X', you can achieve your functionality.
    Example:
         Structure for output details
    TYPES: BEGIN OF GS_OUTPUT.
            INCLUDE STRUCTURE ZAS_WATER_QLTY_REP.
    TYPES: CHECK(1) TYPE C,
           END OF GS_OUTPUT.
        Internal    table for output details
    DATA: GT_OUTPUT   TYPE STANDARD TABLE OF GS_OUTPUT.
    Before calling the function module to display ALV
    grid, define a layout usine
    Local workarea
      DATA: LW_LAYOUT  TYPE SLIS_LAYOUT_ALV.
    Local constants
      CONSTANTS: LC_UFORM  TYPE SLIS_FORMNAME
                        VALUE 'ALV_USER_COMMAND'.
    LW_LAYOUT-BOX_FIELDNAME = 'CHECK'.    "Field for checkbox
    This function module outputs an internal table with whatever
    structure in the form of a formatted single- order multi-line list
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
           EXPORTING
                I_CALLBACK_PROGRAM       = LV_REPID
                I_CALLBACK_PF_STATUS_SET = G_FORM_SET_PF_STAT
                I_CALLBACK_USER_COMMAND  = LC_UFORM
                I_STRUCTURE_NAME         = LV_ZAS_WATER_QLTY_REP
                IS_LAYOUT                = LW_LAYOUT
                IT_FIELDCAT              = G_FIELDCAT_TAB[]
                I_DEFAULT                = GC_X
                I_SAVE                   = LC_A
                IS_VARIANT               = G_VARIANT
                IT_EVENTS                = G_EVENTS_TAB[]
                IT_EVENT_EXIT            = G_EVENT_EXIT_TAB[]
                IS_PRINT                 = G_PRINT
                I_SCREEN_START_COLUMN    = G_SCREEN_START_COLUMN
                I_SCREEN_START_LINE      = G_SCREEN_START_LINE
                I_SCREEN_END_COLUMN      = G_SCREEN_END_COLUMN
                I_SCREEN_END_LINE        = G_SCREEN_END_LINE
           TABLES
                T_OUTTAB                 = GT_OUTPUT
           EXCEPTIONS
                PROGRAM_ERROR            = 1
                OTHERS                   = 2.
    and in the form alv_user_command
    FORM ALV_USER_COMMAND USING UCOMM SELLINE TYPE SLIS_SELFIELD.
    case ucomm.
    Lets hope that the user command of the push button in * PUSH
    when 'PUSH'.
    loop at gt_output where check = 'X'.
    You can write your code here...
    endloop.
    endcase.
    ENDFORM.
    Hope this helps...
    Best Regards,
    Phani.
    Message was edited by:
            Sivapuram Phani Kumar

  • RichTable moves Selected Row to the Top of my tableview on refresh

    When I issue a partialtrigger on a table with a selected Row, the selected row is repositioned to be the first Row that is available. The actual positions of the rows in the tables dont change, the selected row is just scrolled to the top... I need to suppress this behavior. Anyone have any Ideas?

    Without an exact jdve version we can't do much.
    Check these properties of hte table
    activeRowKey, displayRowKey and displayRow. Then read the doc for the properties and set them according your use case.
    Timo

  • Submit report with dynamic selections

    Hi All,
    I am trying to Submit a report with dynamic selections. I am using the option SUBMIT REPORT WITH FREE SELECTIONS.
    But the dynamic selections are not getting passed.
    Request you to kindly provide some inputs
    My code is
    DATA: trange TYPE rsds_trange,
          trange_line LIKE LINE OF trange,
          trange_frange_t_line LIKE LINE OF trange_line-frange_t,
          trange_frange_t_selopt_t_line LIKE LINE OF trange_frange_t_line-selopt_t,
          texpr TYPE rsds_texpr.
    trange_line-tablename = 'PA0002'.
    *trange_frange_t_line-tablename = 'PA0002'.
    trange_frange_t_line-fieldname = 'GBJHR'.
    trange_frange_t_selopt_t_line-sign   = 'I'.
    trange_frange_t_selopt_t_line-option = 'EQ'.
    trange_frange_t_selopt_t_line-low    = '1987'.
    trange_frange_t_selopt_t_line-high   = '1987'.
    APPEND trange_frange_t_selopt_t_line TO   trange_frange_t_line-selopt_t.
    APPEND trange_frange_t_line TO trange_line-frange_t.
    APPEND trange_line TO trange.
    CALL FUNCTION 'FREE_SELECTIONS_RANGE_2_EX'
      EXPORTING
        field_ranges = trange
      IMPORTING
        expressions  = texpr.
    submit RPCADVQ0
    VIA SELECTION-SCREEN
                    WITH SELECTION-TABLE rspar_tab
                    WITH FREE SELECTIONS it_texpr
                    and returN.
    Kindly provide your inputs
    Regards
    Reshma

    Hi Reshma,
    Use the FM - RS_REFRESH_FROM_DYNAMICAL_SEL before FREE_SELECTIONS_RANGE_2_EX.
      data: trange  type rsds_trange,
              g_repid type sy-repid.
    g_repid = 'RPCADVQ0'.
      call function 'RS_REFRESH_FROM_DYNAMICAL_SEL'
        exporting
          curr_report        = g_repid
          mode_write_or_move = 'M'
        importing
          p_trange           = trange
        exceptions
          not_found          = 1
          wrong_type         = 2
          others             = 3.
      if sy-subrc eq 0.
    " Do the changes to the trange
    CALL FUNCTION 'FREE_SELECTIONS_RANGE_2_EX'
    EXPORTING
    field_ranges = trange
    IMPORTING
    expressions = texpr.
    submit RPCADVQ0
    VIA SELECTION-SCREEN
    WITH SELECTION-TABLE rspar_tab
    WITH FREE SELECTIONS it_texpr
    and returN.
    endif.
    Cheers,
    Kothand

  • Retrieve value form Table view when the selection mode is 'NONE'

    Hi,
    I am new to ABAP, Can anyone tell me how to reterieve the records of the tableview, i have the selection mode as 'NONE'. When the button is clicked i need to reterieve all the values from the table and display it in the next screen.
    I am able to diaplay the table values , but i am unable to reterieve the values on Inputprocessing.
    Its very urgent. Please help me
    Regards,
    Jose

    you are able display the table view means, you have the data in internal table.
    you need all the records that are displayed in the table view with out selection. why dont you use that internal table itself, which is displayed as table view.
    vijay

Maybe you are looking for

  • Biggest and fastest hard drive I can put into my Thinkpad X61

    What is the biggest and fastest hard drive I can put into my Thinkpad X61 (type 7673-AG2)? Here's someone who used a Seagate Monentus: I'm surprised that the vintage 2007 core2duo Thinkpad X61 supports Sata 3Gb/s.  Has it been around that long? The L

  • Mountain Lion Messages behind a proxy

    How can I configure messages to work behind my proxy. Usually there is a proxy to put the proxy information in via the application but I am unable to find this field in messages on mountain lion.

  • Share via email function missing in Pages

    I use the share via email function 100+ times a day. I'm a power user with it and my business work efficiency depends on it as most of my clients work with MS Office. Now that share via email function is completely missing in Page 5.5 (Yosemite). Did

  • CTM run in APO

    Dear All, I am learning APO.I can do the DP & SNP (Network ,Multilevel) heuristics Runs on APO 3.1 very well. I would like to know how to Run CTM ? What is CTM? and most important what are the settings required for CTM run in APO? Can anybody help &

  • When we increase font size image also increase and becomes blurred, how to solve this?

    When we increase font size then image also become large and that's why they becomes blurred, there should be a way to increase only font size not image or symbols, so that they will clear. I think in safari i saw this feature.