Plz. help,table does not show value for one field

hi all,
i have a really strange problem , i have a string field in access database that contains the date and time value,this field for some strange reason does not show in my table created through html,
i tried all combination(arranging the fields) ,renaming it w/o help, it shows the value using out.println(but then why is it not showing me in the table???)
plz. help ASAP.
the code is as under
<HTML>
<HEAD><TITLE> LOGGED IN ok</TITLE> </HEAD>
<BODY bgcolor = "yellow">
<%@ page import = "java.sql.*" %>
     <%! // declaring variables
String s = "";
java.sql.ResultSet rs=null,rs1=null,rs2=null;
java.sql.Connection con;
java.sql.Statement stmt,stmt1;
String empId = "",compid ="",calltype ="",probheader="",probdescription ="",probcomment ="",priority ="",a="";
%>
Following are the pending complaints ..
     <TABLE BORDER=1 CELLSPACING=0 CELLPADDING=0 width="100%">
     <TR>
     <TD> ComplainD </TD>
<TD> ComplainId </TD>     
<TD> ProbHeader </TD>     
<!--
<TD> ProblemDescription </TD>     
<TD> Problem Comments </TD>     
-->
</TR>
     <%
     try
     Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
     java.sql.Connection con = java.sql.DriverManager.getConnection("jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};" +"DBQ=c:/vishal/HelpDesk.mdb;DriverID=22;READONLY=false","","");
     //java.sql.Connection con = java.sql.DriverManager.getConnection("jdbc:odbc:Portal");
          java.sql.Statement stmt = con.createStatement(java.sql.ResultSet.TYPE_SCROLL_INSENSITIVE,java.sql.ResultSet.CONCUR_READ_ONLY);
          s = "select * from Complains";
     java.sql.ResultSet rs = stmt.executeQuery(s);               
                    while(rs.next())
                    //getting data from database
                                                       empId = rs.getString("EmpId");                    // out.print(" " + empId);
          compid = rs.getString("ComplainId");
          // out.print(" " + compid);
          calltype = rs.getString("CallType");
          // out.print(" " + calltype);
                    a = rs.getString("Complaindate"); //problem with this field
out.print(a); // prints value
          %>               
                    <TR>      
                    <TD> <%=compid %> </TD>
                    <TD> <%=calltype %> </TD>     
                    <TD <%=a %> </TD>
                                   </TR>
<%
                    }//while loop          
     %>
     </TABLE>     
     <%                
     }//try
          catch(Exception ep)
          out.println(ep);
          System.exit(1);
%>
</BODY>
</HTML>
value in database is as follows :-
Complaindate
5/18/2003 1:30:27 PM
5/18/2003 7:32:43 PM
5/18/2003 7:34:02 PM
5/18/2003 7:49:19 PM
5/18/2003 7:50:27 PM
5/18/2003 10:49:42 PM
5/18/2003 10:58:24 PM
thanking u ,plz ask if any further clarifications

Hi
I am seeing nothing wrong with ur code..
what about "view source" result.....plz check with that...
whether u r getting all the trs and tds...
revert back on this Issue..
Mars Amutha

Similar Messages

  • I have downloaded ADE 3 on my macbook.  It did recognize my Aluratek Libre the first time I used it but now it does not.  I plug my libre in start ADE and the Libre does not show up for me to transfer my ebooks from the library to my libre.  Help pls

    I have downloaded ADE 3 on my macbook. It did recognize my Aluratek Libre the first time I used it but now it does not. I plug my libre in start ADE and the Libre does not show up for me to transfer my ebooks from the library to my libre. Help pls

    If you have iTunes 11 on your computer then you can enable the left-hand sidebar on it via option-command-S on a Mac, control-S on a PC - when connected (and if your computer's iTunes is up-to-date) your iPad should then appear on that sidebar under a 'Devices' heading :
    If you select the iPad on that sidebar you can then use the Movies tab on the right-hand side of the iTunes screen to select and sync that film to your iPad's Videos app.
    Has your iPad been synced to the computer before ? If not then you might find this page for syncing to a new computer useful : https://discussions.apple.com/docs/DOC-3141

  • JTable Problem (table does not show rows and columns)

    Hi All,
    What the table is suppose to do.
    - Load information from a database
    - put all the values in the first column
    - in the second column put combobox (cell editor with numbers 1-12)
    - the 3rd column put another combobox for something else
    - the 4th column uses checkbox as an edit
    The number of rows of the table should be equal to the number of
    record from
    the database. If not given it default to 20 (poor but ok for this)
    The number of columns is 4.
    But the table does not show any rows or
    column when I put it inside a
    JScrollPane (Otherwise it works).
    Please help,
    thanks in advance.
    public class SubjectTable extends JTable {
    * Comment for <code>serialVersionUID</code>
    private static final long serialVersionUID = 1L;
    /** combo for the list of classes */
    protected JComboBox classCombo;
    /** combo for the list of subjects */
    protected JComboBox subjectsCombo;
    /** combo for the list of grade */
    protected JComboBox gradeCombo;
    boolean canResize = false;
    boolean canReorder = false;
    boolean canSelectRow = false;
    boolean canSelectCell = true;
    boolean canSelectColumn = true;
    // the row height of the table
    int rowHeight = 22;
    // the height of the table
    int height = 200;
    // the width of the table
    int width = 300;
    // the size of the table
    Dimension size;
    * Parameterless constructor. Class the one of the other constructors
    to
    * create a table with the a new <code>SubjectTableModel</code>.
    public SubjectTable() {
    this(new SubjectTableModel());
    * Copy constructor to create the table with the given
    * <code>SubjectTableModel</code>
    * @param tableModel -
    * the <code>SubjectTableModel</code> with which to
    initialise
    * the table.
    SubjectTable(SubjectTableModel tableModel) {
    setModel(tableModel);
    setupTable();
    * Function to setup the table's functionality
    private void setupTable() {
    clear();
    // set the row hieght
    this.setRowHeight(this.rowHeight);
    // set the font size to 12
    //TODO this.setFont(Settings.getDefaultFont());
    // disble reordering of columns
    this.getTableHeader().setReorderingAllowed(this.canReorder);
    // disble resing of columns
    this.getTableHeader().setResizingAllowed(this.canResize);
    // enable the horizontal scrollbar
    this.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
    // disable row selection
    setRowSelectionAllowed(this.canSelectRow);
    // disable column selection
    setColumnSelectionAllowed(this.canSelectColumn);
    // enable cell selection
    setCellSelectionEnabled(this.canSelectCell);
    setPreferredScrollableViewportSize(getSize());
    TableColumn columns = null;
    int cols = getColumnCount();
    for (int col = 0; col < cols; col++) {
    columns = getColumnModel().getColumn(col);
    switch (col) {
    case 0:// subject name column
    columns.setPreferredWidth(130);
    break;
    case 1:// grade column
    columns.setPreferredWidth(60);
    break;
    case 2:// class room column
    columns.setPreferredWidth(120);
    break;
    case 3:// select column
    columns.setPreferredWidth(65);
    break;
    } // end switch
    }// end for
    // set up the cell editors
    doGradeColumn();
    doClassColumn();
    //doSubjectColumn();
    * Function to clear the table selection. This selection is different
    to
    * <code>javax.swing.JTable#clearSelection()</code>. It clears the
    user
    * input
    public void clear() {
    for (int row = 0; row < getRowCount(); row++) {
    for (int col = 0; col < getColumnCount(); col++) {
    if (getColumnName(getColumnCount() - 1).equals("Select")) {
    setValueAt(new Boolean(false), row, getColumnCount() - 1);
    }// if
    }// for col
    }// for row
    * Function to set the cell renderer for the subjects column. It uses
    a
    * combobox as a cell editor in the teacher's subjects table.
    public void doSubjectColumn() {
    TableColumn nameColumn = getColumnModel().getColumn(0);
    nameColumn.setCellEditor(new DefaultCellEditor(getSubjectsCombo()));
    // set up the celll renderer
    DefaultTableCellRenderer renderer = new DefaultTableCellRenderer();
    renderer.setToolTipText("Click for drop down list");
    nameColumn.setCellRenderer(renderer);
    // Set up tool tip for the sport column header.
    TableCellRenderer headerRenderer = nameColumn.getHeaderRenderer();
    if (headerRenderer instanceof DefaultTableCellRenderer) {
    ((DefaultTableCellRenderer) headerRenderer)
    .setToolTipText("Click the Name to see a list of choices");
    }// end doSubjectsColumn----------------------------------------------
    /** Function to set up the grade combo box. */
    public void doGradeColumn() {
    TableColumn gradeColumn = getColumnModel().getColumn(1);
    gradeColumn.setCellEditor(new DefaultCellEditor(getGradeCombo()));
    DefaultTableCellRenderer renderer = new DefaultTableCellRenderer();
    renderer.setToolTipText("Click for drop down list");
    gradeColumn.setCellRenderer(renderer);
    // Set up tool tip for the sport column header.
    TableCellRenderer headerRenderer = gradeColumn.getHeaderRenderer();
    if (headerRenderer instanceof DefaultTableCellRenderer) {
    ((DefaultTableCellRenderer) headerRenderer)
    .setToolTipText("Click the Grade to see a list of choices");
    }// end doGradeColumn-------------------------------------------------
    * Function to setup the Class room Column of the subjects
    public void doClassColumn() {
    // set the column for the classroom
    TableColumn classColumn = getColumnModel().getColumn(2);
    classColumn.setCellEditor(new DefaultCellEditor(getClassCombo()));
    DefaultTableCellRenderer renderer = new DefaultTableCellRenderer();
    renderer.setToolTipText("Click for drop down list");
    classColumn.setCellRenderer(renderer);
    // Set up tool tip for the sport column header.
    TableCellRenderer headerRenderer = classColumn.getHeaderRenderer();
    if (headerRenderer instanceof DefaultTableCellRenderer) {
    ((DefaultTableCellRenderer) headerRenderer)
    .setToolTipText("Click the Class to see a list of choices");
    }// end doClassColumn--------------------------------------------------
    * Function to get the size of the table
    * @return Returns the size.
    public Dimension getSize() {
    if (this.size == null) {
    this.size = new Dimension(this.height, this.width);
    return this.size;
    * Function to set the size of the table
    * @param dim
    * The size to set.
    public void setSize(Dimension dim) {
    if (dim != null) {
    this.size = dim;
    return;
    * Function to create/setup the class room comboBox. If the comboBox
    is
    * <code>null</code> a nwew one is created else the functon returns
    the
    * function that was returned initially.
    * @return Returns the classCombo.
    private JComboBox getClassCombo() {
    if (this.classCombo == null) {
    this.classCombo = new JComboBox();
    // fill up the class name combo
    ArrayList classRooms = new ArrayList();
    try {
    //TODO classRooms = Settings.getDatabase().getClassRooms();
    for (int i = 0; i < 10; i++) {
    String string = new String("Class");
    string += i;
    if (!classRooms.isEmpty()) {
    classRooms.trimToSize();
    for (int i = 0; i < classRooms.size(); i++) {
    this.classCombo.addItem(classRooms.get(i));
    } catch (Exception e) {
    e.printStackTrace();
    return this.classCombo;
    * Function to create/setup the subjects comboBox. If the comboBox is
    * <code>null</code> a nwew one is created else the functon returns
    the
    * function that was returned initially.
    * @return Returns the subjectsCombo.
    private JComboBox getSubjectsCombo() {
    if (this.subjectsCombo == null) {
    this.subjectsCombo = new JComboBox();
    try {
    ArrayList subjects = loadSubjectsFromDatabase();
    if (!subjects.isEmpty()) {
    Iterator iterator = subjects.iterator();
    while (iterator.hasNext()) {
    // create a new subject instance
    //TODO Subject subct = new Subject();
    // typecast to subject
    //TODO subct = (Subject) iterator.next();
    String name = (String) iterator.next();
    // add this subject to the comboBox
    //TODO this.subjectsCombo.addItem(subct.getName());
    subjectsCombo.addItem(name);
    }// end while
    }// end if
    else {
    JOptionPane.showMessageDialog(SubjectTable.this,
    "Subjects List Could Not Be Filled");
    System.out.println("Subjects List Could Not Be Filled");
    } catch (Exception e) {
    e.printStackTrace();
    return this.subjectsCombo;
    * Function to load subjects from the <code>Database</code>
    * @return Returns the subjects.
    private ArrayList loadSubjectsFromDatabase() {
    // list of all the subject that the school does
    ArrayList subjects = new ArrayList();
    try {
    //TODO to be removed later on
    for (int i = 0; i < 10; i++) {
    String string = new String("Subject");
    string += i;
    subjects.add(i, string);
    // set the school subjects
    //TODO subjects = Settings.getDatabase().loadAllSubjects();
    } catch (Exception e1) {
    e1.printStackTrace();
    return subjects;
    * Function to create/setup the grade comboBox. If the comboBox is
    * <code>null</code> a nwew one is created else the functon returns
    the
    * function that was returned initially.
    * @return Returns the gradeCombo.
    private JComboBox getGradeCombo() {
    if (this.gradeCombo == null) {
    this.gradeCombo = new JComboBox();
    // fill with grade 1 to 12
    for (int i = 12; i > 0; i--) {
    this.gradeCombo.addItem(new Integer(i).toString());
    return this.gradeCombo;
    public static void main(String[] args) {
    try {
    UIManager.setLookAndFeel(new Plastic3DLookAndFeel());
    System.out.println("Look and Feel has been set");
    } catch (UnsupportedLookAndFeelException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    SubjectTableModel model = new SubjectTableModel();
    int cols = model.getColumnCount();
    int rows = model.getRowCount();
    Object[][] subjects = new Object[rows][cols];
    for (int row = 0; row < rows; row++) {
    subjects[row][0] = new String("Subjectv ") + row;
    }//for
    model.setSubjectsList(subjects);
    SubjectTable ttest = new SubjectTable(model);
    JFrame frame = new JFrame("::Table Example");
    JScrollPane scrollPane = new JScrollPane();
    scrollPane.setViewportView(ttest);
    frame.getContentPane().add(scrollPane);
    frame.pack();
    frame.setVisible(true);
    **************************************END
    TABLE******************************
    ----------------------------THE TABLE
    MODEL----------------------------------
    * Created on 2005/03/21
    * SubjectTableModel
    package com.school.academic.ui;
    import javax.swing.table.AbstractTableModel;
    * Class extending the <code>AbstractTableModel</code> for use in
    creating the
    * <code>Subject</code>s table. In addition to the implemented methods
    of
    * <code>AbstractTableModel</code> The class creates a model that has
    initial
    * values - the values have their own <code>getter</code> and
    * <code>setter</code> methods - but can still be used for values that
    a user
    * chooses.
    * <p>
    * @author Khusta
    public class SubjectTableModel extends AbstractTableModel {
    * Comment for <code>serialVersionUID</code>
    private static final long serialVersionUID = 3257850978324461113L;
    /** Column names for the subjects table */
    String[] columnNames = { "Subject", "Grade", "Class Room",
    "Select" };
    /** Array of objects for the subjects table */
    Object[][] subjectsList;
    private int totalRows = 20;
    protected int notEditable = 0;
    * Parameterless constructor.
    public SubjectTableModel() {
    // TODO initialise the list
    // add column to the default table model
    this.subjectsList = new
    Object[getTotalRows()][getColumnNames().length];
    * Copy constructor with the <code>subjectList</code> to set
    * @param subjects
    public SubjectTableModel(Object[][] subjects) {
    this(0, null, subjects, 0);
    * Copy constructor with the initial number of row for the model
    * @param rows -
    * the initial rows of the model
    * @param cols -
    * the initial columns of the model
    * @param subjects -
    * the initial subjects for the model
    * @param edit - the minimum number of columns that must be
    uneditable
    public SubjectTableModel(int rows, String[] cols, Object[][]
    subjects, int edit) {
    // set the initial rows
    setTotalRows(rows);
    // set the column names
    setColumnNames(cols);
    // set the subjectlist
    setSubjectsList(subjects);
    //set not editable index
    setNotEditable(edit);
    * Function to get the total number of columns in the table
    * @return int -- the columns in the table
    public int getColumnCount() {
    if (this.subjectsList == null) {
    return 0;
    return getColumnNames().length;
    * Function to get the total number of rows in the table
    * @return int -- the rows in the table
    public int getRowCount() {
    if (this.subjectsList == null) {
    return 0;
    return this.subjectsList.length;
    * Function to get the name of a column in the table.
    * @param col --
    * the column to be named
    * @return String -- the column in the table
    public String getColumnName(int col) {
    if (getColumnNames()[col] != null) {
    return getColumnNames()[col];
    return new String("...");
    * Function to get the value of the given row.
    * @param row --
    * the row of the object.
    * @param col --
    * the col of the object.
    * @return Object -- the value at row, col.
    public Object getValueAt(int row, int col) {
    return getSubjectsList()[row][col];
    * Function to return the data type of the given column.
    * @param c --
    * the column whose type must be determined.
    * @return Class -- the type of the object in this col.
    public Class getColumnClass(int c) {
    if (getValueAt(0, c) != null) {
    return getValueAt(0, c).getClass();
    return new String().getClass();
    * Function to put a value into a table cell.
    * @param value --
    * the object that will be put.
    * @param row --
    * the row that the object will be put.
    * @param col --
    * the col that the object will be put.
    public void setValueAt(Object value, int row, int col) {
    * TODO: Have a boolean value to determine whether to clear or
    to set.
    * if true clear else set.
    if (value != null) {
    if (getSubjectsList()[0][col] instanceof Integer
    && !(value instanceof Integer)) {
    try {
    getSubjectsList()[row][col] = new
    Integer(value.toString());
    fireTableCellUpdated(row, col);
    } catch (NumberFormatException e) {
    * JOptionPane .showMessageDialog( this., "The \""
    +
    * getColumnName(col) + "\" column accepts only
    values
    * between 1 - 12");
    return;
    System.out.println("Value = " + value.toString());
    System.out.println("Column = " + col + " Row = " + row);
    // column = Grade or column = Select
    switch (col) {
    case 2:
    try {
    // TODO
    if (Boolean.getBoolean(value.toString()) == false
    && getValueAt(row, 0) != null
    && getValueAt(row, 1) != null
    && getValueAt(row, 2) != null) {
    // subjectsList[row][col + 1] = new
    Boolean(true);
    System.out.println("2. false - Updated...");
    * this.subjectListModel.add(row,
    * this.subjectsList[row][0] + new String(" -
    ") +
    * this.subjectsList[row][2]);
    } catch (ArrayIndexOutOfBoundsException exception) {
    exception.printStackTrace();
    break;
    case 3:
    if (Boolean.getBoolean(value.toString()) == false
    && getValueAt(row, 0) != null
    && getValueAt(row, 1) != null
    && getValueAt(row, 2) != null) {
    System.out.println("3. If - Added...");
    getSubjectsList()[row][3] = new Boolean(true);
    this.subjectListModel.addElement(this.subjectsList[row][0] +
    * new String(" - ") + this.subjectsList[row][2]);
    // subjectListModel.remove(row);
    fireTableCellUpdated(row, col);
    fireTableDataChanged();
    // this.doDeleteSubject();
    } else if (Boolean.getBoolean(value.toString()) ==
    true
    && getValueAt(row, 0) != null
    && getValueAt(row, 1) != null
    && getValueAt(row, 2) != null) {
    setValueAt("", row, col - 1);
    setValueAt("", row, col - 2);
    setValueAt("", row, col - 3);
    System.out.println("3. Else - Cleared...");
    // this.subjectListModel.remove(row);
    break;
    default:
    break;
    }// end switch
    getSubjectsList()[row][col] = value;
    fireTableCellUpdated(row, col);
    fireTableDataChanged();
    }// end if
    }// end
    * Function to enable edition for all the columns in the table
    * @param row --
    * the row that must be enabled.
    * @param col --
    * the col that must be enabled.
    * @return boolean -- indicate whether this cell is editble or
    not.
    public boolean isCellEditable(int row, int col) {
    if (row >= 0
    && (col >= 0 && col <= getNotEditable())) {
    return false;
    return true;
    * Function to get the column names for the model
    * @return Returns the columnNames.
    public String[] getColumnNames() {
    return this.columnNames;
    * Function to set the column names for the model
    * @param cols
    * The columnNames to set.
    public void setColumnNames(String[] cols) {
    // if the column names are null the default columns are used
    if (cols != null) {
    this.columnNames = cols;
    * Function to get the rows of subjects for the model
    * @return Returns the subjectsList.
    public Object[][] getSubjectsList() {
    if (this.subjectsList == null) {
    this.subjectsList = new
    Object[getTotalRows()][getColumnNames().length];
    return this.subjectsList;
    * Function to set the subjects list for the model
    * @param subjects
    * The subjectsList to set.
    public void setSubjectsList(Object[][] subjects) {
    // if the subject list is null create a new one
    // using default values
    if (subjects == null) {
    this.subjectsList = new
    Object[getTotalRows()][getColumnNames().length];
    return;
    this.subjectsList = subjects;
    * Function to get the total number of rows for the model. <b>NB:
    </b> This
    * is different to <code>
    getRowCount()</code>.<code>totalRows</code>
    * is the initial amount of rows that the model must have before
    data can be
    * added.
    * @return Returns the totalRows.
    * @see #setTotalRows(int)
    public int getTotalRows() {
    return this.totalRows;
    * Function to set the total rows for the model.
    * @param rows
    * The totalRows to set.
    * @see #getTotalRows()
    public void setTotalRows(int rows) {
    // if the rows are less than 0 the defaultRows are used
    // set getTotalRows
    if (rows > 0) {
    this.totalRows = rows;
    * Function to get the number of columns that is not editble
    * @return Returns the notEditable.
    public int getNotEditable() {
    return this.notEditable;
    * Function to set the number of columns that is not editable
    * @param notEdit The notEditable to set.
    public void setNotEditable(int notEdit) {
    if (notEdit < 0) {
    notEdit = 0;
    this.notEditable = notEdit;
    ----------------------------END TABLE MODEL----------------------------------

    I hope you don't expect us to read hundreds of lines of unformatted code? Use the "formatting tags" when you post.
    Why are you creating your own TableModel? It looks to me like the DefaultTableModel will store you data. Learn how to use JTable with its DefaultTableModel first. Then if you determine that DefaultTableModel doesn't provide the required functionality you can write your own model.

  • [svn:fx-trunk] 13128: Fix for ASDoc tooltips does not show ASDoc for some functions

    Revision: 13128
    Revision: 13128
    Author:   [email protected]
    Date:     2009-12-21 13:46:32 -0800 (Mon, 21 Dec 2009)
    Log Message:
    Fix for ASDoc tooltips does not show ASDoc for some functions
    QE notes: None.
    Doc notes: None
    Bugs: SDK-24751
    Reviewed By:Paul
    Tests run: checkintests
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24751
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ClassTable.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelClassesGenerator.ja va
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelGenerator.java

    Welcome guy -
    Unless you are using Spry menus as a learning experience, you should move forward to a menus system that will display properly on the millions of portable devices that won't work with Spry which was deprecated 2 years ago.
    Many are using JQuery menus or pure HTML/CSS menus.
    If you wish to continue your Spry for learning experience, we'll be glad to assist; please let us know.
    By the way, your submenus are not showing because you need to add the red value to this rule in your vertical CSS
    ul.MenuBarVertical ul.MenuBarSubmenuVisible{
        width: 220px;
        left: 180px;

  • ITunes recognizes my device but the device does not show up for me to work with.  Any idea where I go to access to device in iTunes.  Going to File/Device is greyed out.

    iTunes recognizes my device but the device does not show up for me to work with.  Any idea where I go to access to device in iTunes.  Going to File/Device is greyed out.

    I think this article will help you.

  • HP-photosmart 6280 all-in-one with osx 10.9 now does not show options for printing photos from the photo tray.

    Using osx mavericks on macbook pro.  My printer for HP-photosmart 6280 all-in-one now does not show options for printing photos from the photo tray.

    What router? Have you restarted the router?
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • Since upgrading to the newest version of ios 8, I can no longer share my photos on facebook. I have tried going to setting-photos, but the facebook app does not show up for me to change the settings. Any suggestions?

    Since upgrading to the newest version of ios 8, I can no longer share my photos on facebook. I have tried going to settings-privacy-photos, but the facebook app does not show up for me to change the settings. Any suggestions?

    when you opened the shared library with the newer version of iPhoto (iPhoto '11) you were given a warning that your library would be converted and could not be used by older versions - you clicked ok to go ahead - there is no updo available - either upgrade to iphoto '11 of the MBP or load your backup of the iPhoto '09 library on it - older versiopns of i{Photo can not read newer libraries
    LN

  • Element Entry Screen does not show value

    I have created an element xxtest123, created a fast formula, and the formula result contain the direct result to this element.
    But before creating fast formula I did following steps.
    Created Input Values
    The input values this element has are
    Pay Value, Hire Date and Date Of Birth all are non enterable by user, and Database Items boxes corresponding to these values are checked.
    Created Element Link
    I, later linked it to a payroll and checked box Standard on the element link screen.
    Now issue is after running Payroll I can see the SOE report and Run Result Screen shows the expected result
    But the element entry screen does not show the values. Rather the fields are simply blank.
    Can anyone please help me why it is behaving such a way?

    Thanx Sharath for your quick response.
    But I have run QuickPay for that employee.
    After running QuickPay the input values names are coming into element entry value screen.
    But it is not showing the value corresponding to the element input value names.
    Thanks,
    Pankaj Kedia

  • F4 not showing values for Variable

    Hi Everyone,
    In BEx Web analyzer, the one of variable not showing values after pressing F4 but for the same query if we execute in BEx analyzer it shows the variable values.
    How we can rectify this issue for BEx Web Analyzer?
    Please suggest..
    Thanks
    Kind Regards
    Anukul

    Hi,
    Just check following setting are also done.
    transaction RSA1 -> Query-infoprovider -> "display" -> look for the relevant infoobject -> right-mouse-click -> "provider-specific Properties" -> "Query Exec. FilterVal"
    Set this option to "Master Data" and recheck the behaviour.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/20ecb78c-374a-2d10-c6af-f024f19b785d?QuickLink=index&overridelayout=true
    If above doesn't help pl check for sap note.
    Thanks and regards

  • 4EA2 the Detail display for views does not show comments for the view

    I am running in an Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production environment.
    The Detail tab for a View does not show comments added for the view. I would like to request that the Detail tab be modified to display any comments added for the view.
    This is important for me because I want to use the Generate DB doc function (from the right-click menu linked to schemas), to generate documentation, and that function uses the same format as the Detail Tab. The View Comments are important for my users.  

    Hi Penny Halsall,
    Kindly check if that Facebook page can be followed by the public. If the profile can't be followed by the public, then the widget won't work as accepted.
    Facebook provides instructions to check/do this here: https://www.facebook.com/help/201148673283205
    OR
    You can generate the associated HTML code from this page :
    https://developers.facebook.com/docs/plugins/
    Regards
    Sonam

  • WT reporter does not show split for tax authorities!

    Dear all:
        I need to report for all employees some WTs of taxes, but wt reporter does not show the splits for them (to distinguish federal from statal authorities payments), it is like summarises all the same WTs... I tried payroll recon. report but this one does not output the data in ALV format (im in 4.6 version) so it is not useful to run in bulk
    Do you have any work around for this?
    I would appreciate any tip or workaround on this,
    Thank you!

    Hi
    1. Allocated costs are always treated as Fixed costs, unless you have booked the expenses in FI using Activity Type as Aux Account assignment object
    2. Check whether these costs are included in Inventory valuation in your Cost Comp Str in OKTZ... If not relevant for inv valuation, these costs wont show up for Variance calculations
    br, Ajay M

  • Camera Raw 8.4 does not show  profiles for my Sony A850.

    Camera Raw 8.4 does not show the profiles for my Sony A850. The camera profiles are in the directory, Camera Raw recognizes the photo as being from my A850 in the Camera Raw banner, but the only profile available is Adobe Standard. This all used to work OK a few months ago.

    I don’t see any of these on either my Windows 7 or Windows 8 computer in that normal ACR profiles location.  Both have PS-CC/ACR8.4 so maybe they used to be there and were removed?
    However, if they are valid profiles you can probably get them to work by putting them in the user-customer-profiles folder:
    %APPDATA%\Adobe\CameraRaw\CameraProfiles
    %APPDATA% = C:\Users\yourusername\AppData\Roaming
    I have over a dozen custom-created profiles in this folder and both Photoshop and Lightroom see them all.
    A few years back it wasn't this way, but more recently Adobe recognizes which profiles are theirs and will ignore any others in the Adobe profile area, but it expects to see others in the user-custom-profile area, so move the .dcp files over there.
    Did your A850 profiles come from a third party like these:
    Imprescindibles
    Maurizio Piraccini Photography: Sony (and Minolta) color profiles for Adobe Camera Raw and Adobe Lightroom - UPDATED 201…
    http://pskiss.com/shop/cross-camera-color-profiles/

  • Alias tables do not show more than 9 fields of the same type in a Command

    Hi there, In Crystal Reports I have a Command to query a database, this works fine and returns what I need,
    but in when you add more than 9 alias's and and then Select more thatn 9 fields of the same type it does not show any more them in the Field Exporler window.
    i.e. I want to add another alias and select casdet_text(10) but it does not show any more than 9.
    Any help woud be apprecitated.
    Thanks
    casdet_text(1)
    casdet_text(2)
    casdet_text(3)
    casdet_text(4)
    casdet_text(5)
    casdet_text(6)
    casdet_text(7)
    casdet_text(8)
    casdet_text(8)
    casdet_text(9)

    Hi James,
    It's likely an internal limitation. If you are going to alias all of your fields it's more efficient to use a View or Stored Procedure to handle the renaming server side rather than client side.
    It may even be a connection limit, try using another tool and see if you can add more than 9 aliases.
    Thank you
    Don

  • 2D stacked column does not show values

    Hi Friends,
    I am new to Apex. I have a 2D column chart with two columns for every data point. The display value check box is checked and I can see the values on the chart. But now when i to make it a stacked 2 D column, the Show Values checkbox field gets disabled and the values does not appear on the stacked 2D column chart. I tried the same with 3S stacked column chart and even there the show values gets disabled.
    Is there any way i can display the values on the chart for a stacked column? I can see the values when i hover on it in case of Stacked column chart but I need to display the values on the chart.
    Kindly let me know how i can do this in Apex?

    Hi Pradeep,
    In earlier releases of Application Express, the supported version of AnyChart Flash charts did not fully support the display of values for Stacked charts. Therefore, the "Show Values" checkbox would be disabled on the Chart Attributes page. Since our 4.0 release, with the integration of AnyChart 5 charts, the option to display values on stacked charts is exposed via the Chart Attributes page. To take advantage of this option, along with many other charting improvements introduced with our 4.0 release, I would recommend that you upgrade to the latest version of Application Express.
    Alternatively, you could switch your existing chart to use custom XML, and change the following line of code in the chart XML from:
    <names show="no"/> to <names show="yes"/>For further information on customising your chart XML, please refer to the AnyChart 3 documentation: http://3.anychart.com/products/docs/anychart/index.htm.
    Regards,
    Hilary

  • Help - iPod does not show up in iTunes or as disk in Windows Explorer

    Would someone PLEASE tell me how to get my iPod to show up in iTunes or as disk in Windows Explorer?
    According to our PC XP computers, we do not have an ipod and it won't charge when plugged into USB. It worked fine for 10 months until this morning (10/26/06). We have ruled out bad USB drive by using flash drive on that USB and it worked fine. Reseting ipod does not work (ipod does not respond to reset command hold toggle then hold menu + play for up to 10 sec). Reseting ipod within ipod menu does nothing. ANY suggestions would be GREATLY appreciated!
    Thanks.

    I have the same problem with my brand new 2 GB. I have reloaded software, gone through the "5 R's", tried the ipod on my PC and on my laptop -- neither computer recognizes or charges the ipod. Any info greatly appreciated.

Maybe you are looking for

  • Flex SDK Error

    I'm trying to setup the Flex SDK locally (the bugquash event over the weekend inspired me) and have got everything installed except I'm getting 2 errors after I import all of the sample projects: 1012: The static attribute may be used only on definit

  • How to view or list cluster and block size of an ocfs2 filesystem

    Hello all... Have read ocfs2 user guide and do not see a way to list block or cluster size of an ocfs2 filesystem and additional properties similar to tune2fs -l. Could someone post a way they have found?

  • IPad Air. The case. Where is the origin of that leather ?

    iPad Air. The new case. Where does the leather comes from ? What is the origin ? Which animal ?

  • Problem in accessing sites and store in English

    I am an ex-pat based in Brazil.  I cannot access the Apple Store or products in English. Is there a solution for this?

  • Itunes ne reconnait plus mon iphone

    cela fait trois jour que itunes ne reconnait plus mon iphone, j'a ifait toutes les manipulation imaginable et cela ne change rien , mon ordinateur lui reconnait l'iphone , je suis trés décus de apple et microsoft qui ne m'ont pas aider suffisament