NOW_DT & NOW funtions don't work together

Hi All,
I have an issue with the {NOW_DT} & {NOW} funtions
In my registration form i have fields for timestamp and date.
The timestamp is for any updates made to the profile and the date is to specify the date of registration.
But when they are submitted on the {NOW_DT} works leaving the {NOW} null in the DB.
They are both submitted as FORM VARIABLE's with the defaults {NOW_DT} & {NOW} in the insert transaction.
Can anyone shed any light on why they won't work together?
Cheers,
Joe

Hi Gunter,
I hope you're well!
I changed to the way you suggested and it has fixed the issue.
I did however find that I had to use the format date function or if there was a form error the date would become wrong.
But thanks again and look forward to speaking with you again soon.
Also I am launching version of my online business and event marketing directory internationally in September and looking for helpers to test in other countries.
you can register at www.eventmanagementmarketing.com
Cheers,
Joe

Similar Messages

  • Bought adobe ID is not the same as trail version, now it don't work

    Hi,
    First I use a trial version of Creative Cloud with ID.
    Later I bought this program with another ID on the same computer.
    Now it don't work.
    Can anybody help?

    Sign in, activation, or connection errors | CS5.5 and later
    Mylenium

  • I Need help. I Change My Number and now imessage don t work.

    I Need help. I Change My Number and now imessage don t work.

    Hi Ivonka88,
    Here are some steps to try troubleshooting your issue with, depending on your specific symptoms:
    iOS: Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/ts4268
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/ts2755
    Cheers!
    - Ari

  • HT3529 I just upgraded to iphone 5 and now imessage don't work. it sends as sms. i've checked imessages is on in settings.

    I just upgraded to iphone 5 and now imessage don't work. it sends as sms. i've checked imessages is on in settings.

    Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Try each of these in order until the issue is resolved.
    It might also be a good idea to contact Square for assistance.

  • Updated iPad and now bookmarks don't work  says address invalid

    Updated iPad and now bookmarks don't work         Safari says address invalid for the bookmark symbol

    Clear Safari. Close Safari. Reset your iPad.
    Go to Settings>Safari>Clear Cookies and Data.
    To close an app, drag the app up from the multitasking display. Double tap the home button and you will see apps lined up going left to right across the screen. Swipe to get to the Safari app then swipe "up" on the app preview thumbnail to close it.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • ADDT Datepicker and spry validation don't work together

    Datepicker and spry validation don't work together
    the problem is in: /includes/wdg/classes/MXWidgets.js
    (necessary to datepicker)
    Does anyone have a solution??
    Thanks

    Hi Gabriele,
    technically speaking, ADDT and the Spry framework have about nothing in common, and you´re going to stumble across many compatibility-related issues when trying to use them together.
    Does anyone have a solution??
    any regular user who´d like to provide a solution to this, would have to be a pretty skilled programmer and would have to know the "technical details" of both ADDT and SPRY very well to be of help -- I don´t think that you´ll find many folks here who are capable to do that.
    However, why not making the date field required in ADDT ?
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • Remot Control For Digital@nywhere ATSC and Vista Don't Work Together Very Well

    I have a Digital@nywhere ATSC tuner card w/remote.
    On Windows XP, the remote worked ok. On Windows Vista, the remote works only some of the time.
    On Windos XP, the BDA drivers and utilities on the install disk loaded fine. Not so with Vista.
    On Vista, the utilities on the install disk seem to load fine, but the BDA drivers fail.
    Loading the Vista Digital@nywhere utilities gets the tuner card to work, but has no drivers for the remote. Leaving me to load the utilities from the install disk, and and the BDA drivers from the Vista Digital@nywhere files. A rather tedious process, with the remote only functioning sometimes.
    I have tried every trick I can think of to get the remote control and Vista to work together, to no avail. I'm stumped.
    I'd rather not go out and buy a new tuner card, when the Digital@nywhere ATSC tuner card works fine on Vista. I'd just like to have a remote control that works fine too. But I don't.
    I hope an answer can be found for this problem.
    If I haven't been clear enough, just ask, and I'll try to explain things better.
    Thanks for any help that anyone can give.

    Are you using Media Center in Vista? If so, buy a Media Center remote, should work with no problems.

  • JAVA command line options -cp and -jar don't work together?

    Running JSDK 1.4.2 under Windows. I have a Java application that tries to dynamically load a class name that the user enters as follows:
    try {
    classResult = java.lang.Class.forName(strFilterName);
    catch (ExceptionInInitializerError e) {
    strErrorMessage = "ExceptionInInitializerError loading class: " + strFilterName;
    catch (LinkageError e) {
    strErrorMessage = "LinkageError loading class: " + strFilterName;
    catch (ClassNotFoundException e) {
    strErrorMessage = "ClassNotFoundException loading class: " + strFilterName;
    This works fine if the classes that make up my application are left as class files in the classpath, but fails to work if they have been collected and run from a JAR file. Note: I can even dynamically load the class when running from the JAR file, if the class I'm trying to load is within that JAR file too. The problem really occurrs when the dynamically loaded class is located someplace else in my classpath. I've tried using various combinations of the "-cp" and "-jar" Java command line options - but when loading and running from a JAR file - the "-cp" parameters seem to be ignored. Is this a bug? Has anyone ever seen this before?
    I run my program from the JAR file using this command:
    java -cp .;e:\entmgr\filters -jar EntMgr.jar
    Where "e:\entmgr\filters" is where the class I'm trying to dynamically load is. (This class has no package name, but loads perfectly as long as I'm not running the application from the JAR file). The class name specified by the user has to be fully specified with a package name (if it has one).
    I have tried forcing the "java.lang.Class.forName(strFilterName);" call to use the system class loader, the parent of the system class loaded, and even the null bootstrap class loader - all with no success.
    I am suspecting that the class loader that is loading and running my main program from the JAR file, is just not paying any attention to the "-cp" parameter when the "-jar" parameter is present. Indeed, I have never seen any change in the failure, no matter what I put in the "-cp" parameter when using the JAR file.
    When I run this without using the JAR file, here is the command I execute:
    java -cp .;davidp\snmp;filters davidp.snmp.EntMgr
    Where this is executed in a directory that has a "filters" and "davidp\snmp" directory. In this case, because the "filters" directory is in my class path - I can dynamically load my class from it using just its simple name (i.e. "TestTrapFilter").
    So, is there some bug that precludes the "-cp" parameter from working correctly when the "-jar" parameter is used? Is there some other way to initialize or set up the classloader I'm using, so it can find things outside of the JAR file I'm running from? I would hope that it is possible to get the same behavior from my program, no matter if it is run from a JAR file or not.
    Thanks for any assistence!
    Dave

    These posts are pretty old, but this page came up in a google search while I was having the same problem, so I thought I would throw my own (Later found) solution in.
    The -cp and -jar options did not work together for me, but I later learned that they didn't really have to (and you don't have to mess with jar manifest files).
    While on the command line, if you want to set a specific class path and also run a jar, all you need to do is add the jar to whatever extra class path you need to use in the -cp <arg>, and then specify which class you want run from inside the jar.
    IE:
    java -cp <YourSpecialClasspath>: <PathToJar> <ClassToRunInsideOfJar>
    in my case it was like:
    java -cp /home/user/WebRCP.jar:./StandaloneInstaller.jar InstallLoader
    Remember to put a ":" in between the two arguments for the class path (-cp).
    Hope this helps someone in the future,
    -Josh

  • Ipod and external Hard drive don't work together

    I got a dell optiplex gx260 which has 6 2.0 USB ports. My IPod (80GB classinc) library is stored on external HDD. When I connect my HDD to the comp and point iTunes to the HDD library everything is good and I see my songs. As soon as I connect iPod it shows up “unknown device” in a device manager. If I disconnect HDD and connect iPod only windows finds it OK, but as soon as I plug HDD back in iPod disappears. I’ve tried reinstalling sys and inf files, pointing towards updated drivers and all nothing still the same thing, tried every port and every combination on the computer USB ports still the same thing iPod and HDD don’t want to work together. Please advice, thanks.

    I got the same problem here but not just with IPod. When I power up my external disk (with aux power supply) my usb stick (or IPod or printer or scanner or other devices) on other ports get disconnected. All devices did work toghether some months ago.
    I think this is related to a hardware problem. Things began to fail, when I tried to co-supply 5V to a device connected to my usb bus. I possibly toasted some logic on the motherbord.
    Testing your hardware on a second system may help you. Or have a look if a USB stick instead of IPod gets disconnected too. This may prove that its not IPod related.
    Good luck

  • Z77A-GD65 - fast ram and Intel Rapid Start don't work together??

    Greetings.
    I have got 2x4Gbyte G.Skill CL10 2400Mhz ram. When running this ram at its default speed at 2400Mhz, Intel Rapid Start don't work. When I shut it down, it acts normal until the point where the system "wakes up" for a few seconds to write to the special partition for IRS. The PC then try to reboot, but after 2 attemps it says that the Overclocking has failed and I have the choise of F1 (setup) or F2 (load default settings and continue).
    If I lower the ram speed below the default speed (i.e. don't use the XMP profile), then Intel Rapid Start works fine.
    Memtest86 do not show any error at all after 4 pass with the G.Skill at 2400Mhz. To me it seems like the motherboard can't handle this speed at the state in Intel Rapid Start.
    Anybody with info about what to do? 

    Quote from: RemusM on 16-January-14, 00:14:15
    The internet is bloated with paid "reviews" ...
    Here is what you have and what you paid for:
    http://ark.intel.com/products/65520
    Max Memory Size (dependent on memory type) : 32 GB
    Memory Types : DDR3-1333/1600
    Memory Channels : 2
    Max Memory Bandwidth : 25.6 GB/s
    Intel does not guarantee anything above 1600MHz.
    On the top of that, 25.6 GB/s bandwidth is enough for DDR3-1600 in dual-channel only.
    In other words, above 1600Mhz the perfomances boost is close to ZERO.
    RAM speed over 1600Mhz does nothing? That WAS true, but not anymore. First of this:
    Anandtech:
    http://www.anandtech.com/show/6372/memory-performance-16gb-ddr31333-to-ddr32400-on-ivy-bridge-igp-with-gskill
    xbitlabs:
    http://www.xbitlabs.com/articles/memory/display/ivy-bridge-ddr3.html
    overclock.net:
    http://www.overclock.net/t/1438222/battlefield-4-ram-memory-benchmark
    Second, I can messure a real performance difference when using this memory at 2400mhz vs 1600mhz, f.i. Winrar5.01 x64, when searching in reg.database, and other memoryhungry programs. My graphic-card is not powerfull enough to show any difference in games, but almost anything else I _can_ se a difference.
    If you honestly can read these 3 links and still say, that memory speed does not matter, I think I know more about this than you 
    I'm quite sure, that a big place like Anandtech is not payed to show up this result.

  • I have adobe acrobat 6.0 and windows 7.0 professional...they don't work together

    Is there anything i can do to make these work together?

    Hi ,
    As Acrobat 6 is a pretty older version and it will surely not work with windows 7 .
    There is no possible way to make them run together .Either you need upgrade your Acrobat version that is compatible with windows 7 or downgrade your OS if you want to stick to Acrobat ^ .
    However  I would recommend you to upgrade to the latest Acrobat DC ,that is the latest version Adobe has launched and is compatible with the OS you use.
    Also ,it is loaded with new features that will simplify your work and make it convenient .
    Following are the links to download Acrobat DC .
    If you want the subscription refer this - Download Acrobat DC (Continuous) | Enterprise or VIP
    And if you want the perpetual version -Download Acrobat products | Standard, Pro | DC, XI, X
    Regards
    Sukrit Dhingra

  • Saved Pages document as PDF. Now hyperlinks don't work

    After saving my newsletter in Pages 09 as a PDF (Print>Compress as PDF) some embedded hyperlinks don't work. Strangely enough, the links to an e-mail DO work, but links to a URL DO NOT. Why is this and what do I do to overcome this problem?

    That's a fairly long thread I linked to. Did you get all the way down to this post with a screenshot? I see that others had the same problem you do & it took them a couple of tries to get it working. I would be nice to be able to see what you're doing (or not doing), but we have to make do with words & screenshots.

  • Oracle 9i and 9i Developer Suite don't work together

    I've tried to install 9i and 9iDS in different homes. Then, I can work with SQL*Plus (of 9i) but all 9i DS's applications don't work at all. The main problem is that I can not connect to the Database of 9i.
    Is there any body know the solution? Pls help, this is the first time I use developer suite to study Form and Report.

    this tnsping was a great start. it allows the user to find another place to look for errors ora files.
    I was looking in every instance of my TNSnames.ora files. the one in the 9i as well as the 10g were alike and fine. I had to comment out some bad lines from the 10g ora file. the tnsping found the SQLnet.ora file that contained an error. in this case the error was the same line needed to be commented out.
    it is not that I forgot to do so but I didnt know that this line was even in any of the files.
    this tnsping works as a great trouble shooter.
    thanks...

  • S3 - KitKat update now headphones don't work

    Like a lot of us I have been having various battery issues (draining quickly, hard to charge & hot battery) with my Galaxy S3 since the Kit Kat update came to town but I am also having a problem with headphones too.  I use headphones to listen to music and also as a hands free to speak while on calls.  After the latest update the microphone on my headphones wouldn't work (these are the Samsung headphones that came with the phone), music plays fine but people cannot hear me when I am on a call.  I tried other headphones as well and those don't work either.  Not loving this update at all...

    Found the problem.  We were hacked on Sunday. 
    http://forums.adobe.com/message/5046414?tstart=0

  • SLM2008 and SD2008 don't work together

    Has anyone trouble to get Linksys SLM2008 Managed and Linksys SD2008 Unmanaged to Work together? SD2008 LED Light is continously flashing at connected Port.

    Hi Erik,
    I am guessing this might be a new installation and still covered by phone support warranty..
    Please open a case with the Small Business Support center to determine the cause of the issue.
    http://www.cisco.com/en/US/support/tsd_cisco_small_business_support_center_contacts.html
    regards Dave

Maybe you are looking for