Book file not reflecting changes in source .indd

I created 2 .indd files. I created a book   indb. All is well. I create a .pdf. I make changes to the 2 indd. files. Save to the book again. The changes are not recognized. Seems like I have to create a new book everytime I make changes to the source .indd files?  Is this correct? please & thanks.

Sounds like you might be running into problems with your files not saving correctly or something.  That would explain both your book not being updated and why when you clicked on one of your recent files it showed you an old version.  It won't be anything to do with that opening screen, ticking don't show again is the right thing to do IMO though!
Go to where your files are located, open one up, make a small inconsequential change and close it again saving changes.  Open it up again and check that the change has been done.  Report back here with any error or warning messages on either open or close.  If that works like expected though it must be something else.

Similar Messages

  • Why do the thumbnails not reflect changes I make to pages?

    I am working on a pdf in Acrobat DC.
    I am working on a page with all the layers hidden.
    So the thumbnail is blank
    When I show a layer it appears on the page.
    The thumbnail however does not change.
    Why do the thumbnails not reflect changes I make to pages?

    Hi Jules,
    The behavior is same in Acrobat 11 as well. The thumbnails do not get refreshed till you close the document and reopen.
    Regards,
    Rave

  • Changes in server side java file not reflecting in Client side java code?

    Hi friends,
    iam using eclipse IDE, JBoss server, SWING GUI and Oracle DB
    ( looks like : SWINGGUI (Client) <--> EJB's (serverside) <---oracle )
    my problem is , when i make change in server side bean file, that changes are not reflecting in GUI programs.
    (for ex: iam adding settr and getter for a field and using that in GUI program. but its not identifying that setter or getter).
    please tell me what should i do for every change done to server side program, that should reflect / available to GUI?

    my problem is , when i make change in server side bean file, that changes are not reflecting in GUI programs.
    (for ex: iam adding settr and getter for a field and using that in GUI program. but its not identifying that setter or getter).what do you mean it's not "identifying" the methods?
    you have to call those methods you know
    are you getting NoSuchMethodError?
    please tell me what should i do for every change done to server side program, that should reflect / available to GUI?you haven't posted any code or error messages that might help us debug

  • Workbook is not reflecting changes

    Hi Friends,
       I have done some changes in existing structure at1 existing query and same structure are using in different query also, that also reflected and working fine, but these 2 queries are already added in 1 workbook as in 2 worksheets, the problem is, the changes which I did in query is not reflecting in workbook ( 2 worksheets in workbook ), how do get reflect those queries in workbook. Pls suggest. Thanks.
    Regards,
    CS.
    Edited by: csr_03 on Jul 22, 2010 3:07 PM

    Hi,
    You have made changes to query but those changes do not refelct in workbook automatically.
    Either you need to create new work book by using the modfied query or use the existing workbook and include the modified query again after removing the existing one.
    Workbook is just an excel save file of any exitisng query so you need to save or creat that file again.
    I hope it will help.
    Thanks,
    S

  • DataGrid not reflecting changes after INSERT into Table. Delete from Table does.

    Wow, it's been a while.
    Hope you guys can help.
    This is my DataGrid:
    <DataGrid DataContext="{StaticResource TableAssetsViewSource}" ItemsSource="{Binding}" x:Name="TableAssetsDataGrid" AutoGenerateColumns="False" EnableRowVirtualization="True" Margin="15,10,10,10" RowDetailsVisibilityMode="VisibleWhenSelected" Grid.Column="1" HeadersVisibility="Column" CanUserResizeRows="False" IsReadOnly="True">
    <DataGrid.CellStyle>
    <Style TargetType="DataGridCell">
    <Setter Property="BorderThickness" Value="0"/>
    </Style>
    </DataGrid.CellStyle>
    <DataGrid.Columns>
    <DataGridTextColumn x:Name="NodeColumn" Binding="{Binding node}" Header="VS Number" Width="*"/>
    <DataGridTextColumn x:Name="SerialColumn" Binding="{Binding serial}" Header="Serial Number" Width="*"/>
    <DataGridTextColumn x:Name="NameColumn" Binding="{Binding name}" Header="Asset Name" Width="*"/>
    <DataGridTextColumn x:Name="TypeColumn" Binding="{Binding type}" Header="Asset Type" Width="*"/>
    <DataGridTextColumn x:Name="_dateColumn" Binding="{Binding date}" Header="Date Allocated" Width="*"/>
    <DataGridTextColumn x:Name="PoColumn" Binding="{Binding po}" Header="Purchase Order" Width="*"/>
    </DataGrid.Columns>
    </DataGrid>
    This is where I add a new Row to the Table:
    Private Sub Button_Click_1(sender As Object, e As RoutedEventArgs)
    Dim cbblocation As ComboBox = Me.FindName("LocationComboBox")
    Dim row As DataRowView = DirectCast(cbblocation.SelectedItem, DataRowView)
    Dim cbbtext As String = row.Item("node")
    Dim cbbtype As ComboBox = Me.FindName("comboBoxType")
    Dim cbbtext2 As String = cbbtype.Text
    Dim RETAILISOAMDDataSet As Retail_ISO_AMD.RETAILISOAMDDataSet = CType(Me.FindResource("RETAILISOAMDDataSet"), Retail_ISO_AMD.RETAILISOAMDDataSet)
    Dim RETAILISOAMDDataSetTableAssetsTableAdapter As Retail_ISO_AMD.RETAILISOAMDDataSetTableAdapters.tableAssetsTableAdapter = New Retail_ISO_AMD.RETAILISOAMDDataSetTableAdapters.tableAssetsTableAdapter()
    RETAILISOAMDDataSetTableAssetsTableAdapter.AddNewAsset(cbbtext, txbSerial.Text, txbName.Text, cbbtext2, Date.Today, txbPO.Text)
    node = cbbtext
    Dim mp As New MainPage
    mp.RefreshGrid(node)
    Me.Close()
    End Sub
    The RefreshGrid method:
    Public Sub RefreshGrid(node As String)
    Dim RETAILISOAMDDataSet As Retail_ISO_AMD.RETAILISOAMDDataSet = CType(Me.FindResource("RETAILISOAMDDataSet"), Retail_ISO_AMD.RETAILISOAMDDataSet)
    Dim RETAILISOAMDDataSetTableAssetsTableAdapter As Retail_ISO_AMD.RETAILISOAMDDataSetTableAdapters.tableAssetsTableAdapter = New Retail_ISO_AMD.RETAILISOAMDDataSetTableAdapters.tableAssetsTableAdapter()
    RETAILISOAMDDataSetTableAssetsTableAdapter.FillByNode(RETAILISOAMDDataSet.tableAssets, node)
    Dim TableAssetsViewSource As System.Windows.Data.CollectionViewSource = CType(Me.FindResource("TableAssetsViewSource"), System.Windows.Data.CollectionViewSource)
    Dim be As BindingExpression = BindingOperations.GetBindingExpression(TableAssetsViewSource, CollectionViewSource.SourceProperty)
    be.UpdateTarget()
    End Sub
    And this is what I use to delete a row from the table (and without doing anything special, the DataGrid auto-updates with the changes):
    Private Sub Button_Click_4(sender As Object, e As RoutedEventArgs)
    If TableAssetsDataGrid.SelectedIndex = -1 Then
    MsgBox("You have selected nothing to Delete!", MsgBoxStyle.OkOnly, "Nothing Selected")
    Else
    Dim dgv As DataGridTextColumn = Me.FindName("NodeColumn")
    Dim row As DataRowView = DirectCast(Me.TableAssetsDataGrid.SelectedItem, DataRowView)
    Dim dgvText As String = row.Item("node")
    Dim dgv2 As DataGridTextColumn = Me.FindName("SerialColumn")
    Dim row2 As DataRowView = DirectCast(Me.TableAssetsDataGrid.SelectedItem, DataRowView)
    Dim dgvText2 As String = row.Item("serial")
    Dim dgv3 As DataGridTextColumn = Me.FindName("NameColumn")
    Dim row3 As DataRowView = DirectCast(Me.TableAssetsDataGrid.SelectedItem, DataRowView)
    Dim dgvText3 As String = row.Item("name")
    Dim dgv4 As DataGridTextColumn = Me.FindName("TypeColumn")
    Dim row4 As DataRowView = DirectCast(Me.TableAssetsDataGrid.SelectedItem, DataRowView)
    Dim dgvText4 As String = row.Item("type")
    Dim dgv5 As DataGridTextColumn = Me.FindName("_dateColumn")
    Dim row5 As DataRowView = DirectCast(Me.TableAssetsDataGrid.SelectedItem, DataRowView)
    Dim dgvText5 As String = row.Item("date")
    Dim dgv6 As DataGridTextColumn = Me.FindName("POColumn")
    Dim row6 As DataRowView = DirectCast(Me.TableAssetsDataGrid.SelectedItem, DataRowView)
    Dim dgvText6 As String = row.Item("po")
    Dim RETAILISOAMDDataSet As Retail_ISO_AMD.RETAILISOAMDDataSet = CType(Me.FindResource("RETAILISOAMDDataSet"), Retail_ISO_AMD.RETAILISOAMDDataSet)
    Dim RETAILISOAMDDataSetTableAssetsTableAdapter As Retail_ISO_AMD.RETAILISOAMDDataSetTableAdapters.tableAssetsTableAdapter = New Retail_ISO_AMD.RETAILISOAMDDataSetTableAdapters.tableAssetsTableAdapter()
    RETAILISOAMDDataSetTableAssetsTableAdapter.RemoveAsset(dgvText, dgvText2, dgvText3, dgvText4, dgvText5, dgvText6)
    Dim cbb As ComboBox = Me.FindName("cbbLocation")
    Dim row7 As DataRowView = DirectCast(cbb.SelectedItem, DataRowView)
    Dim cbbtext As String = row.Item("node")
    RefreshGrid(cbbtext)
    End If
    End Sub
    --------- End of Edit
    It is bound to a Dataset which gets it's data from a SQL Database.
    Loading the Data and Filtering the data based on certain conditions work 100%. The problem I am having is as follows:
    I have a form on the Page that takes input and inserts a row into the Database. When this happens, the DataGrid won't automatically reflect the changes (even if I recall the Fill Method of the Dataset). No matter what I do, I have to refresh the entire page
    and THEN Fill the Dataset to see any changes.
    This is what strikes me as odd...
    When I do a delete row operation on the Database (Custom Method on the Dataset with conditions), and just Fill the Dataset again (without doing anything special), the row deletes and the changes is reflected IMMEDIATELY.
    What am I doing wrong here? Why would Delete Row reflect the changes on the DataGrid but no Insert Row?
    Thanks in Advance.
    (P.S. I am very rusty with my developing skills, I haven't done this in YEARS)

    >>And what about the the most important question, how exactly is TableAssetsViewSource defined in the XAML markup and what is
    its Source property set or bound to? And what about the reproducable sample...?
    Here is the Markup of the TableAssetsViewSource:
    <Page.Resources>
    <local:RETAILISOAMDDataSet x:Key="RETAILISOAMDDataSet"/>
    <CollectionViewSource x:Key="TableRegionsViewSource" Source="{Binding tableRegions, Source={StaticResource RETAILISOAMDDataSet}}"/>
    <CollectionViewSource x:Key="TableLocationsViewSource" Source="{Binding tableLocations, Source={StaticResource RETAILISOAMDDataSet}}"/>
    <CollectionViewSource x:Key="TableAssetsViewSource" Source="{Binding tableAssets, Source={StaticResource RETAILISOAMDDataSet}}"/>
    </Page.Resources>
    The ItemsSource of the DataGrid is bound to the TableAssetsViewSource:
    <DataGrid DataContext="{StaticResource TableAssetsViewSource}" ItemsSource="{Binding}" x:Name="TableAssetsDataGrid" AutoGenerateColumns="False" EnableRowVirtualization="True" Margin="15,10,10,10" RowDetailsVisibilityMode="VisibleWhenSelected" Grid.Column="1" HeadersVisibility="Column" CanUserResizeRows="False" IsReadOnly="True">
    Just remember, this code was auto-generated with the drag & drop onto the Page, so I did little in terms of setting the actual bindings.
    All in all, what I have done so far works as intended, except that when I want to add a row to the table it does not reflect, and that it only shows after refreshing/restarting the application.
    I will try and put together a reproducable sample.

  • LR export not reflecting changes

    I am using LR4.4. I work in RAW and then export to RAW. Suddenly my exports do not reflect the changes I have made in LR. It is as though LR has stopped working. I have done this a thousand times. I cannot understand why it has stopped working as usual. I can export to jpg and psd and retain changes.

    You say you export to RAW, which I assume means you set the Image Format (in the Export's File Settings box) to "Original", yes? In that situation if you are exporting an existing proprietary Raw file such as CR2, NEF, etc., all that the Export process does is make a copy of the original file but also write out a sidecar XMP file containing all the edits that you made in Lightroom. It's always been that way. To see the effect of those edits you have to open the exported file in an application that is capable of reading and applying those changes in the XMP sidecar, such as Bridge, PS, PSE (i.e. Adobe products).
    So if you have done this a thousand times before, what application were you viewing the exported RAW file with? And have you changed it?
    Or are you using DNG?

  • Flash not reflect changes on postback

    Hi
    My flash file get images from one folder
    with C# code file I changes the image in the folder dynamically on button click
    flash not show changes on post back
    but when I close IE and run page then flash reflect changes 
    pls help 
    Thank You

    I have the same problem!!  This was first asked some time ago and I have been searching for an answer, but have not found one.  COULD SOMEONE FROM APPLE PLEASE ANSWER THIS??!!  It is a real pain and a black mark on an otherwise great product.
    I have tried sync-ing via the cable and via wireless.  No difference.  My SW versions are:  iPad: 5.1.1, iTunes: 10.6.3, OSX: 10.6.8.  My iPad is an iPad1; my computer is a MacBook Pro.

  • List view web part not reflecting changes made to list view in SharePoint Designer

    Dear All,
    When adding a list view web part containing a view modified in SharePoint designer (e.g. conditional formatting applied, or group headers modified) I'm finding that the changes made in SPD are not reflected in the web part. 
    For example, I go into SPD edit a view, and the view appears correctly when I go back into SharePoint, however when I link to the view within a list view web part it results in losing the changes made in SPD. 
    Becasue it's a publishing page I'm unable to edit the contents of the web part in SPD.
    I'm sure this is expected behavior but how do I get around this?
    Thnaks,
    MDB

    Try below
    http://stackoverflow.com/questions/19533998/sharepoint-designer-doesnt-show-anything-in-list-and-libraries-link
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/a63a1894-6b1d-420a-95dd-b6c546eab34d/updates-made-to-sharepoint-designer-2010-workflow-do-not-show-up-on-the-server?forum=sharepointcustomizationprevious
    http://stackoverflow.com/questions/5959521/sharepoint-designer-saves-the-changes-but-it-does-not-affect
    http://social.technet.microsoft.com/Forums/en-US/1e9a8c27-bbc5-4a6f-8daf-4b243182f543/changes-in-sharepoint-designer-2010-not-showing-in-sharepoint-server-2010-page?forum=sharepointadminprevious

  • BAPI_ACTIVITYCRM_CHANGEMULTI not reflecting changes

    HI All,
    I want to update the partner info for an activity.
    I am updating the Activity in CRM using BAPI_ACTIVITYCRM_CHANGEMULTI and have used BAPI_TRANSACTION_COMMIT after that. No error messages are returned, but the changes are not reflected.
    Am I missing something ? any hints ?
    are there any alternative BAPi's, FM's to do the same ?
    thanks in advance,
    Raviraj

    Hi Raviraj,
    Try using the Function module - CRM_ORDER_MAINTAIN. You need to pass the CHANGING parameter - CT_INPUT_FIELDS. This should contain all the fields that you want to change.
    After this you need to call the FM - CRM_ORDER_SAVE and then call the BAPI_TRANSACION_COMMIT.
    Regards,
    Prabhas.

  • RPM Portal - not reflecting - change in WD Abap structure

    Hello,
    I am Abap developer and know very few things about portal.
    Recently changed a struture(enlarged two fields from INT1 to INT2) in WD ABAP.
    The problem is change is not reflected in RPM Portal.
    My questions :
    1.How to find from which struture the portal fetches the value ?
    2.New error is displayed on an other field in the same structure which was modified.
        Type conversion error, field ZZRPM_INV_MAK,complex type class
        com.sap.xapps.cprxrpm.model__Rpm_Ts_Item_D_Api.
    Solution is quite urgent.
    Thank you

    It was resolved after restart of Portal server.

  • EAR file not reflecting the changes after successful deployment

    Hi Everyone,
    We have a weird situation where we deployed a EAR file in NWDS and changes got reflected in Dev portal and when pushed to QA the changes are not getting reflected.
    There must be some archieving issue or unable to overwrite the existing EAR file...
    Please help us out this is happening only for one ear file rest are getting deployed properly.. we are using sd

    Hi,
    There are possibilities that your ear is depending on other referenced application/class. I encounterred like this kind of error. In my situation the dependent/referred project/classes were not deployed correctly.(Correct version is not deployed).
    My suggesstion would be in that area,so check if all the used components latest version is deployed.

  • Adobe Media Encoder CC renders do not reflect changes to Dynamically Linked After Effects Comps

    When rendering a Premiere timeline with a dynamically linked After Effects composition, Adobe Media Encoder will sometimes use an older version of the linked composition (even after I have saved changes in the After Effects comp).
    For example, if I correct a spelling mistake on some text in After Effects, save the composition, and then add the sequence to the render queue in Premiere, the final output from media encoder still has the old spelling.
    If I do a straight export from Premiere instead of adding to render queue, the output is always correct. I've noticed this problem on several different Windows 8.1 systems.
    All versions of the software are up to date as of today.
    Why is this? Is it something to do with the disk cache in After Effects? Does media encoder have it's own cache that I need to clear?

    Hi, I've been having this same issue.  Here are some additional things I've noticed about it:
    Changes are reflected properly when played back on timeline in Pr CC 2014.
    Happens regardless if the dynamic link file was rendered or not, thus deleting the render files does not fix the issue.
    The issue can persist through saving, closing, and reopening both AE and Pr. 
    I'm using OSX 10.9.4, so this is not just a PC issue.
    Other than manually watching for every change to be reflected in the render, there is no way to know a problem has occurred.  Needless to say this can be incredibly costly.
    Please address this quickly, it's completely unacceptable that what we render out could be a different version from what we see on the timeline.
    PS Some additional things I will be testing:
    Does the issue persist through closing all CC apps, including Media Encoder.
    Does rendering directly out of Pr, i.e. not using Media Encoder, fix the issue.

  • Adobe Primiere Pro CS5 classroom in book files not opening...

    I can open files from other sources but the new Adobe classroom in a book series is giving me issues:
    I have a mac but the sdisk says PC/Mac.
    Error message (no number here)
    File import failure
    File format not supported
    Anyone have any ideas?  thanks

    First, I'm mad as heck! I pre-order my CiaB CS5 and mine has NOT come yet... ! You got yours first.
    OK, let's talk about those PRPROJ files. There are two ways to use a PRPROJ file in PrPro - you can Open from the New/Open dialog, and you can use New Project to create one, and then Import the PRPROJ into that Project, where it will bring in the full Bin structure and the Timeline(s). One just needs to twirl open those Bins and then Dbl-click on the Timeline. Does this second method also fail for you?
    As for the "file type" error, my first thought is that the file affinity for PRPROJ is not set correctly in your OS. I know zero about how/where this is done in the Mac OS's, so will be of no help. Second, I wonder if you have a bad installation. Can you create a New Project? Does that New Project function correctly?
    One good thing about your issue is that the author of that book is a MOD here. He knows exactly what is on that DVD, and has personally tested it. Curt can very likely get you up and using the book and its assets in a hurry.
    Personally, I am thinking that all CiaB CS5's are magically disabled, until Hunt gets his copy... 
    Good luck, and let us know about the Import Project and also how New Project works for you. Curt will be by soon too.
    Hunt
    [Edit] One last thought - you do have PrPro CS5 don't you? CS5 Projects will most likely NOT Open/Import into earlier versions.
    Message was edited by: Bill Hunt - Added [Edit]

  • Servlet not reflecting change in DB

    Hi All !
    I am doing the Sun J2EE 1.4 Tutorial (Duke's BookStore).
    I have been reading the code in the tutorial and writing it out myself. I have successfully create the BookStoreServlet which connects to the DB and gets the number of books.
    Then, I delete the books from the DB and commit to the DB.
    However, ON REFRESH, the servlet still shows the same number of books available.
    Is this behaviour expected? Or am I coding something incorrectly?
    If it is expected behaviour then how can I change it so that it is dynamic, i.e. the page reflects the changes in the DB with every refresh
    TIA,
    Kunal

    No, my DB is not caching either.
    I can tell so because, I have now compiled my webapp on to different tomcat servers (running on seperate computers), but using the same DB.
    The second one that I deployed my webapp on reflects the change. But the first one is still showing the same old info.
    Note that I have BookDatabase object that connects to the DB, fetchs the records and creates multiple Book objects.
    The BookDatabase object is initialized in a ContextListener and also destroyed in the contextDestroyed( ... ) method.

  • Time Machine backup is not reflecting changes when restoring

    I needed to restore my Address Book (I needed to restore some names I had accidently deleted) from Time Machine.  I went to the last backup date in TM and restored Address Book, however the restored version did not show the corrected copy of the address book.  I then went back several dates and all reflected the current messed up file of Address Book on my iMac.  What did I do  wrong?

    Did you restore the Application, or the Data?
    You need to restore the data.  You can restore individual contacts (see the yellow box in #15 of Time Machine - Frequently Asked Questions.
    Or, you can restore everthing, via the Finder and Time Machine, by restoring this folder:
    <home folder>/Library/Application Support/AddressBook

Maybe you are looking for

  • Travwerse a linked list in a doubly linked list

    I have to traverse a linked list to a doubly linked list and I am not sure how to do that. Here is some sample code: class linkData {           dataRecord data;           linkData next;           linkData prev; linkData head;Should I use something li

  • RWD error during Configuration of RWD Server: Object Required webservice.js

    We are in the process of Configuring the Server - after installing the Autonomy IDOL/DISH and the RWD Server. We get to the point of entering Company Name - and Product Key, as soon as we click on SAVE we get the error message Object Required        

  • J1IH values not reflecting in j2iun

    Dear experts, We have posted excise entry in transaction code J1IH (Addl Excise) The values are updating in G/L accounts but not showing in Utilization (j2iun), We are not able to get the value in J2IUN screen which we have posted through J1IH,. We h

  • Outer join in view criteria

    Hi everybody I use jdeveloper 11.1.1.6.0 I want to create outer join in view criteria, so I had to override getCriteriaItemClause method in ViewObjImpl.java my query is like this : SELECT t1.row_no, t2.type FROM   table_1  t1 , table_2  t2 WHERE   t1

  • Delta in FI

    Hi there, what is the problem occure in the delta, if i will use 0FI_GL_4, 0FI_AR_4, 0FI_AP_4 please help me to understand the extraction process. Thanks