Table: disappearing row separators

I have a table that breaks across several pages. On the last two pages only, the rule/separator at the top of the first row does not display. All other pages are OK. All the content that's included in the affected rows is there--just no border at the top.
Thanks for any help!

What version of Framemaker?
What patch level?
What operating system?
32- or 64-bit mode?
Are you {not} seeing this during edit?
In PDFs?
When printed?
What is the stroke weight and color of the separator?
If a named color, and chance it's set to no-print and/or invisble?

Similar Messages

  • Toolbar button is disappearing when clicked table's row

    Hi
    I use jdeveloper Studio Edition Version 11.1.1.3.0,Build JDEVADF_11.1.1.3.PS2_GENERIC_100408.2356.5660 .
    I have problem about click table row that surround with panel collection.I tested my small application on explorer 8.When I click the table's row ,table moves up and toolbar buttons disapper.How can I solve this problem.
    Can anybody give suggestions.
    Thks

    I use jdeveloper Studio Edition Version 11.1.1.3.0,Build JDEVADF_11.1.1.3.PS2_GENERIC_100408.2356.5660 .
    I my little project I use <af:inputListOfValues component.It works well but I want resize popUp window that opened by this component.How can I do it?

  • Entire table disappeared in Numbers checkbook - HELP!

    I set up a simple checkbook for my 75-year-old (more or less computer illiterate) wife to use in managing an internal account.  She's spent hours transferring handwritten ledger entries into it.  All seemed to be working well.  Shortly ago, she attempted to add a new row to the checkbook table (Enter with cursor in last cell).  For some unknown reason the resulting "default" balance (as no entry had yet been made in the new row) instead of being identical to that of the previous row was double that amount.  When she attempted to remove the newly-created row (she may have pressed Cmd-Delete) the entire table disappeared from the screen (without warning or any "Are you sure?").  Next wrong move — she closed the document and almost certainly told it save changes.  Not surprisingly, when I open the document I get the same thing:  The only thing showing is the title of the document and the "Account Categories" table (with no values showing; if I click the red arrow I get an "invalid reference" message.
    So far so bad.  Worse yet, it seems that CC Cloner failed to back up the document last night — so the only existing backup is of the first few lines of entry.
    HOWEVER:  The document DOES have quite a lot of data in it (or so it would seem).  If it is force-opened (All Files) in either Excel or Text Wrangler it comes up with many screens of gibberish.
    I hope someone knows some magic trick for getting that table back — otherwise, one of us is going to have to re-enter about 75 lines of transactions.

    Fr. Gregory Williams wrote:
    Sounds like a very good idea — though I suppose I'll have to go to the folder periodically & delete the old saved versions manually (correct?).  I can't quite imagine why the iWork programs don't have a timed auto-save feature (even Word 5.1 had that!).
    Gregory,
    Apple OS X does have that now, as of Lion. Mountain Lion further enhanced and tuned the autosave/versions features.
    If your computer is too old to run Lion, there may be third party apps to do it, if they haven't all been updated.
    Jerry

  • How can I write into a table cell (row, column are given) in a databae?

    How can I write into a table cell (row, column are given) in a database using LabVIEW Database Toolkit? I am using Ms Access. Suppose I have three columns in a table, I write 1st row of 1st column, then 1st row of 3rd column. The problem I am having is after writing the 1st row 1st column, the reference goes to second row and if I write into 3rd column, it goes to 2nd row 3rd column. Any suggestion? 
    Solved!
    Go to Solution.

    When you do a SQL INSERT command, you create a new row. If you want to change an existing row, you have to use the UPDATE command (i.e. UPDATE tablename SET column = value WHERE some_column=some_value). The some_column could be the unique ID of each row, a date/time, etc.
    I have no idea what function to use in the toolkit to execute a SQL command since I don't use the toolkit. I also don't understand why you just don't do a single INSERT. It would be much faster.

  • Read only af:table first row select and focus on form load

    I use a read only af:table in my page. When my page loads and I click on my table, then I can use up / down arrow keys to navigate in my table's rows. But if I don't click on the table, I can't navigate in my table's rpws.
    What can do in my page to give the first focus to my table's first row and navigate in my rows without using mouse clicks....
    findElementById function in javascript does not work in jdeveloper 11...
    Do you help me for this?
    Thanks..

    Hi,
    actually findElementById does work, but you should use the ADF client side framework for this. Add a clientListener to the component that intercepts the keyboard usage and make it callin the next record on the table.
    I'll take a note for a how-to to put on my blog as I don't have the code ready. However, its possible this way
    Frank

  • How to control "hide/show" in a table on row level

    I was trying to implement controlling/rendering of "hide/show" in a table on row level, but no luck. Is is possible to render the "hide/show" in a table based on the row attribute? If the row attribute is "true", then render the "hide/show" at that row; If the row attribute is "false", then not render the "hide/show" for that row. Is this feasible? Thanks.

    I think this should be possible, what u need to do is as follows:
    1) Add a decode statement to your VO query to get 0/1 based on your condition like
    decode('',true,0,1) render_flag
    2) In VO attrinute mappings caste this attribute as boolean instead of number.
    3) Attach this attribute to render flag of hide/show via SPEL.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Mutating table and row state - this was unexpected

    So, I learned in a class about 3 years ago to expect the following
    SQL> create table p (pk number primary key);
    Table created.
    SQL> create table c (fk number references p(pk));
    Table created.
    SQL> create or replace trigger t_insrt
      2  before insert on p
      3  for each row
      4  begin
      5   insert into c values (:new.pk);
      6  end;
      7  /
    Trigger created.
    SQL> insert into p values (1);
    insert into p values (1)
    ERROR at line 1:
    ORA-02291: integrity constraint (FORBESC.SYS_C00169150) violated - parent key
    not found
    ORA-06512: at "FORBESC.T_INSRT", line 2
    ORA-04088: error during execution of trigger 'FORBESC.T_INSRT'and so it led me to think that replicating ON MODIFY PARENT - MODIFY CHILD functionality wouldn't work in a BEFORE ROW trigger, but it does
    SQL> drop trigger t_insrt;
    Trigger dropped.
    SQL> create or replace trigger p_updt
      2  before update on p
      3  for each row
      4  begin
      5   update c
      6   set fk = :new.pk
      7   where fk = :old.pk;
      8  end;
      9  /
    Trigger created.
    SQL> insert into p values (1);
    1 row created.
    SQL> insert into c values (1);
    1 row created.
    SQL> select * from c;
            FK
             1
    SQL> update p
      2  set pk = 2
      3  where pk = 1;
    1 row updated.
    SQL> select * from c;
            FK
             2Why would the first scenario fail while the second succeeds? The update seems prone to a parent record also not existing, at least not by the BEFORE ROW trigger.
    ---=Chuck

    < mutating table and row state >
    BTW, you don't seem to have run into the mutating table error though 2 other threads today are also about it. You have a constraint violation, a different thing entirely.
    I believe the second scenario works because you're neatly avoiding the error of the first. The error "ORA-02291: integrity constraint (FORBESC.SYS_C00169150) violated" means that on insert Oracle is looking up the value you're trying to insert, not finding it, and raising an error. With the before trigger you are taking the assigned value from the insert, updating the parent to it, so that on actual insert when the check happens the value is there due to the update.
    I'm not convinced this is a good idea because any on-the-fly approach to data entry needs to be examined carefully.

  • Adf skin, table's row hover

    Hi,
    I'm having confussion with adf-skinning.
    Can i put hover effect so everytime user hovering a row of a table it will change the row's background color?
    What class should I use in my css?
    I've tried with af|table::data-row:highlighted, af|table::data-row:hover..
    If there is anyone knows the link where I can dowload an adf-skin template then it also be very helpful to me..
    Best Regards.

    Hi,
    I found this in the forum. Does it work for you?
    Re: Comment on Frank's blog adding hover effect to table
    af|table::content TR:hover { background-color: InfoBackground ; }
    af|table::content TR:hover TD { background-color: transparent ; }
    regards
    Peter

  • Repeat header's column in a table with row height that greater then 200px

    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    I develop a website and encounter some problem about web page printing. I try to repeat header's column in a table with row's height that greater than or equal to 198px, but it doesn't work. Another size that lower than 198px works fine. If somebody has seen this issue before and know a solution, please help me. Thanks in advance.
    == This happened
    ==
    Every time Firefox opened
    == Firefox version
    ==
    3.6.6
    == Operating system
    ==
    Windows XP
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.6) Gecko/20100625 Firefox/3.6.6
    == Plugins installed
    ==
    *-6.0.12.1739
    *RealPlayer(tm) LiveConnect-Enabled Plug-In
    *PDF-XChange Viewer Netscape Gecko Plugin
    *Default Plug-in
    *Shockwave Flash 8.0 r22
    *Adobe Shockwave for Director Netscape plug-in, version 11.0
    *3.0.40624.0
    *Office Live Update v1.3
    *Windows Presentation Foundation (WPF) plug-in for Mozilla browsers
    *Next Generation Java Plug-in 1.6.0_18 for Mozilla browsers
    *Npdsplay dll
    *DRM Store Netscape Plugin
    *DRM Netscape Network Object

    Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The helpers over there are more knowledgeable about web page development issues with Firefox.
    [http://forums.mozillazine.org/viewforum.php?f=25]
    You'll need to register and login to be able to post in that forum.

  • My timeline table disappears when i scroll down to the bottom

    Hi, i have put my images on after effects and everything was going well like normal, until i uploaded my final 12-20 images (im using after effects for my final 3 minute animation for uni), when i tried to scroll down to rezize these images and to make them 2f long the timeline table disappears everytime, also i managed to see that the frames with the problem are not the normal purple colour but are a blackish grey colour... ive tried deleting the frames and re uploading them but the same problem occured. I saved my work closed down my computer and re-opened it and the problem was still there. i also tried pasting the frames into a new composition but again... same problem. Is there a way to solve this problem as this animation is due in tomoz and i need to start adding sounds on audition and premiere but the animation needs to be finished so i can sync the sounds at the correct places
    Please reply
    Katie x

    In addition to Todd's curiousity, I'm curious about something else: is this a SEQUENCE of images, such as stop-frame animation? 
    If the original file names have been retained, they're probably in the order in which they were taken, and you can import the lot of them as an image sequence.  To get the on-2 look you seek, you can use the resulting clip's interpret footage settings.  Select the target frame rate you want, and multiply that number by two.  You're all set.

  • How to create table with rows and columns in the layout mode?

    One of my friends advised me to develop my whole site on the
    layout mode as its better than the standard as he says
    but I couldnot make an ordinary table with rows and columns
    in th layout mode
    is there any one who can tell me how to?
    thanx alot

    Your friend is obviously not a reliable source of HTML
    information.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Mr.Ghost" <[email protected]> wrote in
    message
    news:f060vi$npp$[email protected]..
    > One of my friends advised me to develop my whole site on
    the layout mode
    > as its
    > better than the standard as he says
    > but I couldnot make an ordinary table with rows and
    columns in th layout
    > mode
    > is there any one who can tell me how to?
    > thanx alot
    >

  • Why are tables disappearing when Engineering Logical Entity Hierarchies to Relational

    Tables disappearing when Engineering Entity Hierarchies Logical to Relational
    We are using 4.0.3.  We have a model with imported from Designer with a number of Entity Hierarchies. 
    The model has a three of entity hierarchies (ORD, PLAN and STEP) each with a number of subtypes.  Single tables are built for each of the entity hierarchies and are called (ORD, PLAN and STEP).
    If I make a change within an entity hierarchy in the subtype (ORD_METRIC) and forward engineer the only ORD entity hierarchy as single table, the table ORD gets update but the tables STEP and PLAN disappears from the Relational table list.    They only remain if I select all three entity hierarchies when engineering to relational.
    Have I a missed selecting an option?

    Hi,
    in current implementation for entity hierarchies (only) - "engineering to" flag is used also as implementation flag for entity, i.e. if entity is not set to be engineered there will be no implementation as table for that entity in relational model. Attributes of such entity will be implemented in another entity engineered to relational model. If no one entity from hierarchy is engineered (no implementation) then existing corresponding table(s) will be removed.
    We'll change it in the future to be less confusing.
    Philip

  • User tables disappeared from our Planning SQL table

    All of the user tables in the SQL database associated with our Planning application mysteriously disappeared.
    We created a classic Planning application and converted it to an EPMA application. We deployed the application in our test environment and then used Lifecycle Management to migrate it to production. Everything was functioning well until we started getting errors saying "Creating rebind thread to RMI
    Query Failed: SQL_GET_SYSTEMCFG: null
    java.sql.SQLSyntaxErrorException: [FMWGEN][SQLServer JDBC Driver][SQLServer]Invalid object name 'HSP_SYSTEMCFG'."
    We checked the tables in our production Planning relational database and all of the HSP* tables were gone. The HSP_SYSTEMCFG table disappeared sometime before 11/14/12 and the remaining tables disappeared between 11/14 and 11/16. The tables went missing in both our test and production environments, but I'm not sure of the timing for the test database. Our SQL DBA couldn't find any unusual activity in the SQL logs. We are trying to determine the cause and have not had any luck so far. Has anyone else experienced this problem?
    We have restored the tables from a database backup but are concerned that the problem could occur again.

    Are you serious? This is EXACTLY the same isue that ypou had ORACLE USER_TABLES Table names in CAPITALS.

  • How to repeat 2 table header rows in adobe form

    Can anybody suggest me how to repeat 2 table header rows .
    one header row is for displaying only columns header list
    second header row is for displaying 'from date' and 'to date'.
    and i want this to be done using layout tab(palletes) in the form.  will it be?
    Message was edited by:
            M Madhu

    loop at ot into wa.
    at first header one
    write second header.
    endloop.
    declear one internal table append both values in come internal table .
    pass the header in comen internal table.
    Message was edited by:
            Karthikeyan Pandurangan

  • Pivot table alternating row colors

    Hello,
    In ADF 11g, is it possible to format a pivot table so row colors will alternate? 1st row gray, second row white, 3rd row gray and so on..
    Can i determine which row is a DataCellContext object in ?
    Thanks.

    Any ideas ? I still could not find a way to give alternate row colors to a pivot table.

Maybe you are looking for

  • How Can I report a Production Error

    When I want to report a Production error in Support portal, I got a error like this Currently you do not have authorization to use this function. To request the authorization, please contact one of the administrators at your company:      S0004554480

  • Problem embedding video in Pages and exporting as epub

    I'm using pages 09 ver 4.2 (1008). I' trying to embed video (.m4v and .mov)  I can't find the checkbox  'Copy audio and movies into document'. The user guide says it's an advanced option on the 'save as' but my version of pages runnning on Lion 10.7.

  • Auto accept script reports -1708 error on startup

    Hey everyone, I was just wondering if I was the only one experiencing a -1708 error when using the Auto accept apple script. I'm tired of always accepting chat invitations / messages, so I turned on the script. Now it's reporting a -1708 error. I tri

  • Error : Cannot Access external data , XLS : 000009

    Hi Everyone, There is an error am getting, while connecting to Qaaws,  the screen shot is attached. I have changed the time zone in CMC but, it still prevails. Its urgent, quick solution would be helpful. Thanks in advance, Sara

  • BAPI To delete customer mail id from Xd03

    Hi gurus, can anyone inform me How to delete customer mail id in XD03 Tcode. Using BAPI:  BAPI_ADDRESSCONTPART_CHANGE I am able to change the mail id but i could not delete. Can anyone inform me Which BAPI i have to use. Thanks & Regards kalyan.