Content not displayed in af:table

Hi,
I use af:table component to convert my exixsting html table. When I use it to display content, Only the content in header facet is displayed and not the content. If emptytext attribute is used in af:table, then no records found is dispalyed.
Kindly suggest some solutions.
Regards,
Dinesh Vishnu Kumar.

Hi Brad,
I didnt notice. Hope wont repeat it further.
Thank you.
Regards,
Dinesh Vishnu Kumar

Similar Messages

  • TOC Topic content not displayed in WYSIWYG Editor

    I use RoboHelp X5. When I click a topic in the TOC pane I
    expect to see its contents displayed in the WYSIWYG Editor. Instead
    the WYSIWYG pane is grey and the TrueCode pane is blank with a
    cursor flashing on the upper left corner!
    I searched for some similar issue on this forum and could not
    find it. However, I did gather that I could use another editor by
    right clicking a topic when in the Project tab and selecting one of
    5-6 editors. I tried RoboHelp TrueCode and was amazed and relieved
    to see the code and content for the topic displayed in the TrueCode
    pane...so I went a step further and tried the WYSIWYG editor and
    wonder of wonders, the topic content was displayed.
    Can someone please tell me what is going on? Should I
    reinstall RoboHelp X5? Why does the topic content not display when
    I click the topic from the TOC tab?

    Welcome to the forum.
    There have been posts about this but maybe your forum search
    history is not set to go back far enough.
    Rather than right click and selecting RH True Code, at the
    bottom of the editing pane there is a true code tab which will
    quickly enable you to see your code is still safe. That said, if
    you then click WYSIWYG, you don't get the view restored, usually.
    Maybe your way has an advantage.
    It's one of those things that happens now and again. I don't
    think reinstalling will help. I have had it happen several times in
    a day and then you go months with it working just fine.
    I don't believe anyone has ever lost any data. At worst you
    just have to close RH and reopen it.
    For what it is worth, I haven't seen this happen in RH7.

  • Data not displayed in Z-table when material code (MATNR) entered in selection screen.

    Hi Experts,
    I have a Z-table for a gatepass report which was already created by another developer. This table has many fields including plant, year, material code field. (MATNR) etc
    Now the problem is in SE11, I run the table to display the entries, when I enter plant and year and execute many entries are displayed.properly including material codes(e.g.50008536). 
    But when I execute the same entering plant, year and material code(e.g.50008536) then this message is displayed. " No table entries found for specified key"
    The same thing happens if I am writing a select query in my report to get the data of any particular material code. My internal table is not filled with the data including that particular material code.
    Some more info :
    1. The material code field in the Z-table is assigned the standard material code Data element. i.e. MATNR
    2. Even if I enter '000000000050008536' as input it is still not working. it is automatically changed to '50008536' after executing.
    So please help me where the problem is? I have spent alot of time on this but not able to find the problem..
    Thanks,
    Vishal .

    Hi Vishal,
    Hope I understand  that table content does not starts with zero for material, reply me if i am wrong.
    Use this code before where condition.
    loop at so_matnr.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
       EXPORTING
         INPUT         = so_matnr-low
      IMPORTING
        OUTPUT        = so_matnr-low.
    if so_matnr-high is NOT INITIAL.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
       EXPORTING
         INPUT         = so_matnr-high
      IMPORTING
        OUTPUT        = so_matnr-high.
    endif.
    MODIFY  so_matnr.
    endloop.
    if table content is filled with zero use  FM conversion_exit_alpha_input
    Regards,
    Venkat.

  • Content not displaying.

    I built a login form and put an Application.cfc file in the folder i want to restrict and it's not displaying the simple text i put in the index.cfm for testing purposes.
    ======= Application.cfc code (in folder name "admin_section")==========
    <cfcomponent>
      <cffunction name="onRequest">
        <cflogin>
          <cfif IsDefined("FORM.Login_btn")>
            <cfquery name="qLogin" datasource="poll">
            SELECT UserLogin, UserPassword, UserRoleID
            FROM Users
            WHERE UserLogin = <cfqueryparam value="#FORM.UserName#" cfsqltype="cf_sql_varchar">
            AND UserPassword = <cfqueryparam value="#FORM.Password#" cfsqltype="cf_sql_varchar">
            </cfquery>
            <cfif FORM.username IS "#qLogin.UserLogin#" AND FORM.password IS "#qLogin.UserPassword#">
              <cfloginuser name="#FORM.username#"
                           password="#FORM.password#"
                           roles="#qLogin.UserRoleID#">
            <cfelse>
            <cfset request.errorMsg = "Incorrect login; please try again">
              <cfinclude template="../login/login.cfm">
                <cfreturn>   
            </cfif>
          <cfelse>
            <cfinclude template="../login/login.cfm">
              <cfreturn>
          </cfif>
            </cflogin>
      </cffunction>
    </cfcomponent>
    ======= Application.cfc End =======
    ====== Login Form (in folder name "Login" ====
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <cfform action="../admin_section/" method="post">
      <table width="250">
      <tr align="center">
        <td colspan="2">
          <cfif IsDefined('Request.errorMsg')>
            <cfoutput>#Request.errorMsg#</cfoutput>
          <cfelse>
            Please Log in.
          </cfif>
        </td>
      </tr>
        <tr>
          <td>
            <font size="-1">User Name:</font>
          </td>
          <td>
            <cfinput type="text"
                     name="UserName"
                     required="yes"
                     message="- You must enter a user name!">
          </td>
        </tr>
        <tr>
          <td>
            <font size="-1">Password:</font>
          </td>
          <td>
            <cfinput type="password"
                     name="Password"
                     required="yes"
                     message="- You must enter a password!">
          </td>
        </tr>
        <tr>
          <td> </td>
          <td>
            <cfinput type="submit" name="login_btn" value="Log me in!" >
          </td>
        </tr>
      </table>
    </cfform>
    </body>
    </html>
    It takes me to the page, but nothing displays. Again i have simple text for testing purposes.
    Any help would be great.

    Your problem is that you're using onRequest, which replaces the default page rendering event. There are two ways you could fix this.
    1. Use onRequestStart instead. This will happen before your page is processed, rather than instead of your page being processed. This is the approach I'd recommend.
    2. Add code at the bottom of your onRequest to include the page to be processed. You'd identify this page by using the targetPage argument and including it:
    <cffunction name="onRequest">
         <cfargument name="targetPage" required="true">
         <cfinclude template="#targetPage#">
    </cffunction>
    Dave Watts, CTO, Fig Leaf Software
    http://www.figleaf.com/
    http://training.figleaf.com/

  • Business Workplace Inbox : Mail Content Not Displayed

    Friends,
    We have a problem in displaying contents of the mail(SAP Inbox) in one of the PC's. When we reply w/refernce to that message the content is displayed properly. And also the same mail content is displayed properly in another PC's for the same user.
    We thought this is a GUI problem and re-installed SAP GUI(all components) but still the issue exists.
    Any other settings are required to be done to solve this problem? Can anyone please help us solving the issue?
    Note: we are using SO_DOCUMENT_SEND_API1 for creating the mail notification and the content is passed as 'RAW'.
    Thank you very much for your help and suggestions.
    Cheers,
    MS
    Message was edited by: Srinivasa Maram

    Srinivas,
    1) Is the problem only with the message being sent through custom code using SO_DOCUMENT_SEND_API1? What happens if you send a message using SAPOffice?
    2) Are the patch levels of the GUI same on both machines? Are you sure both PCs are configured exactly the same? Especially wrt to Windows & IE patches. I vaguely remember there were some issues a while ago with some IE patches. Normally in most client environments the desktops upgrades are controlled centrally and users do not have admin rights. Make sure the user has not done upgrades/installs on the PC in question. If that were the case the PC may needs to be reimaged.
    BTW - What version  are you on R/3 and SAPGUI?
    Regards,
    Ramki Maley

  • User-Defined Type does not display values in Table Data grid

    I have a User defined Type that is a collection of one character VARCHAR2 values. In the Table Data grid it does not display the character values. I know on all our other Oracle development applications these values display. Is this a bug or is there a snippet to display these values?

    Version: 1.0.0.15
    DB: 10.2.0
    Workstation OS: Windows XP

  • HTML Content not displayed correctly in UWL

    Hi all,
    I have setup UWL to connect to SRM 5.0 system. I have no problem retrieving alerts from the backend. However, alerts with HTML content are not displayed correctly in the UWL. Instead of parsing the HTML content, the html tags are displayed instead.
    Am I missing some configurations here?
    Thanks in advance.

    Hi Benny;
    Please see:
    My Oracle Support FAQ [ID 747242.5] << What are the browser requirements for accessing My Oracle Support?
    If you have still problem you can go wiht SR
    Regard
    Helios

  • "BI Content" not displayed in RSA1

    Hello Folks,
    i have a newly installed SAP BW 7.31 with BI_CONT 747 Patch 3. When opening RSA1 the branch "BI Content" is not displayed, therefore no BI Content can be installed.
    Do i we have to activate anything? or are there any special options in SPRO to enable this area?
    When we use Txn RSORBCT, the branch "BI Content" is displayed, but there is no tree below...
    Thanks in advance
    --MIKE

    Hi Mike,
    Uncheck tick mark using transaction RSOCONTENT @ System is a Content Dev sys
    Better rise ticket to BASIS team, they help better.
    - vijay

  • Iframe contents not displaying in FF Windows 7 or Mac

    I've read almost all posts about frames not displaying in FF, however, I have an odd issue. While I am able to get the iframe to display, NOT ALL of its contents is displaying. It's odd. A sample page is below, click on the virtual tour tab and you will see what I mean. All the code does show up. This also happens for another page with similar type of code. This works fine in Chrome/IE both PC and Mac. Any help would be appreciated.
    Thanks
    http://www.kdnovelties.com/educational/terrance-the-giraffe/personalized_293.html

    The content is there, but is hidden with display:none style rule, so it looks that if there is script running to show this content then it doesn't finish properly.
    <pre><nowiki><div id="virtualbook" class="kdnbook" style="height: 465px; width: 680px; display: none; margin: auto;"></div></nowiki></pre>
    Removing the display:none makes the book appear for me.
    The Web Console also shows an error with the MP3 file:
    <pre><nowiki>HTTP "Content-Type" of "audio/mpeg" is not supported. Load of media resource http://26ebe445280acec2e3b0-023df79dc48add581f4e26895345aac6.r54.cf1.rackcdn.com/page-flip.mp3 failed.</nowiki></pre>

  • Firefox does not display button and table in High Contrast Theme

    When i'm using the high contrast theme in Windows 7, the webpage i'm accessing does not show layouts for tables, textboxes and buttons, whereas while accessing the same page with other browsers (i.e Chrome,IE) I can view them correctly. Please suggest whether it is possible to get the layouts in High contrast theme, if Yes, kindly tell the detailed steps to do that!
    TIA

    This is an image of what displays for me

  • Not displaying row of table

    Hi everyone,
    Lets say I have a node containing 5 rows that I display in a table element.
    For some reasons, I do not want to display row 4.
    Is it possible to display row 1, 2, 3, 5 without deleting row 4 from that node ?
    Thanks.
    Regards.

    Hi Fryda,
    Create two nodes in the context with same number of attributes.
    (a)TableNode  (Main node)
    (b)BackUpNode (BackupNode)
    Now when you don't want to display row 4, then do the following steps.
    (1) copy the Table Node to the Backup Node.
           WDCopyService.copyElements(wdContext.nodeTableNode(),wdContext.nodeBackUp());
    (2) Now delete the row 4 from Table node.
    IWDNodeElement nodeElement=wdContext.nodeTableNode().getElementAt(3);
    wdContext.nodeTableNode().removeElement(nodeElement);
    (3)And if you need the row 4 in future you can take it form BackUpNode or you can copy the backup node back to table node, as done in the first step
    WDCopyService.copyElements(wdContext.nodeBackUp(),wdContext.nodeTableNode());
    Regards,
    Praveen

  • Webhelp TOC and Contents not displayed in Google Chrome

    Hello All,
    I recently tried to view webhelp (generated using Robohelp 7.0) in Google chrome. But chrome displays only the first topic of the web help and does not display the TOC of the help. Can any one please help me in why this is happening.
    PS: I am viewing the online help from a server and not from local folder. When viewed from within local folder it doesn't display any info.
    Rithesh

    Hi,
    See snippet 103 and snippet 130 on Peter's site: http://www.grainge.org/pages/snippets/snippets.htm
    Greet,
    Willam

  • Content not displayed on webcenter spaces page tiIl I login to UCM server.

    Hi Yannick,
    I have created an html file which loads the flash file and checked in to the UCM server. I have added a content presenter on the page runtime and selected the html file as the content.
    Now when I load the page, I couldnot see the content. The content gets displayed on the page once I login to the UCM server and refresh the webcenter page.
    Please suggest the solution. I am working with Avitek Demo VM. I have stored the file in the public_images folder.
    Thanks,
    SK

    You need to assign application (spaces) role "Administrator" to your user for Admin link to see (by default weblogic user is assigned to this role)
    To add it
    Login to Fusion Middleware Control -> WebCenter -> WebCenter Spaces -> Right Click on WebCenter -> Security -> Application Role
    Add your user to role “Administrator”
    Atul Kumar
    http://onlineAppsDBA.com

  • JTable column headers not displaying using custom table model

    Hi,
    I'm attempting to use a custom table model (by extending AbstractTableModel) to display the contents of a data set in a JTable. The table is displaying the data itself correctly but there are no column headers appearing. I have overridden getColumnName of the table model to return the correct header and have tried playing with the ColumnModel for the table but have not been able to get the headers to display (at all).
    Any ideas?
    Cheers

    Class PublicationTableModel:
    public class PublicationTableModel extends AbstractTableModel
        PublicationManager pubManager;
        /** Creates a new instance of PublicationTableModel */
        public PublicationTableModel(PublicationManager pm)
            super();
            pubManager = pm;
        public int getColumnCount()
            return GUISettings.getDisplayedFieldCount();
        public int getRowCount()
            return pubManager.getPublicationCount();
        public Class getColumnClass(int columnIndex)
            Object o = getValueAt(0, columnIndex);
            if (o != null) return o.getClass();
            return (new String()).getClass();
        public String getColumnName(int columnIndex)
            System.out.println("asked for column name "+columnIndex+" --> "+GUISettings.getColumnName(columnIndex));
            return GUISettings.getColumnName(columnIndex);
        public Publication getPublicationAt(int rowIndex)
            return pubManager.getPublicationAt(rowIndex);
        public Object getValueAt(int rowIndex, int columnIndex)
            Publication pub = (Publication)pubManager.getPublicationAt(rowIndex);
            String columnName = getColumnName(columnIndex);
            if (columnName.equals("Address"))
                if (pub instanceof Address) return ((Address)pub).getAddress();
                else return null;
            else if (columnName.equals("Annotation"))
                if (pub instanceof Annotation) return ((Annotation)pub).getAnnotation();
                else return null;
            etc
           else if (columnName.equals("Title"))
                return pub.getTitle();
            else if (columnName.equals("Key"))
                return pub.getKey();
            return null;
        public boolean isCellEditable(int rowIndex, int colIndex)
            return false;
        public void setValueAt(Object vValue, int rowIndex, int colIndex)
        }Class GUISettings:
    public class GUISettings {
        private static Vector fields = new Vector();
        private static Vector classes = new Vector();
        /** Creates a new instance of GUISettings */
        public GUISettings() {
        public static void setFields(Vector f)
            fields=f;
        public static int getDisplayedFieldCount()
            return fields.size();
        public static String getColumnName(int columnIndex)
            return (String)fields.elementAt(columnIndex);
        public static Vector getFields()
            return fields;
    }GUISettings.setFields has been called before table is displayed.
    Cheers,
    garsher

  • Updated HTML content not displayed

    Hi All,
               In webdynpro application, I am having an HTML file in the MIME repository which I am downloading dynamically and modifying its contents and placing the edited contents in ICM cache to display the URL. But I see that the changes I have made in the HTML file has not taken place even though I see in the debug mode that the chanegs are happening. In order to test i deleted the html file manually from MIME repository and uploaded it again , but even then it displays the old contents of the deleted HTML file. ANd it is not even taking the changes that are happening  in the program dynamically.
    Where is that it is going wrong?

    If you place the dynamic HTML content into the ICM cache, then it should have a completely different URL than the original content from the MIME repository.  It would only have the same content with the different URL if that is what you placed into the Cache.  Generally the Cached URLs are GUIDs.  Perhaps you should post your ICM cache upload code, because if the content is the old content from the MIME repository, then you are certainly doing something wrong in the upload.

Maybe you are looking for