Creator Saving DataSource Settings

I've been fighting multiple problems setting up a system that lets me develop code under Creator (on a WinXP box) then publish on a local App Server 8 machine (WhiteBox Linux). I am accessing MySQL running on a WhiteBox Linux machine. (three-tier, right out of the book). I've finally got most of the bugs worked out, but in the process, I moved my Data Source from ff_local to ffdb.
Although I changed the few pages that used the DataSource, I'm still getting an error when I deploy the project locally, that says "Deployment failed because the following data sources have not been found in the Server Navigator: jdbc/ff_local.... ". I've rebooted the development machine, reloaded the project, no difference.
Even more annoying is the fact that now the DataSource Server Navigator resets to the default settings when I restart Creator (i.e. my datasources are gone, and the Order and Travel ones are back)
Anyone have a suggestion where I can look to find:
1) Where the offending ff_local reference is at?
2) How I can get Creator to remember my Server Navigator settings?
Thanks in advance,
harold miller

http://swforum.sun.com/jive/forum.jspa?forumID=123 is probably a better place to post creator questions as this is for creator product itself.
I am however confused on your questions. Why would you change the name of the DataSource? All I would expect you to have to do is change the host/port on your connection pool to point to your production backend this would not require you to change you application.
I cannot however speak to the wizards on creator and you are best served via the forum above

Similar Messages

  • PSC 2510 - Wireless setup - "Error while saving the settings to the device."

    While trying to setup my PSC 2510 to be wireless I get an error message "Error while saving the settings to the device.". This comes after selecting connecting Through Network, selecting printer device, selecting WEP, entering key, and clicking next.
    PSC 2510
    Windows Vista
    Using latest sfotware from HP to install
    Thanks
    Dennis
    This question was solved.
    View Solution.

    ISSUE RESOLVED .. based on responce from PrintDoc to penn (refrence topic "C4385 Printer - Netgear DGN2000 - wireless setup".
    PrintDoc responce helped me find my problem (to reset network settings on the printer to factory) even though diffrent printer.
    Thanks

  • Error saving column settings with ORA-01403: no data found Error

    Hi
    I have a region with multi row report updatable.
    When I am trying to change the query I am getting below error.
    Anybody let me know what will be the problem.
    ORA-01403: no data found
    Error saving column settings
    Regards
    Kiran

    Hi
    I was using below query for this region.
    SELECT
    result.segment1 Item#,
              result.inventory_item_id,
              result.revision,
              result.lot_number,
              result.Lot_Onhand,
              result.Heat,
              result.Cert_Site_Number Cert_Site_Number_Display,
              result.status_code Status_Code_Display,
    result.Cert_ID Cert_ID_Display,
              result.Cert_Site_Number,
              result.status_code,
    result.Cert_ID,
              result.transaction_id,
    result.po_header_id,
    result.po_line_id,
    result.rcv_transaction_id,
    result.shipment_header_id,
    result.shipment_line_id
    FROM          
    SELECT      
    msi.segment1,
              mmt.inventory_item_id,
              mmt.revision,
              mtln.lot_number,
              xx_utility_pkg.get_available_qty(mmt.inventory_item_id,mmt.organization_id,mmt.subinventory_code,mtln.lot_number,'ONHAND') Lot_Onhand,
              mtln.attribute1 Heat,
              mtln.attribute2 Cert_Site_Number,
              mms.status_code,
                        (          SELECT     clx.cert_id
                        FROM     xxqc.cert_mst cm,
                                  xxqc.cert_lot_xref clx
                        WHERE      cm.cert_id = clx.cert_id
                        AND cm.cert_type='MILL'
                        AND     clx.lot_no = mtln.lot_number
              ) Cert_ID,
              mmt.transaction_id,
              rsl.po_header_id,
              rsl.po_line_id,
    mmt.rcv_transaction_id,
    rt.shipment_header_id,
    rsl.shipment_line_id
    FROM      mtl_material_transactions mmt,
              mtl_transaction_lot_numbers mtln,
              mtl_material_statuses_tl mms,
              rcv_transactions rt,
              rcv_shipment_headers rsh,
              rcv_shipment_lines rsl,
    mtl_system_items_b msi
    WHERE     mmt.transaction_id = mtln.transaction_id
    AND          mmt.organization_id = mtln.organization_id
    AND          mtln.status_id = mms.status_id
    AND          rt.transaction_id = mmt.rcv_transaction_id
    AND          rsh.shipment_header_id = rt.shipment_header_id
    AND          rsl.shipment_header_id = rsh.shipment_header_id
    AND          rsh.organization_id = mmt.organization_id
    AND          rsl.item_id = mmt.inventory_item_id
    AND msi.inventory_item_id=rsl.item_id
    AND msi.organization_id = mmt.organization_id
    AND          rsl.po_line_id = DECODE(:P5_PO_LINE_NUMBER, 0,rsl.po_line_id,:P5_PO_LINE_NUMBER)
    AND rsl.po_header_id IN (     SELECT     po_header_id
                        FROM      po_headers_all
                        WHERE      segment1 = :P5_PO_NUMBER
                        AND      org_id = :P5_ORG_ID)
    AND          mtln.status_id = 90 -- Which is 'T' Status means Temporary
    AND          mmt.transaction_action_id = 27
    AND          mmt.transaction_source_type_id = 1
    AND          mmt.transaction_type_id = 18
    ) result
    WHERE result.Lot_Onhand > 0
    when I use above query I am able to update the region perfectly.
    But when I comment last WHERE CONDITION I am getting above problem.
    What could be the possilbe reason for this?
    Regards
    Kiran Akkiraju

  • CF10 Datasource settings

    I'm looking over the datasource settings for MS SQL Server and I have some questions about.
    Limit Connections
    I can't think of any reason to use this except to help minimize the damage of a DOS attack.
    Max Pooled Statements
    I understand that this should be set to equal the amount of unique cfquery tags that use the cfqueryparam tag and cfstoredproc tags. Thats great an all but why?
    Timeout
    This is how long it keeps each connection to that datasource open. Is there any reason to change this and how would you determine the right setting?
    Query Timeout
    It defaults to 0 (no timeout) and I don't want a query running forever. I can't think of the last time I had a query run more than 1 second. Any reason why I wouldn't want to set it to 5 seconds or less?
    Thanks
    Phil

    Limit Connections: Why?
    The main reason is that connections cost a lot of processing overhead (CPU resources). If you have too many of them going, things will eventually slow down to a treacle.
    Max Pooled Statements: Why set it equal to the number of unique cfquery tags that use the cfqueryparam tag and cfstoredproc tags?
    The ultimate purpose is efficiency. These types of query involve reuse. The underlying Java engine therefore creates and maintains a pool of prepared statements to be reused by each such query. The number of unique queries is a good starting point. It is unnecessary to allocate more memory space (for a larger pool) than is needed. Furthermore, since Java creates pooled statements based on currently active connections, the connection must be maintained for reuse of pooled statements to be possible.
    Timeout: Is there any reason to change it and how would you determine the right setting?
    This is how long ColdFusion maintains an idle connection before destroying it. I would leave it at the 20-minute default setting. That falls within the generally accepted range for session timeout in ColdFusion applications, namely, 20 to 30 minutes.
    Query Timeout: Any reason to set it to 5 seconds or less?
    The Relational Database Management System is separate from ColdFusion. A query may, for reasons beyond ColdFusion's control, run beyond the time that the ColdFusion application expects. The Coldfusion threads that wait on the query would continue to do so indefinitely. If it is critical to your application that a query must run under 5 seconds, or else abort, then you should set 'Query Timeout' to 5 seconds. Charlie Arehart wrote an instructive article on this.

  • Share saved optimize settings?

    Optimization settings include options unavailable in distiller settings ("Discard external cross references" is of special interest). The "PDF Optimizer" screen in  Acrobat Pro X includes an option for saving optimizer settings. (To reach the screen, select File > Save As > Optimized PDF.)  Is there a way to then share those settings with others? I have a team of 15 people who create their own PDFs, and I'd like them to all use the same optimization settings. Obviously I don't want to have to set up each user's settings individually.

    Whether I save the custom settings to the "Users/[username]/AppData/Roaming/Adobe/Adobe PDF/Settings" from the PDF preferences or use Distiller to modify the settings and try to save (running distiller as administrator), I am unable to load a joboptions file.
    (Win7pro, Acrobat X)

  • Error Saving Localized Settings mean?

    In the last month or so, I have received the following message when trying to open videos on the web and even my local weather forecast:
    "Error Saving Localized Settings
    Application is unable to access your file system "
    I get it in Safari (6.0.5) as well as Firefox.
    What does it mean?

    Good morning:
    This is not a new problem as evidenced by some web blogs going back three years.
    It started when I disabled Java Script......the victim of a lot of cautionary items on its security issues.
    Then odd things wouldn't play such as the hour-by-hour temperature display on a local TV station's site.
    And occasional video links off reputable news sites. But not Youtube.  Safari and Firefox are both afflicted.
    I enabled Java, repaired disk permissions (which I do on a regural basis) plus a few other tricks I know.
    Upgrades, etc., all  up to date.
    No luck.
    I have had three I-Macs over 13 years and Apple Care for 12 of those years.  Gawd how I miss 'em!
    I'll try your suggestions.
    Thank you!

  • GConf: "saving configuration settings will not be possible"

    Hello folks.
    I'm new to Arch, but not new to Linux. This problem has me stumped.
    I've just installed Gnome on top of a fresh Arch install, apart from Firefox, a few daemons (HAL, FAM), and some laptop related settings (cpufreq, pm-utils), there's nothing else on here at the minute. I've followed the instructions on the wiki, and I've Googled my heart out about this problem without a solution.
    Gnome starts fine and appears to work okay, but it refuses to save certain settings, specifically in the Sessions tool (I'm trying to setup Compiz). When I start the GConf Editor tool, these errors appear in everything.log:
    Aug 18 03:32:18 gconfd (dane-7460): starting (version 2.22.0), pid 7460 user 'dane'
    Aug 18 03:32:18 gconfd (dane-7460): Resolved address "xml:readonly:/etc/gconf/gconf.xml.mandatory" to a read-only configuration source at position 0
    Aug 18 03:32:18 gconfd (dane-7460): Resolved address "xml:readwrite:/home/dane/.gconf" to a writable configuration source at position 1
    Aug 18 03:32:18 gconfd (dane-7460): Resolved address "xml:readonly:/etc/gconf/gconf.xml.defaults" to a read-only configuration source at position 2
    Aug 18 03:32:18 gconfd (dane-7460): Resolved address "xml:readwrite:/home/dane/.gconf" to a writable configuration source at position 0
    Aug 18 03:32:41 lap-de dhcpcd[4889]: eth0: adding IP address 169.254.60.234/16
    Aug 18 03:33:22 lap-de dhcpcd[4889]: eth0: adding IP address 169.254.60.234/16
    Aug 18 03:34:03 lap-de dhcpcd[4889]: eth0: adding IP address 169.254.60.234/16
    Aug 18 03:34:44 lap-de dhcpcd[4889]: eth0: adding IP address 169.254.60.234/16
    --- These following errors occur after GConf Editor is started
    Aug 18 03:35:11 gconfd (dane-7460): Resolved address "xml:merged:/etc/gconf/gconf.xml.defaults" to a read-only configuration source at position 0
    Aug 18 03:35:11 gconfd (dane-7460): None of the resolved addresses are writable; saving configuration settings will not be possible
    Aug 18 03:35:11 gconfd (dane-7460): Resolved address "xml:merged:/etc/gconf/gconf.xml.mandatory" to a read-only configuration source at position 0
    Aug 18 03:35:11 gconfd (dane-7460): None of the resolved addresses are writable; saving configuration settings will not be possible
    I've deleted my ~/.gnome* and ~/.gconf* directories and started again, and this error still appears.
    Short of changing the permissions on /etc/gconf (which I presume is The Wrong Thing to do), I'm not sure how else to approach this problem.

    When you update to Firefox 4 it will use your existing bookmarks, passwords and other user data.
    Firefox 4 is currently scheduled to be released next week.

  • Iphoto not saving slideshow settings

    HELP!  I am DESPERATE!!!!!  I have been working on a 45 minute slideshow for my parents 50th wedding anniversary party ALL WEEK.  Iphoto is NOT SAVING my settings for the transisions between photos or the time each slide plays for. It is happening at random. No one at Apple has been able to help me...as a matter of fact I thought I was going to really lose it for about the 10th TIME when the last guy I spoke to tonight told me that I needed to speak with an IAPP advisor as he could not help me only being a senior advisor.  My questions is WHY THE HECK HAVE I NOT BEEN transferred to an IAPP advisor all week when I have been calling them repeatedly trying to get issue resolved.  This was the only person who said I should speak to someone in IAPP.  I now have only FRIDAY to get this resolved as the party is at my house on SATURDAY!!!! 
    I know other people have had some similiar problems (glitches) from searching the internet and yet the people I have been speaking with say they have never had someone call up with this problem.....???? 
    Anyone else out there have this problem and find a way to fix it? 
    (BTW--they already had me go the route of trashing the psist file and some cache file among other things......)

    Terence
    Thank you for replying.  My ranting was just out of utter fustration of literally sitting at a computer since Sunday redoing and redoing everything in order to have try and have a nice slideshow for my parents rather than just dumping a bunch of photos & music into a slideshow.  It loses its punch when things don't fall into the proper place or transition right.....
    2 things Apple had me do initially:
    move a cache file and psist file out of library to desktop and then into my trash (I then did a secure empty trash)
    senior advisor tried to have me duplicate the problem while he was accessing my computer---COULD NOT. He said unless I can duplicate for him he can't help me.  He also said that he has never heard of anyone else complain of this & has never heard of anyone making a slideshow so big???  Really?  It is 45 minutes with 375 pictures.  While a little lengthy I find it hard to believe they are not used to anyone makng a slideshow this long.
    Anyways later I called back when I felt I could duplicate issue.  I spoke with another rep.  He had me change ALL SLIDES from 5 seconds to 1 second and unclick default transition thinking that this could be causing the system to keep wanting to ovverride my manual individual settings if I had any slide less than 5 seconds or another transition.  However he also was miffed by the "size" of my slideshow and said that Iphoto slideshow really wasn't meant for something of this size and suggested I use IMovie.  While I had never used it I tried it. After spending all day getting the photos in IMovie and in same order I started editing the transitions and slide times....well this was no good because if I changed one thing it caused a ripple effect and changed stuff.  Sooooooo I called Apple back and spoke with Senior advisor that told me that this is what Imovie does and I really should not use it for what I was trying to do ....he still felt iphoto slideshow was the way to go.  So we went back to iphoto slideshow hoping that the couple of small changes the other advisor had me do had worked....no luck. I then decided to try and start fresh with NEW slideshow, new settings and break up my one big slideshow into smaller slideshows & then eventually dumpt into Imovie......No luck.  With about 30 photos I noticed it wasn't saving my slide times again or now the speed of transitions.  So the bottom line is that there is a GLITCH with iphoto and I have seem similiar complaints on these forums. 
    I greatly appreciate your suggestion of trying other apps and would definately do that if I had the time but alas the party is tomorrow and I have only today to get it resolved and redone. 
    Thank You for Your Time
    Heidi

  • Why is my Safari not saving my settings?

    Why is my Safari not saving my settings?

    Delete safari .plist file.
        Quit all applications.
        Option click the "Go" menu in the Finder menu bar.
        Select "Library" from the drop down.
        Library > Preferences >  com.apple.Safari.plist
        Right click it and select "Move it to Trash".
        Restart.    Relaunch Safari.
    Best.

  • Windows hangs at "saving your settings"

    I have an MSI 745 Ultra.
    When I shutdown or restart WinXP,
    it hangs forever at the "saving your settings" screen.
    Mouse can move. But computer never restarts or shuts down.
    I hate this because I have use the restart or power button on the case to continue... and when I boot Windows the next time, it has to scan all the drives... sometimes get some errors.
    I installed Windows XP as normally... letting it use ACPI by default.  ACPI is enabled in BIOS.
    Please help me!

    Noby,
    I am not sure that is correct.  You can do an install of WinXP with APCI Enabled without having to hit F6.  Mine installed correctly without it.
    The problem is when people chance HAL after install do and then chance the HAL.
    From the aricle that DJMorgan linked in this forum:
    Windows XP ACPI Tweak Guide - Redux
    Quote
    "WARNING: Note that you should not attempt to change from an ACPI HAL to a standard HAL or from a standard HAL to a ACPI HAL under any circumstances. Doing so will result in your computer not starting properly or at all. This occurs because the Plug and Play device tree that would be currently loaded is for ACPI, and it does not get reconstructed or revert to a standard HAL Plug and Play device tree. Because of this (the device tree structures being drastically different), the system is unaware of any hardware changes after the computer restarts to include the location of the boot device. Microsoft does not recommend or support this procedure as it will result in data loss."
    Take Care,
    Richard

  • How do I get bridge CS5 to open up with my saved workspace settings?

    Every time I open bridge it opens with large thumbnails in an old folder.  I have to "reset" my workspace (even though it is highlighted at the top of the page already!) and then select the last folder I was working on again.
    Is there any way to get bridge to remember your last used folder and last used workspace setting and just re-open with those already set?
    The  current situation just leads to lots more unnecessary annoying clicking.
    I've tried all the options I can find in preferences and tried creating ans saving different workspace settings but nothing seems to effect how bridge opens up the first time I use it in a session.  I am running it on Windows 7.
    Thanks,
    Clive

    That seems to solve it.  I think your point about exiting bridge before shutting down is important, but you need to make sure bridge is showing the set-up you want to keep first.  I now have a sensible opening screen. Thanks a lot.

  • LR 1.4.1 not saving print settings on Mac OS 10.5.2

    1.4.1 won't save (or use) any print settings other than "Standard". In the print module if I select print settings, choose a printer and it's settings (like paper type and color management) then close the dialog the settings aren't saved or even used. It will only print with the "Standard" setting.
    Tried on 2 systems and with new database.
    - Joe

    As far as I know, it's always behaved like this. The solution is to get the print settings the way you want, save it under Standard, and then save the setting as a Lightroom preset. The print settings will stick with the preset.

  • Saving ALV settings in a Webdynpro for ABAP.

    Hi there,
    I would like to modify from code side the standard filter settings after user selection, i mean:
       i) User adds the filter fields it wants using ALV standard filter settings.
      ii) I add via code an additional field to the filter criteria selected by user.
    I have done that using if_salv_wd_filter~create_filter_rule ( ) but this only affects to the current filter applied and, what i would like to do is adding my new entry to the saved filter rules (i do not want to add my new filter rule to the current ones, i want to add it to the saved ones).
    The functionality i want to achieve is to display a filter header in the ALV (for a field that has not been specified by the user) when the WDA is opened with an initial saved setting profile.
    Is this possible? any suggestion regarding modification of saved filter profiles?
    Thanks in advance
    Edited by: Vicente Ángel López Romero on May 27, 2008 4:02 PM
    Edited by: Vicente Ángel López Romero on May 27, 2008 4:04 PM

    Hi Durga,
    I am afraid that these can not help me :(. The link you have provided refers to information regarding ALV Grid, and i think that there are many model design diferences between ALV Grid and the Abap Webdypro one.
    Anyway i think that the filter settings that can be modified via source code are always related to "on air" filter criteria and i want to modify the "persistent" saved settings profiles.
    All in all, it is a very interesting document in order to implement commons dynpros with ALVs, thanks for the info :).
    Regards.

  • Adobe Acrobat X - Saved Background Settings does not retain Source File

    Hello,
    I am using Adobe Acrobat X on windows 7.
    I have a pdf file that I use as a background source file.  When I select the Settings profile from the Saved Settings drop down it does not load in the Source File.  It still has "From Color" selected and <No Source File Selected> is in the path location. 
    No matter how many times I add the file and click the save settings button it will not retain it
    I've already tried both a 'repair' and 'reinstall' of the software.
    Any ideas as to why this might be happening? 

    Hi Adam Baranek,
    I am looking into this issue and will get back to you soon.
    Regards,
    Rahul Tyagi

  • How can I export the saved preset settings for Batch Renaming on Bridge?

    I've developed a few Batch Renaming presets and want to share them with my team, but couldn't find where they are saved.

    but couldn't find where they are saved.
    I can only provide you with the path for a Mac but Windows should be something similar
    User library (By default hidden per OSX7, use menu go with option to reveal)/ Application Support / Adobe / Bridge CSxx / Batch Rename Settings. Inhere are the saved files with the extension '.setting'

Maybe you are looking for

  • Can't get sound to record when using isight in my macbook pro

    for some reason it just records the video no audio when using my macbook pro. any thoughts?

  • WAP/Servlet help is needed URGENT!!!

    I've wrote this little wap-application, which update the library loans via mobile phones. I don't know why my login doesn't work properly (it gives error-messages in any cases). I believe I did everything right. Can anyone PLEASE help me finding my m

  • Cheque No

    Hi Is it possible to display Incoimng Payment Cheque No in Business Party Ledger . If yes then how it can be displayed. Regards Jagjit Saini

  • MiniDisplay- DVI stopped working after update.

    I have been browsing alot to find our if anyone else have had the problem. I just got a security update and some minor software updates I didnt pay attention to. And after this, I got the "This will make your optical drive stop making noises"-patch..

  • How to improve performance on MacBook Pro 10.5.8?

    I have a MacBook Pro running 10.5.8 that has become way too slow. It hesitates between key strokes and response and is slow to search and navigate websites. I just checked and there are no updates due. What can I do to improve performance?