Cflocation within onRequestStart() *and* onRequestEnd() producing a concatenated URL

I've writtten some code which stores the URL to which we want to redirect the user in a variable, rather than cflocating them immediately. This allows us to do subsequent code processing before the redirection actually occurs.
Sometimes I want redirection occur before any page processing is done (such as when the user must be taken to the "Change your password" page) -- in which case the cflocation is done as the last line in onRequestStart() -- and sometimes I want it to occur after the page has been processed (such as at the end of the page that processes their login) -- in which case the cflocation is done as the last line in onRequestEnd().
All was nice and sunny until we upgraded to 9.0.1.
In earlier versions, onRequestEnd() wasn't being executed and cflocation was therefore only being called once.
After upgrading, instead of the user being redirected to (say) "/options/", they are being redirected to (the invalid URL) "/options/,/options/". The URL appears to be being concatentated  (once when called from onRequestStart() and once from onRequestEnd() ) and  then sent to the client.
This change in behaviour is because of one of the issues fixed in Adobe® ColdFusion® 9.0 Update 1 (issue 80798, "The function onRequestEnd fails to execute when the tags cfabort or cflocation is used.")
Can I suggest an alteration be made in future versions or fixes? Either:
a) developers are enabled to programmatically determine the URL to which a cflocation has been issued (which would allow me to skip the call to cflocation in onRequestEnd() ), or
b) if a cflocation has been issued, ColdFusion doesn't honour any subsequent calls to cflocation.
Thanks.

Thanks for the reply, Dan.
Yeah, that's what I've ended up doing... just using a Appliction.cfc-level boolean to determine whether we've already done a cflocation yet or not.
I inherently don't like having to do that, and am almost certain someone once told me how (using Java) you can read the cflocation "queue", but can't lay my hand on the correspondence.
Anyway, it's working again, so thanks!

Similar Messages

  • Can I programmatically copy vi within llb AND build an application?

    I previously posted the question how to programmatically work (copy, delete) on files within llbs and got two answers to use the librarian vis in vi.lib > utility > libraryn.llb
    That works really good but only till I try to build an application. The application builder seems to use the librarian vis also and complains that it cannot build an application with vis that are currently in use...
    Any idea how to solve that?
    Cheers, Daniel Troendle

    Make a copy of all the VIs used by the librarian and save them under a
    different name (making sure to link the sub-VIs to the new name of course.
    Awkward, but it should work.
    Shane
    D. Troendle schrieb in Nachricht
    <[email protected]>...
    >I previously posted the question how to programmatically work (copy,
    >delete) on files within llbs and got two answers to use the librarian
    >vis in vi.lib > utility > libraryn.llb
    >
    >That works really good but only till I try to build an application.
    >The application builder seems to use the librarian vis also and
    >complains that it cannot build an application with vis that are
    >currently in use...
    >
    >Any idea how to solve that?
    >Cheers, Daniel Troendle
    Using LV 6.1 and 8.2.1 on W2k (SP4) and WXP (SP2)

  • HT1926 I installed the itunes update on my regular PC. The update failed and produced an error in MSVCR80.DLL I spoke to an apple tech about it. He blames Microsoft for the error. I did the same update on another PC and it produced the same error. Itunes

    The iTunes update is causing a problem on PC's resulting in an error pointing to MSVRC80.DLL. I called Apple Support they blame Microsoft.....(What a surprise!).
    I did a second update on another pc and it produced the same problem with the same DLL file. Apple still says it's not their problem. Unfortunately until they acknowledge the problem and correct it iTunes is no longer functional. That's too bad but Windows Media Player works fine.
    Apple, own up to the problems you create. Don't pull an Obama!
    When enough people have the problem it will force Apple to correct it. Everyone on a PC using iTunes who try the update will have this problem.

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • AJAX producer/consumer and JAVA producer/consumer  in same project

    I've already successfully integrated and customized the code for both an AJAX and JAVA producer/consumer client in JMS (using ActiveMQ as the JMS broker and Tomcat as the webapp container). While both have been working well in separate projects, unfortunately, I'm having a bit of trouble trying to integrate them for the purpose of running an AJAX message listener and JAVA message listener in the same project.
    What I'm trying to do is have JAVA act as the failover for when the AJAX JMS consumer is not listening (i.e. when the browser is closed). When a browser client opens, the (constantly running) JAVA client can ignore the messages... but... when no browser client is initialized, the JAVA client should respond to the messages on behalf of the AJAX client.
    I've tried using a ServletContextListener pattern, which I was hoping would "automagically" launch the JAVA listener via its main method, whenever the Servlet gets initialized (i.e. it would auto-start when Tomcat gets restarted, or, anytime the Servlet gets redeployed) but it seems Tomcat is not thread-safe and this might be causing some problems.
    In any case, I can't seem to get the JAVA client to reliably start running and stay running for the lifetime of my AJAX client (webapp .war), and without including them in the same project and same J2EE container sharing the same ServletContext, I don't know how its possible to ensure they are running and starting and stopping at the same time.
    Is there perhaps a better way to accomplish this?
    Edited by: bcmoney on May 17, 2010 1:25 PM

    I've already successfully integrated and customized the code for both an AJAX and JAVA producer/consumer client in JMS (using ActiveMQ as the JMS broker and Tomcat as the webapp container). While both have been working well in separate projects, unfortunately, I'm having a bit of trouble trying to integrate them for the purpose of running an AJAX message listener and JAVA message listener in the same project.
    What I'm trying to do is have JAVA act as the failover for when the AJAX JMS consumer is not listening (i.e. when the browser is closed). When a browser client opens, the (constantly running) JAVA client can ignore the messages... but... when no browser client is initialized, the JAVA client should respond to the messages on behalf of the AJAX client.
    I've tried using a ServletContextListener pattern, which I was hoping would "automagically" launch the JAVA listener via its main method, whenever the Servlet gets initialized (i.e. it would auto-start when Tomcat gets restarted, or, anytime the Servlet gets redeployed) but it seems Tomcat is not thread-safe and this might be causing some problems.
    In any case, I can't seem to get the JAVA client to reliably start running and stay running for the lifetime of my AJAX client (webapp .war), and without including them in the same project and same J2EE container sharing the same ServletContext, I don't know how its possible to ensure they are running and starting and stopping at the same time.
    Is there perhaps a better way to accomplish this?
    Edited by: bcmoney on May 17, 2010 1:25 PM

  • Folio Builder and Folio Producer not syncing

    Hi,
    I've been trying to update my folio and the version in folio producer is not syncing with the version in the folio builder panel in InDesign. I am trying to update so I can preview my content in Adobe Content Viewer. It was working fine as of last Friday (9/6/13) but I've had trouble since I've tried starting Monday (9/9/13) to update. I see that the server was restarted on 9/9 (http://status.adobedps.com/) but  I am still having issues. When I click on the Folio Producer option in the Folio Builder panel flyout it takes me to Folio Producer in the browser but does not login.
    I would appreciate any help resolving as soon as possible.
    Thanks.

    I have not tryed pushing it manually to my device. However, I just discovered Folio Producer and the Folio Builder panel sync is functioning properly. It seems the issue is instead with Adobe Content Viewer. I read the troubleshooting tips here: http://helpx.adobe.com/digital-publishing-suite/kb/troubleshoot-content-viewer-digital-pub lishing.html#main_Folio_appears_in_Folio_Builder_Panel_and_Folio_Producer__but_not_in_Adob e_Content_Viewer under "Folios appears in Folio Builder panel and Folio producer but not in Adobe Content Viewer" and ensured that none of the bullet points are the problem. Could this be a server issue? If pushing it to my device locally is the best workaround, which file do I transfer? Please advise.
    Also, I have another issue when I try to submit to Apple: "the binary is not executable" when I upload the zip file. I posted as a separate discussion thread (http://forums.adobe.com/thread/1292215?tstart=0) but no one has addressed. Can you please look into that issue as well?
    Thanks for your help!

  • Best PC to buy for Photoshop CS5, Premiere Elements and Proshow Producer

    I am looking for a new PC to replace my 10 year old one.
    This would be used primarily for Photoshop CS5, Lightroom, Premiere Elements and Proshow Producer.
    I am thinking of going to Digital Storm to get one of their top line gaming machines with Sandybridge cpu, high end video card and at least 16 to 32 gb Ram
    (although I do not play games on the pc}.
    Is this overkill, or would a different kind of PC be better?
    what do you recommend?
    jaslu1

    I'm definitely going to look into it. Thanks. Have a great holiday.
    From: TLL... <[email protected]>
    Subject: Best PC to buy for Photoshop CS5, Premiere Elements and Proshow Producer
    To: "Jay Slutzky" <[email protected]>
    Date: Friday, July 1, 2011, 11:38 AM
    Dell Precisions are great machines, you could look into their Studio or Studio XPS too. Not quite workstation qualtiy but I'm beating the snot outta one @home and it's holding up well for a 600 buck eBay chassis...

  • I have 3 consecutive movie clips that I am trying to drop into the drop zone but it only recognizes the first one and only produces the firts one in a DVD. How can I drop all three  movie clips into one drop zone

    On IDVD, I have 3 consecutive movie clips that I am trying to drop into the drop zone to create a DVD but it only recognizes the first one I dropped and only produced the first one in a DVD. How can I drop all three  movie clips into one drop zone.

    I have had some luck doing the following: Export each clip from imovie as a quicktime clip. Open iDVD and create a new project. Import a few stills into iDVD and then click on the button that gets created to get into the screen where the individual slides appear. Drag each quicktime into that screen and arrange in the order you want. You can then delete the stills. The button that appeared when you dropped in the stills will launch a complete show.

  • Hide div within iframe and search input

    Hi I have a website where I am embedding an iframe to view real estate listings. I have figured out how to adjust iframe height to match the iframes source height, however now I want to remove the menu bar at the top of my iframe souce. How can I target a specific div in an iframe to hide it so it is not included in the iframe. I found the div id I want to hide, is this possible to do in muse isntead of each html page bc I have to do it to a lot of pages. You can see what I mean here.. http://kmartinezmedia.com/ebmiami/rent.html. I also have another iframe on my homepage which is a dropbown search menu. Is it possible to instead create this dropdown within muse and edit the option values to match.. basically i just need a better alternative than using iframe on home page for a search bc I want the results to load either in another muse pages iframe, or another div at bottom of homepage-  http://kmartinezmedia.com/ebmiami/

    Hi,
    I think you'll have to develop your own custom search component that only contains the search button.
    See this for start:
    [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/41cbcb56-0701-0010-43b4-fbc138ea2b6a]
    Best regards,
    Avishai Zamir

  • I use an online application that doesn't work with FF, but I had been able to use an IE plugin within FF and it worked fine. After the last update (3.6.12), it says plugin is not compatable with version. Help?

    I use an online application that doesn't work with FF, but I had been able to use an IE plugin within FF and it worked fine. After the last update (3.6.12), it says plugin is not compatable with version. Help

    go to '''TOOLS '''then '''OPTIONS''' then '''ADVANCED''' then '''NETWORK tab''' then '''SETTINGS tab''' and select the options '''NO PROXY''' click '''OK''' and '''OK '''again in the next screen. With that you have disabled the proxy settings.
    ''if you like to not disable the proxy settings choose'' : '''Auto-detect proxy settings for this network''' (it is in the same session)
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • HT201250 How do I restore photos from Time Machine?  All of my photos have been imported within iPhoto and therefore are exported to Time Machine via an iPhoto file.  I can't figure out how to break individual photo files out of the iPhoto file.  Any idea

    How do I restore photos from Time Machine?  All of my photos have been imported within iPhoto and therefore are exported to Time Machine via an iPhoto file.  I can't figure out how to break individual photo files out of the iPhoto file.  Any ideas?

    You might post this query on the iPhoto forum and perhaps someone there can provide an answer.
    I tried this on my MBP and it seems that you have to restore the entire iPhoto Library.  What I did was put the current library in a separate folder on the desktop and then I restored the library from a prior date.  If you were to do that, you then could extract the desired photos and then delete the restored library.  Then place the current library back to the original location and import the desired photos.
    Not tidy but it seems it will work.
    Ciao.

  • HT4407 Is there any way to download these files manually from another source? The download from boot camp keeps stopping at around 25% and then produces the error "Can't download Windows Support Software because of a network problem". Thx!

    Is there any way to download these files manually from another source? The download from boot camp keeps stopping at around 25% and then produces the error "Can't download Windows Support Software because of a network problem". Thx!

    No. This issue is dicussed here frequently. The only option is to be patient and try often. Search this forum for other posts about this issue.

  • Webapps tag - filters "lastclassified" and "randomclassified" producing empty collections

    When using the {module_webapps} tag, the filters "lastclassified" and "randomclassified" producing empty collections. "all" and "lastest" are working OK.
    Example code:
    {module_webapps id="Member Directory" filter="lastclassified" itemid="Featured" template="" resultsPerPage="4" collection="members"}
    {module_webapps id="Member Directory" filter="randomclassified" itemid="Featured" template="" resultsPerPage="4" collection="members2"}
    {module_webapps id="Member Directory" filter="latest" itemid="Featured" template="" resultsPerPage="4" collection="members3"}
    <pre><code>{{ this.members | json }}</code></pre>
    <pre><code>{{ this.members2 | json }}</code></pre>
    <pre><code>{{ this.members3 | json }}</code></pre>
    Produces this output.
      "moduleName": "webapps",
      "moduleDescriptor": {
        "templatePath": "",
        "parameters": "id=\"Member Directory\",filter=\"lastclassified\",itemid=\"Featured\",resultsPerPage=\"4\",template=\"\",collection=\"members\"",
        "apiEndpoint": "/api/v3/webapps",
        "objectType": "34",
        "objectId": "-1",
        "adminUrl": "/Admin/CustomContent_ItemList.aspx?CustomContentID=-1"
      "moduleName": "webapps",
      "moduleDescriptor": {
        "templatePath": "",
        "parameters": "id=\"Member Directory\",filter=\"randomclassified\",itemid=\"Featured\",resultsPerPage=\"4\",template=\"\",collection=\"members2\"",
        "apiEndpoint": "/api/v3/webapps",
        "objectType": "34",
        "objectId": "-1",
        "adminUrl": "/Admin/CustomContent_ItemList.aspx?CustomContentID=-1"
      "moduleName": "webapps",
      "moduleDescriptor": {
        "templatePath": "/Layouts/WebApps/Member Directory/list.html",
        "parameters": "id=\"Member Directory\",filter=\"latest\",itemid=\"Featured\",resultsPerPage=\"4\",template=\"\",collection=\"members3\"",
        "apiEndpoint": "/api/v3/webapps",
        "objectType": "34",
        "objectId": "-1",
        "adminUrl": "/Admin/CustomContent_ItemList.aspx?CustomContentID=-1"
      "editableFieldTypes": {
        "description": "Html",
        "itemid": "Id",
        "name": "Text",
        "url": "Text",
        "releaseDate": "Date",
        "expiryDate": "Date",
        "lastUpdateDate": "Date",
        "weight": "Number"
      "items": [
          "description": "\r\n",
          "itemid": "4943789",
          "name": "Donec Elit",
          "urlWithHost": "http://law-australasia.boswebsystems.com/member-directory/donec-elit",
          "url": "/member-directory/donec-elit",
          "releaseDate": "2014-10-08",
          "releaseDate_raw": "7/10/2014 11:00:00 PM",
          "expiryDate": "9999-01-01",
          "expiryDate_raw": "1/01/9999 12:00:00 AM",
          "lastUpdateDate": "2014-10-08",
          "lastUpdateDate_raw": "8/10/2014 12:10:08 PM",
          "counter": "1",
          "weight": "",
          "Member First Name": "",
          "Member Surname": "",
          "Title": "Director, R & D Talent",
          "Firm_id": "4929417",
          "Firm": "Andersons Solicitors",
          "State": "",
          "Email": "",
          "Direct Phone": "",
          "Mobile Number": "",
          "Areas of Law Practiced": "",
          "Areas of Law Interested In": "",
          "LinkedIn Profile": "",
          "Twitter Profile": "",
          "Google+ Profile": "",
          "Accredited Specialist": "0",
          "Accreditations": "",
          "Dietary Requirements": "",
          "DOB": "",
          "Special Interest Groups": "",
          "Tagline": "Donec id elit non mi porta gravida at eget metus. Fusce dapibus, justo sit amet risus etiam porta sem...",
          "isloggedin_11": {
            "moduleName": "isloggedin",
            "moduleDescriptor": {
              "templatePath": "",
              "parameters": "",
              "apiEndpoint": "/api/v3/isloggedin",
              "objectType": "-1",
              "objectId": "-1",
              "adminUrl": ""
            "isLoggedIn": "0"
          "description": "\r\n",
          "itemid": "4943785",
          "name": "Jack Bour",
          "urlWithHost": "http://law-australasia.boswebsystems.com/member-directory/jack-bour",
          "url": "/member-directory/jack-bour",
          "releaseDate": "2014-10-08",
          "releaseDate_raw": "7/10/2014 11:00:00 PM",
          "expiryDate": "9999-01-01",
          "expiryDate_raw": "1/01/9999 12:00:00 AM",
          "lastUpdateDate": "2014-10-08",
          "lastUpdateDate_raw": "8/10/2014 12:08:15 PM",
          "counter": "2",
          "weight": "",
          "Member First Name": "Jack",
          "Member Surname": "Bour",
          "Title": "Chief Executive Officer",
          "Firm_id": "4929396",
          "Firm": "Steele & Co",
          "State": "NSW",
          "Email": "",
          "Direct Phone": "",
          "Mobile Number": "",
          "Areas of Law Practiced": "",
          "Areas of Law Interested In": "",
          "LinkedIn Profile": "",
          "Twitter Profile": "",
          "Google+ Profile": "",
          "Accredited Specialist": "0",
          "Accreditations": "",
          "Dietary Requirements": "",
          "DOB": "",
          "Special Interest Groups": "",
          "Tagline": "Donec id elit non mi porta gravida at eget metus. Fusce dapibus, justo sit amet risus etiam porta sem...",
          "isloggedin_12": {
            "moduleName": "isloggedin",
            "moduleDescriptor": {
              "templatePath": "",
              "parameters": "",
              "apiEndpoint": "/api/v3/isloggedin",
              "objectType": "-1",
              "objectId": "-1",
              "adminUrl": ""
            "isLoggedIn": "0"
          "description": "\r\n",
          "itemid": "4943787",
          "name": "Kate Metus",
          "urlWithHost": "http://law-australasia.boswebsystems.com/member-directory/kate-metus",
          "url": "/member-directory/kate-metus",
          "releaseDate": "2014-10-08",
          "releaseDate_raw": "7/10/2014 11:00:00 PM",
          "expiryDate": "9999-01-01",
          "expiryDate_raw": "1/01/9999 12:00:00 AM",
          "lastUpdateDate": "2014-10-08",
          "lastUpdateDate_raw": "8/10/2014 12:09:23 PM",
          "counter": "3",
          "weight": "",
          "Member First Name": "",
          "Member Surname": "",
          "Title": "Project Manager",
          "Firm_id": "4929417",
          "Firm": "Andersons Solicitors",
          "State": "",
          "Email": "",
          "Direct Phone": "",
          "Mobile Number": "",
          "Areas of Law Practiced": "",
          "Areas of Law Interested In": "",
          "LinkedIn Profile": "",
          "Twitter Profile": "",
          "Google+ Profile": "",
          "Accredited Specialist": "0",
          "Accreditations": "",
          "Dietary Requirements": "",
          "DOB": "",
          "Special Interest Groups": "",
          "Tagline": "Donec id elit non mi porta gravida at eget metus. Fusce dapibus, justo sit amet risus etiam porta sem...",
          "isloggedin_13": {
            "moduleName": "isloggedin",
            "moduleDescriptor": {
              "templatePath": "",
              "parameters": "",
              "apiEndpoint": "/api/v3/isloggedin",
              "objectType": "-1",
              "objectId": "-1",
              "adminUrl": ""
            "isLoggedIn": "0"
          "description": "\r\n",
          "itemid": "4943788",
          "name": "Porta Gravida",
          "urlWithHost": "http://law-australasia.boswebsystems.com/member-directory/porta-gravida",
          "url": "/member-directory/porta-gravida",
          "releaseDate": "2014-10-08",
          "releaseDate_raw": "7/10/2014 11:00:00 PM",
          "expiryDate": "9999-01-01",
          "expiryDate_raw": "1/01/9999 12:00:00 AM",
          "lastUpdateDate": "2014-10-08",
          "lastUpdateDate_raw": "8/10/2014 12:10:39 PM",
          "counter": "4",
          "weight": "",
          "Member First Name": "",
          "Member Surname": "",
          "Title": "VP of Operations",
          "Firm_id": "4929417",
          "Firm": "Andersons Solicitors",
          "State": "",
          "Email": "",
          "Direct Phone": "",
          "Mobile Number": "",
          "Areas of Law Practiced": "",
          "Areas of Law Interested In": "",
          "LinkedIn Profile": "",
          "Twitter Profile": "",
          "Google+ Profile": "",
          "Accredited Specialist": "0",
          "Accreditations": "",
          "Dietary Requirements": "",
          "DOB": "",
          "Special Interest Groups": "",
          "Tagline": "Donec id elit non mi porta gravida at eget metus. Fusce dapibus, justo sit amet risus etiam porta sem...",
          "isloggedin_14": {
            "moduleName": "isloggedin",
            "moduleDescriptor": {
              "templatePath": "",
              "parameters": "",
              "apiEndpoint": "/api/v3/isloggedin",
              "objectType": "-1",
              "objectId": "-1",
              "adminUrl": ""
            "isLoggedIn": "0"
      "pagination": {
        "currentPage": 1,
        "numberOfPages": 2,
        "previousPageUrl": "",
        "nextPageUrl": "/Default.aspx?PageID=13659684&A=WebApp&CCID=22594&Page=2&Items=4"

    Thanks! Will the documentation be updated to show this correct usage?
    Developer reference - Web Apps

  • Anyone help? I click on buttons within websites and my mac opens new webpages advertising, mac keeper pro or some foreign exchange trading platform. Did i pick something hop in a download? how do i search for and get rid of this annoying infiltration?

    Anyone help? I click on buttons within websites and my mac opens new webpages advertising, mac keeper pro or some foreign exchange trading platform. Did i pick something hop in a download? how do i search for and get rid of this annoying infiltration?

    You've installed some form of adware. Take a look here:  http://www.thesafemac.com/arg/

  • Buy iPhone within USA and activate on 9. Nov. with TMobile?

    hi,
    would it be possible to buy a iphone within usa and activate it on 9. nov with the german tmobile provider?

    next time my dad goes over there i might ask him to pick one up and bring it here. seeing as how the iphone a quad band phone and wifi. it should work here just fine right? i bet it is cheaper over there too! can i order it online from over there? what a simple way to get a unlocked phone!

  • Can you still open URL's within QuickTime and Lion ?

    Can you still open URL's within QuickTime and Lion ? the URL opening seems to have gone.
    I'm running Lion now and just noticed

    I actually tried that but it came up an error and movie could not be found (or words to that effect) I'll try again
    In case it still doesn't work for you, try this URL:
    http://idisk.me.com/jrwalker4-Public/Intro_2.mov
    It is a sample file posted yesterday fixing a Lion playback problem (Lion/QT X v10.1 doesn't seem to like having 2 active MP3 audio tracks present) which I just tested and is playing for me right now.

Maybe you are looking for

  • Help! My mac is not starting up after install of tiger.

    Just to let everyone know I'm a young girl and I'm pretty useless with computers. After having a 'invalid node structure' on my mac and fixing it manually, the volume could not be repaired. So I've erased the Macintosh HD 'i think' after it saying 'r

  • Adding leading zeros to a field in an Internal table

    HI Experts, I have an Internal table with 3 fileds and the second filed is of lengh 10, In this filed i get the data which is of 4 character I want the leading 6 0's to be added for that 2 field For Eg HI 1234      HELLO HI 1222      HELLO I need the

  • Urgent help requested Please

    hi im in desperate need of help asap- i have win xp pro recently had to do a system recovery of my hp system and rreinstall everything- updated everything including flash 10 before i did this i was able to goto a site with flash video cams right clic

  • Oracle.jbo.RowInconsistentException:JBO-25014:Another user has changed the

    Hi Experts, I am working jdev 11.1.1.3.0 I am trying to update selected rows on the table, for this i lam getting selected data from the table and updating one flag on the row. when i executing save/commit i am getting below error. oracle.jbo.RowInco

  • My premiere elements will not started

    I have Premiere Elements 11, reg. on 13-05-2013 number [S/N Removed] The program is after a computer crash new installd. 't will to be de blue/purper startscreens and hold there. Here stopt the program and via taakbeheer i can away from the program.