Problem updating pages that use .dwt file

So i have 45 files that all use the same .dwt file.  Usually when I make a change to the template and go file > save it asks me if i want to update all pages that use that specific .dwf file.  For some reason it doesn't show the pages that do.  Although if I go to the specific page for example contact.html and do a Modify > Templates > Apply template to page, it applys the changes, and then once i make a change to the .dwt file and do the File > Save, contact.html now appears in the section of files to be updated.  I do not want to go thru every page and manually apply the template does anyone have any information that could help me out? thanks
G8ofH8

I do not want to go thru every page and manually apply the template does anyone have any information that could help me out?
However, that would work.
It sounds like your site cache has become corrupted.  Try the following -
1.  Open DW's Site manager, select the site name, and click on EXPORT (make sure you opt to export the FULL site defintion including FTP info)
2.  Export the site definition to a KNOWN location on your hard drive
3.  With the site name still selected in Site manager, click REMOVE to remove that site from your list of definitions
4.  Import the site definition you just exported - that should solve the updating problem
Does this heal things for you?

Similar Messages

  • Lost prompt to update pages that use template..

    Yes I know I should not use templates but I do on very small sites with under 10 pages. When making adjustments to the templates I used to get a prompt asking me if I want to update pages that use that template, but I no longer get that. I must have changed something but I am wondering how I can change it back. I can manually update but I always forget and I do not wantto go that route....anyone know how I can get that prompt back to update pages that use template? Thanks much!

    Well you have suggested SSI's before instead Murray....
    No, I've suggested SSI's instead of Library items, or a combination of SSI's and a template instead of nested templates, but I've never suggested using SSI's instead of templates, although it is a workable solution.
    I dont think it matters what I have in the code. It used to prompt me whenever I changed ANYTHING and had to save.
    I do.  However, try this simple test -
    1.  Create a new, blank HTML file.
    2.  Save it with FILE | Save as Template... (verify that the page is saved in the "Templates" folder)
    3.  Spawn a new child page from this template with FILE | New > Page from Template.
    4.  Save this page with any name you prefer.
    5.  Return to the template page and change the title from Untitled document to "Whatever".  Save it.  Are you prompted?  You should be.
    If you are not prompted then there is something systemically wrong with your DW installation.

  • Updating pages that use templates takes forever!

    All I often have to update pages based upon template changes,
    and I have a huge site 10,000 pages, it take dw forever to look
    through evryhting, to find the corect pages. Is there anyway I can
    specify what folder to find the pages rather then it looking
    through the whole site?
    thanks!

    The maximum practical site size for which a *Templates ONLY*
    approach makes
    sense is about 100 files. You are 100 times greater than
    that.
    Unfortunately, you are now stuck. The best thing you can do
    is to slowly
    work your way out of Templates and into server side includes
    instead.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "missymonolo" <[email protected]> wrote in
    message
    news:gd82j2$cgb$[email protected]..
    > All I often have to update pages based upon template
    changes, and I have a
    > huge
    > site 10,000 pages, it take dw forever to look through
    evryhting, to find
    > the
    > corect pages. Is there anyway I can specify what folder
    to find the pages
    > rather then it looking through the whole site?
    > thanks!
    >

  • Hidden Report Viewer Confiugration Error on aspx pages that use report viewer web control

    I try to fix the problem. The error below is embedded on aspx pages that use report viewer web control. Please note that the div element is hidden, and the reportviewer is displaying correct contents.
    Div element hidden on aspx page
    <div id="ReportViewer1_HttpHandlerMissingErrorMessage" style="border-color:Red;border-width:2px;border-style:Solid;padding:10px;display:none;font-size:.85em;">
    <h2>
    Report Viewer Configuration Error
    </h2><p>The Report Viewer Web Control HTTP Handler has not been registered in the application's web.config file. Add &lt;add verb="*" path="Reserved.ReportViewerWebControl.axd" type = "Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /&gt; to the system.web/httpHandlers section of the web.config file, or add &lt;add name="ReportViewerWebControlHandler" preCondition="integratedMode" verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /&gt; to the system.webServer/handlers section for Internet Information Services 7 or later.</p>
    </div>
    I tried adding the two elements to web.config, but to no avail.
    Add below to system.web/httpHandlers
    <add verb="*" path="Reserved.ReportViewerWebControl.axd" type = "Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    or add below to system.webServer/handlers for Internet Information Services 7 or later.
    <add name="ReportViewerWebControlHandler" preCondition="integratedMode" verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    The required assemblies below are installed under C:\Windows\assembly folder. I have installed both Microsoft ReportViewer 2010 Redistributable, and 2008 SP1.
    Microsoft.ReportViewer.WebForms, version 10
    Microsoft.ReportViewer.Common, version 10
    Below is the whole web.config:
    <?xml version="1.0" encoding="utf-8"?>
    <!--
    For more information on how to configure your ASP.NET application, please visit
    http://go.microsoft.com/fwlink/?LinkId=169433
    -->
    <configuration>
    <connectionStrings>
    <add name="ApplicationServices" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\aspnetdb.mdf;User Instance=true" providerName="System.Data.SqlClient" />
    </connectionStrings>
    <appSettings>
    <add key="car" value="myCar" />
    <!--<add key="ReportViewerServerConnection" value="WebForm.Lab.ReportConnection, WebForm" />-->
    </appSettings>
    <system.web>
    <httpHandlers>
    <add verb = "*" path = "Reserved.ReportViewerWebControl.axd" type = "Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    <!--<add path="Reserved.ReportViewerWebControl.axd" verb="*" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" validate="false" />-->
    </httpHandlers>
    <compilation debug="true" targetFramework="4.0">
    <assemblies>
    <add assembly="Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
    <add assembly="Microsoft.ReportViewer.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
    <add assembly="Microsoft.Build.Framework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
    <add assembly="System.Management, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
    </assemblies>
    <buildProviders>
    <add extension=".rdlc" type="Microsoft.Reporting.RdlBuildProvider, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    </buildProviders>
    </compilation>
    <authentication mode="Forms">
    <forms loginUrl="~/Account/Login.aspx" timeout="2880" />
    </authentication>
    <membership>
    <providers>
    <clear />
    <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="ApplicationServices" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="/" />
    </providers>
    </membership>
    <profile>
    <providers>
    <clear />
    <add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/" />
    </providers>
    </profile>
    <roleManager enabled="false">
    <providers>
    <clear />
    <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="ApplicationServices" applicationName="/" />
    <add name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider" applicationName="/" />
    </providers>
    </roleManager>
    <pages>
    <controls>
    <add tagPrefix="ajaxToolkit" assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" />
    </controls>
    </pages>
    </system.web>
    <system.webServer>
    <modules runAllManagedModulesForAllRequests="true" />
    <validation validateIntegratedModeConfiguration="false" />
    <handlers>
    <add name="ReportViewerWebControlHandler" preCondition="integratedMode" verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    </handlers>
    <httpProtocol>
    <customHeaders>
    <remove name="X-Powered-By" />
    </customHeaders>
    </httpProtocol>
    </system.webServer>
    <system.serviceModel>
    <bindings>
    <basicHttpBinding>
    <binding name="WebService1Soap" />
    </basicHttpBinding>
    </bindings>
    <client>
    <endpoint address="http://localhost:58269/WebService1.asmx" binding="basicHttpBinding"
    bindingConfiguration="WebService1Soap" contract="ServiceReference1.WebService1Soap"
    name="WebService1Soap" />
    </client>
    </system.serviceModel>
    </configuration>
    Any idea?
    Update:
    IIS is7.5, AppPool is Integrated.
    I have tried below, none of them works:
    1) Add it only to system.web\httpHanders. Changed AppPool to classic, still got hidden error.
    2) Add it only to system.webServer\handlers. Integrated mode,still got hidden error.
    3) Add both to both element. Integrated mode, still got hidden error.

    Hi Kingofwebguru,
    According to your description, when you use reportviewer control, you got the error message: The Report Viewer Web Control HTTP Handler has not been registered in the application's web.config file.
    To troubleshoot the problem, please refer to the following steps:
    Click Start, click Run, then type InetMgr.exe and click OK.
    Click plus sign next to server name to expand it.
    Click Application Pools in left pane.
    In Application Pools list, click DefaultAppPool.
    In the Actions pane, in Edit Application Pool section, click Edit Settings to check the Pipeline mode.
    Configuration settings for the HTTP handlers are specified in the system.web/httpHandlers element and the system.webServer/handlers element. of your application Web.config file. The handler specified in system.web/httpHandler is used by Internet Information
    Services (IIS) 6.0 or IIS 7.0 in Classic mode, whereas the handler specified in system.webServer/handlers is used by IIS 7.0 in Integrated mode. To use IIS 7.0 in Integrated mode, you must remove the HTTP handler in system.web/httpHandlers. Otherwise, IIS
    will not run the application, but will display an error message instead.
    For more information about Web.config Settings for ReportViewer, please refer to the following document:
    http://msdn.microsoft.com/en-us/library/ms251661.aspx
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu
    If you have any feedback on our support, please click
    here.
    Wendy Fu
    TechNet Community Support

  • I have a web page that uses a library item( !-- #BeginLibraryItem "/lib/topnav_main.lbi" -- ) . I

    I have a web page that uses a library item( <!-- #BeginLibraryItem "/lib/topnav_main.lbi" --> ) . I have made a change to topnav_main.lbi but don't know how to get it updated to the web page .  It is a heading and is used in many places. Can you help me?

    For websphere specific questions you might try:
    http://www.websphere-world.com/
    and the
    ibm.software.websphere.application-server.*
    newsgroups.
    Regards,
    S. Bro

  • Update purchase Order using offline file

    Hi Experts
    How to create and update purchase Order using offline file. How to execute offline API from program in batch ?

    Hi Experts
    How to create and update purchase Order using offline file. How to execute offline API from program in batch ?

  • Pages that use flash freeze up in mavericks.

    When viewing a page that uses a flash plug-in, the page will freeze after a few seconds of inactivity by me. It will start again if I touch my mouse or track pad over the area, but that's no solution. That's terrible.
    I thought maybe it was a new setting, and I unchecked the option to stop plug-ins to save power when possible, but that didn't do anything.
    This isn't ruining my life or anything. I'm just playing little flash games like Adventure Quest, and zOMG, but it's irritating.
    Thank you for reading.
    What is the solution?

    Go step by step and test.
    1. System Preferences > Other/ Flash Player > Advanced >  Delete  All
         Press the "Delete All" button
         Install Adobe Flash Player.
        http://get.adobe.com/flashplayer/
        Follow the prompts.
        Quit Safari.
        Restart computer. Relaunch Safari.
    2.  Enable Plug-ins
        Safari > Preferences > Security
        Internet Plug-ins >  "Allow  plug-ins"
        Enable it.
        Press " Manage Website Settings" button for more options.
    3. Check  whether you are currently  in  YouTube HTML 5 trial.
         http://www.youtube.com/html5
        At the bottom  left of the page  uncheck the box beside
       "You are currently in the HTML5 trial".
    4. Reset Safari.
        Click Safari in the menu bar.
        From the drop down select "Reset Safari".
        Uncheck the boxes beside all items.
        Check the box beside "Remove all website data".
        Click "Reset".
    5. Turn off Extensions, if any.
        Safari > Preferences > Extensions
         Now try YouTube.
    Best.

  • Have you noticed the newest version 3.6.23 crashes frequently? Mine does it a few times a day on web pages that used to work fine before the upgrade.

    Since the last Firefox update was installed on my system, Firefox crashes several times a day on websites that used to be no problem. I have five crash report id's from the last two days (I usually don't send the report). Do you want all of them?
    I'm running Firefox 3.6.23
    I'm running MacOS X version 10.5.8, on 1.5ghz powerPC G4
    with 2gb memory and over 100gig still available on my 150gig hard drive.
    I checked for updates - there are no new updates.
    I tried sending feedback, but the feedback page said I had to be running the latest version of firefox. So I clicked on "latest version of Firefox", and got "Unfortunately the latest version of Firefox isn't compatible with your computer's operating system"
    The "learn more" link took me to http://www.mozilla.org/en-US/firefox/4.0/system-requirements/ which says that OS 10.5 is supported.
    So - how do I get back to my previous version of Firefox so it doesn't keep crashing
    AND/OR
    Is there a fix coming to stop all the crashing
    AND/OR
    What do I do about Firefox versions on my computer?
    Thanks

    That can be a problem with a plugin, possibly Java.
    * [https://bugzilla.mozilla.org/show_bug.cgi?id=573055 bug 573055] - Reproducible [@ nsNPAPIPluginInstance::InitializePlugin()] crashes / Java

  • Published site has more pages that local iWeb files

    I added several pages to my site. Then my hard drive crashed and my backup did not have the new pages. Now the published site has more pages than what i see when I open iWeb. How can I fix this? I want all the published pages also available in my hard drive.

    You will have to recreate the new pages, unless you can use a file recovery service to ressurect the domain file that was on the crashed hard drive.
    You can copy and paste images and text from the published website (view it in your browser) into new iWeb pages, but there is not a way to import html files back into iWeb.

  • Tracking pages that use color/inks?

    For those of you who produce projects in InDesign where some pages have color (or spot inks) available and others don't, what methods do you use to keep track?
    Anything clever?
    Generally speaking, for our tabloid newspaper that's imposed 4-up, we just track it on paper and hope that nobody screws up, and don't make any attempt to track it in InDesign. (For instance, a 16-page paper will probably have CMYK on pp. 1,8,9, and 16. And maybe also on pp. 3, 6, 11, 14.)
    I don't expect InDesign to do the math for me, but once we've decided, I wonder if we should try harder to track it. For instance, we could color pages in the pages panel, but that's fairly subtle. We could add some non-printing markers on the page and/or pasteboard, such as a big colored rectangle behind the entire page. We could do any of the above on master pages and have seperate master pages for the color pages.
    (Having seperate master pages for the colored pages seems like a good idea. It's not something we do right now, I guess, because there is no substantive difference in the recurring elements on pages that have color.)
    What do you do? Either in books or newspapers or other forms of print?
    What works and what doesn't work?
    What do you wish you could do?
    I worry that anything I've thought of so far is either too visible or too in-visible. Hmm, maybe a subtle transparency-like grid?

    Hmm, I didn't mean to anchor this question too firmly in newspaper-space. What drove the query was production of an 8x10 32-page magazine. Like Peter, we don't have too much trouble keeping track when its the newspaper, or perhaps it's because we have workflows that are well-adapted to figuring it out early. When we have fewer design constraints, suddenly it becomes more important.
    Peter wrote:
    For a book I did recently that was printed digital I ended up making a preflight profile that doesn't allow CMY or spot plates. It throws a warning with a link to a location, so I can just go through the list and make sure that I really intended to have a color page.
    Hmm. I guess checking after-the-fact is one way to go. I feel like we do a reasonable job with that, but I think we're 100% on catching any such screwups at the final proofing stage, it's just that we'd love to catch them earlier and have an easier way to tell in advance. Especially when our FPO photos tend to be color, which means b/w layouts will look color initially, so confusion is easy.
    Uwe:
    I notice you've provided a theoretical answer; while that's interesting, I would like to hear more about what you actually do.
    If working with single side pages one could imagine a script that constantly checks the layout window(s) for specific page names and would apply a greyscale color profile to "View/Proof setup/custom…" if on specified greyscale pages and a CMYK color profile if on specified color pages.
    I'm under the impression that greyscale color profiles don't work in InDesign.  Do you have a workaround for that?
    That's an interesting way to go. I don't normally work in Proof Colors mode I wonder if there's a performance penalty.
    And yeah, lack of facing pages support seems a definite problem...
    For facing pages we need a marker element that indicates "color page" or "greyscale page".
    It should be an object dependent on a specific page name and not part of a specific page or its content  (to be idependent when shifting pages around). I see no concept in InDesign to achieve this automatically in a constant way.
    I'm not too worried about how to have the page adornment be automatically implemented; I'm more interested in what kinds of page adornments people use and might be effective. At the end of my question, I suggested "Hmm, maybe a subtle transparency-like grid?" and I did run with that a little bit last night:
    I figured that a square grid too strongly screamed TRANSPARENCY so I'd try a hexagon grid. Unfortunately I don't think there's a great way to 2-color a grid of hexagons, and my first shading attempt doesn't work too well at the 10% opacity that is at. Still, I think it might be a workable way to go. But it might be too distracting. Not sure...
    Maybe a startup script that interacts when page names are changing or pages are shifted around is doable.
    I don't think it's too tough for a script in the idle loop to notice when pages are changing and to, say, change which master page is applied or pop up a dialog noting that. But I think I'm more interested in the UI for the designer once the pages are set, rather than the interface for changing the adornments. Because if I can't come up with a useful adornment, the rest doesn't matter.

  • HT201314 I want to remove older updates from APP Store update page that will not install because they are not compatable with my OS Version 10.8.5

    There are a couple of updates on my APP STORE page that are extremely annoying, they can't be installed because they are to old for my OSX version 10.8.5, I want to delete or remove them so that Spotlight  stops telling me that I have 2 updates to install, when they can't be installed unless I revert to an older OS version.
    Mac Pro 2010,  Dual 2.4 GHz Quad-Core Intel Xeon,   26 GB 1066MHz DDR3, 

    Try:
    Hide and unhide purchases in the Mac App Store - Apple Support
    This is another thing to look at  (see number 5):
    https://nicolamonaca.wordpress.com/2014/01/22/how-to-hide-a-software-update-in-t he-mac-app-store/

  • Publish app that uses XML file.

    Hi, I want to create an App which uses XML file as a data source. I want that XML file is online file on my server downloaded in first use, and looking for changes every time user want to do this, so i have a legal question if apple can release my app in AppStore or they can block it?

    Thanks,
    I have legal right, this is my XML file on my server.
    My main concern is that changing XML in fact i may change entire app. And this make me think apple would not like it. So my question is: maybe someone had similar experience.

  • 4G Touch sync problem - existing purchases that used to play now say can't be converted

    Hello - I seem to have a combination of issues.  My 4G 32GB was lost for about 10 months (it was in my couch).  I immediately backed it up and updated to 6.1.5.  From what I understand my 4G won't support IOS 7 so....I tried to sync and noticed that half my library was not playing. It showed on the ipod but the songs were skipped over.  I checked iTunes and tried to re-sync several times.  It has not helped.  I have a combination of purchased songs, that used to play fine, and other songs, that also used to play fine, now won't play at all.  I get the error saying that they could not be found or that they can't be converted.  I am at a loss on what to do.  I admit I am not too savy when it comes to navigating this ipod and itunes.  I like to plug and go - keep it easy.  I appreciate any help.  I have looked at other threads but I am not sure which of the many many many ideas I should utilise.
    Thank you

    Assuming they play in iTunes on the computer:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Unsync all music and resync
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                                
    iOS: How to back up                                                                
    - Restore to factory settings/new iOS device.             

  • JSP on BEA  Weblogic: random error when loading a jsp page that uses a Bean

    Hi!
    I wrote a simple jsp page that stores a String in a JavaBean, and then forwards to another jsp page to display that String. The jsp pages are deployed on a BEA Weblogic 6 Server, but I get a weird behaviour when loading the page into my browser. Usually I get an error message:
    /Response.jsp(9): class 'query.jsp.QueryBean' could not be loaded
    probably occurred due to an error in /Query.jsp line 9:
    <jsp:useBean id = "queryBean" scope = "request" class = "query.jsp.QueryBean" />
    But the funny thing is that after reloading the page a few times it eventually works. The bahaviour seems to be totally random - sometimes it works, sometimes it claims not finding the JavaBean class.
    Anyone experienced something similar?
    Thank you very much,
    Charlie

    Is QueryBean.class located under '<appname>/Web_inf/query/jsp/'?
    If it is please try changing the package name to something else like com.myclass or something like that.

  • I keep receiving this error: "the application cannot be installed due to a certificate problem" when trying to update program that use adobe AIR (vudu-to-go)

    Can anyone tell me how I can get around this error? I've tried reinstalling adobe air and reinstalling the programs but neither works.

    This issue happens when an older version of Adobe Story is already installed on a system.
    To resolve this issue you will have to first remove that version and then install the latest one.
    Now depending upon which system you are using, below are the steps:
    MAC:
    Open 'Applications' folder in Finder.
    Move 'Adobe Story' application to Trash and remove it from Trash too.
    Just to make sure that this application is not installed on a different drive, do a search for 'Adobe Story' in spotlight. If it is present on a different location, then remove it from there too.
    Now log into story.adobe.com and download the desktop application again and install it.
    WINDOWS:
    Open Controls Panel and uninstall Adobe Story application
    Now log into story.adobe.com and download the desktop application again and install it

Maybe you are looking for

  • Button enable and disbling is not working

    Hi, I need to enable one button based on the condition like status should "new" and authorization number(selected) number eq to parent auth(the entire row). i have written like bindings.AuthorizationStatus.inputValue ne 'NEW' and bindings.Authorizati

  • POST-QUERY TRIGGER

    Hello. I'm a newbie here. I'm currently studying Oracle Form Builder and I'm a student. I've encountered this problem where I need to create a post-query trigger in a data block that counts a total number of rows in a particular item using a display

  • Printing pdfs

    When I print a pdf document some of the lines of text are a lighter black than the rest of the copy. This only happens with pdfs and it isn't always in the same location on the page. Are there settings I'm missing?

  • Help not syncing problem?

    I've got 20 imacs all syncing perfectly but i noticed one of them doesn't sync at all. in the status bar it says it never synced i've checked the account and redone it on the server but it still says its never been synced. Which is odd as the progres

  • IDOC SEGMENT QUALIFIER DOUBT...

    Gurus, I was looking at a givcen IDOC which was posted. The IDOC was of t5ype INVOIC01. I see that there are couple of segments with the same name but with different IDOC qualifier like: EIEDP02 which has three qulaifier reocrds like 001, 002 and 016