Uploading Data onto a buffer that outputs with a custom clock pulse

Hello,
I am currently trying to develop a program that will allow me to upload on or off values to a buffer, and then output these values based on a custom digital waveform I created.  Using a notepad file, I am able to create a digital waveform that is split into microsecond increments. For example if I type 1    0    1    0    0 in the notepad file, the LabVIEW program will create a digital waveform that is high for 1 microsecond and then low for 1 microsecond, then high for 1 microsecond and low for the next 2 microseconds.  After expanding this file to have high and low values covering 30 seconds of time  I was hoping to use this as a clock pulse for releasing the high and low values for 8 channels on a PCI 6220 DAQ board.  If anyone has suggestions on how to go about this it would be extremely helpful. Thank you 
Attachments:
Digital Waveform DAQ Assistant 2010 SP2.vi ‏31 KB

Hi EESteve1992,
Here are some resources to help you load your digital waveform onto your DAQ application.
This forum post goes over how to generate a waveform using DAQ:
http://forums.ni.com/t5/LabVIEW/digital-waveform-output/td-p/378020
This example gives an example of how to load your data onto your DAQ:
https://decibel.ni.com/content/docs/DOC-12482
Hopefully this will help you get started.
Paolo F.
National Instruments
Applications Engineer

Similar Messages

  • Is there a way make a full width menu that opens with a custom icon like the link below?

    I've been trying to make a hamburger menu that just has a custom icon to open revealing the sections of my site with links.
    Huge. Digital agency. Digital business, design, marketing, technology
    Anybody got any tips?
    Thanks

    You can use a lightbox composition

  • While uploading data for employee as a vendor (with their loans and advance

    Hi,
    We are going for one company live. We are not taking HR module as of now.
    We are creating employee as a vendor for all employees with outstanding loans and advances.
    Now while uploading initial data for these employee (created as vendor), business wants personal loan outstanding balances employee as a vendor wise.
    Generally in case of normal vendor, we treat like
    Vendor A/C Dr
    to takeover creditors a/C  Cr
    while going for initial upload.
    In above case what should we do if we want outstanding balances (personal loan) while initial balance upload?
    Thanks,
    Taral Patel

    Hi,
    You can create a separate employee vendor for Advances paid to them with an assignment to a separate recon account titled as Advance to Employees. Later, you can upload the entries by Debiting the Employee Advance Vendor account and crediting Vendor Upload Account.
    Advances paid to employees (recon account) will represent in the TB as a separate line item forming an MIS.
    Regards
    Hari

  • Vix file in UI builder doesn't recieve data from Webservice application that communicates with SQL server database

    I have created Web service VI ("Prikaz insolacije.vi") which has two input string terminals (FROM / TO) for dates and two output terminals for data (1-D array) collected from database (MS SQL server). This VI communicates with database using functions from database palette with appropriate DSN and SQL query. There are two tables with two data columns (Time and Insolation) in Database.
    This VI works when you run it in Labview 2010, but when I used it as sub VI in UI builder it doesn't return any data.
    Could you please help me find a solution. Is it possible to communicate with SQL server database this way or there is another way?
    There are two attachmet files: Image of .vix file in UI builder and .vi file ("Prikaz insolacije.vi")
    Please help me ASAP!
    Thanks,
    Ivan
    Solved!
    Go to Solution.
    Attachments:
    vix file in UI builder.png ‏213 KB
    Prikaz insolacije.vi ‏35 KB

    Status is False and source string is empty. It behaves like there is no code in VI.
    I tried to access web service directly using following URL:
    http://localhost:8080/WSPPSunce/Prikaz_insolacije/2009-11-05/2009-11-01
    and it doesn' t work. It returns zeros.
    The response is:
    <Response><Terminal><Name>Insolacija</Name><Value><DimSize>0</DimSize></Value></Terminal><Terminal><Name>Vrijeme</Name><Value><DimSize>0</DimSize></Value></Terminal></Response>

  • Problem with upload data from CRM to BI system

    When I try to perform full upload data from CRM to BI system with data source 0BPARTNER_ATTR (active version: Excutable). I waited for a long time but there are not any records were transfered (total records need to upload are 130) . I checked the log and can't find any errors.
    Pls help me solve this problem.
    Thanks and regard

    Hi,
    on the next day, the process finished with status not success.
    The detail errors is:
    Extraction(messages): Missing messages
              Missing message: Request received
              Missing message: Number of sent records
              Missing message: Selection completed
    Transfer (IDocs and TRFC): Errors occurred
              Data package 1: arrived in BW; Processing: Selected number does not agree with transferred n
              Request IDoc: Application document posted
              Info IDoc 2: sent, not arrived; Data passed to port OK
              Info IDoc 1: sent, not arrived; Data passed to port OK
              Info IDoc 3: sent, not arrived; Data passed to port OK
              Info IDoc 4: sent, not arrived; Data passed to port OK
    However, the data has been uploaded to infoobject. Pls explain to me about this error and why the data can be uploaded with this error.
    Regard

  • HOW TO UPLOAD DATA FROM EXCEL TO INTERNALTABLE

    HI,
    HOW TO UPLOAD DATA FROM EXCEL TO INTERNALTABLE?  & WITH EXAMPLE.

    hi,
    chk this, put the data into an excel file.
    fields inside it are name and age.
    sample excel sheet.
    coloumn 1 is name and column 2 is age
    name age
    A     8
    C     13
    D     55
    DATA : int_excel LIKE alsmex_tabline OCCURS 0 WITH HEADER LINE.
    data : record like db_name_age occurs 0 with header line.
    DATA : v_start_col TYPE i VALUE '1', "starting col
           v_start_row TYPE i VALUE '1', " starting row
           v_end_col   TYPE i VALUE '2', " total columns
           v_end_row   TYPE i VALUE '10'. "total no of record
    FORM f_upload .
      CLEAR : int_excel, int_excel[].
      CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
        EXPORTING
          filename                = wf_filename
          i_begin_col             = v_start_col
          i_begin_row             = v_start_row
          i_end_col               = v_end_col
          i_end_row               = v_end_row
        TABLES
          intern                  = int_excel
        EXCEPTIONS
          inconsistent_parameters = 1
          upload_ole              = 2
          OTHERS                  = 3.
      IF sy-subrc <> 0.
    *Message is 'Unable to upload data from  '  wf_filename.
        MESSAGE e169(zm050) WITH wf_filename.
      ELSE.
        SORT int_excel BY row col.
        REFRESH : record.
        CLEAR   : record.
        LOOP AT int_excel.
          CASE int_excel-col. "go thru each column.
            WHEN 1.
              record-name  = int_excel-value.
            WHEN 2.
              record-age = int_excel-value.     
          ENDCASE.
          AT END OF row.
            APPEND record.
            CLEAR record.
          ENDAT.
        ENDLOOP.
    *inserting into table
    modfiy db_name_age from table record.
      ENDIF.
    <i><b>ANOTHER EXAMPLE</b></i>
    TYPE-POOLS truxs.
    types: begin of t_tab,
    col1(5) type c,
    col2(5) type c,
    col3(5) type c,
    end of t_tab.
    data : itab type standard table of t_tab,
           wa type t_tab.
    data it_type type truxs_t_text_data.
    parameter p_file type rlgrap-filename.
    data ttab type tabname.
    at selection-screen on value-request for p_file.
    CALL FUNCTION 'F4_FILENAME'
    EXPORTING
    PROGRAM_NAME = SYST-CPROG
    DYNPRO_NUMBER = SYST-DYNNR
    FIELD_NAME = 'P_FILE'
    IMPORTING
    FILE_NAME = p_file
    start-of-selection.
    CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
    EXPORTING
    I_FIELD_SEPERATOR =
    I_LINE_HEADER = 'X'
    i_tab_raw_data = it_type
    i_filename = p_file
    tables
    i_tab_converted_data = itab[]
    EXCEPTIONS
    CONVERSION_FAILED = 1
    OTHERS = 2
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    end-of-selection.
    loop at itab into wa.
    write : wa-col1,
            wa-col2,
            wa-col3.
    endloop.
    rgds,
    anver
    <i>if hlped pls mark points</i>

  • Program to upload data from a tab-delimited file ...

    I have to upload data from a tab-delimited file with following fields into database table(ZCBU) with same fields:
    CBU (parent)
    KUNNR (child)
    ERDAT (effective from)
    MANDT (client)
    SFID (salesforce ID)
    AEDAT (effective to)
    AENAM (assigned by).
    This file can be of type PC(txt) or UNIX.
    plz tell me how to do this in both type of files

    Hi,
    DATA: bdcdata LIKE bdcdata    OCCURS 0 WITH HEADER LINE.
    DATA: xfile TYPE string.
    DATA: BEGIN OF itab OCCURS 0,
            empno TYPE zmemp-empno,
            name  TYPE zmemp-first_name,
            last  TYPE zmemp-last_name,
            comp  TYPE zmemp-comp,
            place TYPE zmemp-place,
            END OF itab.
    PARAMETER : p_file TYPE rlgrap-filename OBLIGATORY.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    Form to get the file path of legacy data stored on presentation server
      PERFORM get_file_path.
    START-OF-SELECTION.
      MOVE p_file TO xfile.
    to get the data from excel sheet data into an internal table
      PERFORM get_data.
      LOOP AT itab .
        REFRESH bdcdata.
        PERFORM bdc_dynpro      USING 'ZM_EMPLOYEE' '9001'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'S9001_EMPNO'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=CREA'.
        PERFORM bdc_field       USING 'S9001_EMPNO'
                                      itab-empno.
        PERFORM bdc_dynpro      USING 'ZM_EMPLOYEE' '9002'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'S9002_PLACE'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=SAVE'.
        PERFORM bdc_field       USING 'S9002_EMPNO'
                                      itab-empno.
        PERFORM bdc_field       USING 'S9002_FIRST_NAME'
                                      itab-name.
        PERFORM bdc_field       USING 'S9002_LAST_NAME'
                                      itab-last.
        PERFORM bdc_field       USING 'S9002_COMP'
                                      itab-comp.
        PERFORM bdc_field       USING 'S9002_PLACE'
                                      itab-place.
        PERFORM bdc_dynpro      USING 'ZM_EMPLOYEE' '9001'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'S9001_EMPNO'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=BACK'.
        CALL TRANSACTION 'ZMEMP'
        USING bdcdata
        UPDATE 'A'
        MODE   'N'.
      ENDLOOP.
           Start new screen                                              *
    FORM bdc_dynpro USING program dynpro.
      CLEAR bdcdata.
      bdcdata-program  = program.
      bdcdata-dynpro   = dynpro.
      bdcdata-dynbegin = 'X'.
      APPEND bdcdata.
    ENDFORM.                    "BDC_DYNPRO
           Insert field                                                  *
    FORM bdc_field USING fnam fval.
      CLEAR bdcdata.
      bdcdata-fnam = fnam.
      bdcdata-fval = fval.
      APPEND bdcdata.
    ENDFORM.                    "BDC_FIELD
    *&      Form  get_file_path
    FORM get_file_path .
      CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
        CHANGING
          file_name = p_file.
    ENDFORM.                    " get_file_path
    *&      Form  get_data
    FORM get_data .
      DATA : lines1 TYPE i.
      MOVE p_file TO xfile.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename            = xfile
          filetype            = 'ASC'
          has_field_separator = 'X'
        TABLES
          data_tab            = itab.
      DESCRIBE TABLE itab LINES lines1.
      WRITE : / lines1 , 'REcords uploaded' .
    ENDFORM.                    " get_data
    Regards,
    Nihar Swain,

  • Having a xml output with custom xml tags

    Hi All,
    I have a requirement where we need to generate an xml output with a custom set of tags as given below.
    <templates>
    <list>
    <List_no></list_no>
    <List_name> </List_name>
    </List>
    </templates>
    I am not sure how to get the list part as tags within tags.
    I am able to get the output if the tag level is just one level like ,
    <templates>
    <List_no></list_no>
    <List_name> </List_name>
    </List>
    </templates>
    Does anybody know how I could get the multi-level tags. Any help would be much appreciated. Thank you all.
    -Vin

    Hi, you can FOR XML PATH for a finer degree of control over your XML.  Use the @ symbol to create attributes.  Here's a simple example:
    DECLARE @t TABLE ( rowId INT IDENTITY PRIMARY KEY, [address] VARCHAR(50), city VARCHAR(30), floor INT, suite INT, doorType VARCHAR(20) )
    INSERT INTO @t VALUES
    ( '123 Fake St', 'Springfield', 10, 512, 'Metal' )
    SELECT
    [address] AS "Address",
    city AS City,
    [floor] AS "Location/@Floor",
    suite AS "Location/@Suite",
    doorType AS "Location/@DoorType"
    FROM @t
    FOR XML PATH ('Company'), ROOT ('Companies'), ELEMENTS;

  • Disappointment with Apple customer service's response to my iMac G5 issues

    The following is a copy of the letter that I will be sending to Apple in regards to my recent dealings with customer service. What do you guys think I should do?
    To whom it may concern:
    Let me begin by saying that I have been a loyal and avid fan of the Mac since 1999. I have converted several of my PC friends to the Mac, and I would consider myself to be the quintessential Mac "geek" (posters, T-shirts, you name it). I have owned a Macintosh LC 575, Power Macintosh G3 (Blue & White) and Power Mac G4 Cube, in addition to my current machine, an iMac G5. However, my recent experiences with Apple customer support have left me thinking that maybe the Mac way is not the smooth, customer-first experience that I thought it was.
    As I mentioned, I currently am using an iMac G5 (rev. A, 20" 1.8 GHz). Unfortunately, the iMac was a victim of the well-documented power supply issue (http://www.apple.com/support/imac/re...ensionprogram/) several months back. The power supply would heat up to such high temperatures that it eventually burned out, and I could not power on the machine. I brought it in to my local Apple Store (Oakbrook, IL), whereupon they wrote up a repair order, and I had my Mac back within 4 days, all without paying a penny. "Wow, excellent no-hassle service," I thought, and rightfully so.
    Over the last couple of months, my iMac has further developed a couple of smaller, but still annoying and "not-very-Apple-like" issues. First, the fans have developed a consistent, cricket-like squeak - that is, you can hear the fans turning, sort of like an old wheel that needs oil. In my quiet office, it is VERY obvious, and is especially distressing when I'm trying to do audio and MIDI work. The second issue is that the slot-loading Superdrive has gotten to the point where discs that are being ejected often fly out of the slot and do not stop, falling onto the top of my desk, or occasionally clear off the desk onto the floor.
    A few days ago, I decided that I had had enough with both issues, and decided to initiate a chat with a support agent on Apple's iMac support web page. After explaining the issues to the agent, I was transferred to a "specialist," to whom I then had to re-explain the issues. Further irritating me was the fact that they provided me no solution other than to visit my local Apple Store, and they would further diagnose the system.
    So tonight I headed over to the Apple Store Oakbrook with the iMac in tow (mind you, not the lightest thing to be carrying around, and a pain to have to disconnect peripherals etc.). I had made an appointment prior to showing up...in fact, Apple's new Concierge system seemed very elegant and user-friendly, and I was able to make a 7:20pm appointment at around 2:30pm. I made it to the Apple Store at about 6:50pm, and saw my name listed on the Genius Bar screens as being 2nd in line. There was a man with a 15" PowerBook that was being helped by the Genius behind the bar, so I sat and waited patiently. About 40 minutes into my wait, a woman with an iPod mini walked up to the bar, seemingly waiting for assistance. Within two minutes, another Apple employee approached her, briefly looked at me and asked if I was waiting for help. When I said I needed assistance with my iMac, he told me that I would have to wait for the next Genius, turned to the woman with the iPod mini and proceeded to diagnose her problem.
    Further irritated, I waited another 10 minutes or so, at which point the same employee turned his attention to me. I explained the fan and Superdrive issues to him, and he took the iMac to the back room for another employee to take a look at it. About 10 minutes later, he came back out with the iMac and said something to me that just floored me. He told me that his colleague that looked at it could not find anything inherently wrong with the fans, and that "since it's not a Pro desktop, there are bound to be squeaks in the fan system" (almost verbatim what he said). He said that they cleaned the fans, and tightened the eject mechanism in the Superdrive, and that if I continue to have issues with it to bring it back in and they will further diagnose it.
    The message I have taken from this experience is two-fold. First, Apple has officially gone from being a computer company to a consumer electronics company. The fact that I literally was skipped over after waiting 40 minutes and pushed aside for an iPod user who had waited TWO minutes and was not in the Genius Bar queue shows that Apple's priorities have shifted. Secondly, Apple does not truly back the quality and craftsmanship on which they pride themselves. Just because I do not own a "Pro desktop," that should not mean that a squeaky fan system is an acceptable situation. I bought an $1,800 computer that was advertised as "whisper-quiet" and I should not have to pay $3,000+ just to be reassured that I will be taken care of. I expect excuses and glancing over of issues by companies like Dell that make cheap bare-bones systems. I do not expect that from Apple - if Apple is going to hold themselves to a higher standard, they should back up that talk with true customer-first service.
    So I am now sitting in front of my rickety-sounding iMac, wondering what my next step should be. I appreciate you taking the time to read this, and I would further appreciate a follow-up and resolution to this situation.
    Thoughts?

    Send it. I feel for you, but the most sympathy you'll get is from fellow users on this board. These forums were one of the best ideas by Apple. Whoever thought it up is probably getting 1% of iPod sales as commission. Besides users helping users so Apple doesn't have to handle nearly as much tech support directly, this board is also a place for people to vent so Apple doesn't have to address your concerns. I'm not saying these boards are a bad thing ... they are very helpful, but you have better odds at winning the lottery grand prize than you do to get a reply back from Apple from a letter like this.

  • Is it possible to create a Webservice in BI which takes XML as an input and gives PDF as output with an additional requirement that Siebel expecting the XSD from BI to send data in the BI requested format

    Is it possible to create a Webservice in BI which takes XML as an input and gives PDF as output with an additional requirement that Siebel expecting the XSD from BI to send data in the BI requested format. Siebel wants to send the data as xml to BI but not sure of the BI capabilities on giving WSDL embedded with XSD (input is a hierarchical)

    Hi All,
    I am able to fulfil above requirement. Now I am stuck at below point. Need your help!
    Is there any way to UPDATE the XML file attached to a Data Definition (XML Publisher > Data Definition) using a standard package or procedure call or may be an API from backend? I am creating an XML dynamically and I want to attach it to its Data Definition programmatically using SQL.
    Please let me know if there is any oracle functionality to do this.
    If not, please let me know the standard directories on application/database server where the XML files attached to Data Definitions are stored.
    For eg, /$APPL_TOP/ar/1.0/sql or something.
    Regards,
    Swapnil K.

  • How do I retrieve data from a HD that cannot be repaired with utility disk?

    Hi,
    I have a macbook pro 15 inch mid 2010. It has 4gb of ram and 500gb of storage. I recently upgraded to Mavericks OSX10.9,4.
    First of all, when turning on my mac the screen just loads forever, hence it does not pick up the HD. It also displayed the circle with a line through icon once.
    Upon noticing this, I tried to repair the disk but it said it was unable to. The other disks are ok but the MAC HD says it stopped repairing when I attempted to repair it.
    Using single user mode (command + s): I tried this, but it continued to says the same i/o error code:
    disk0s2: i/o error.n
    0 [level 3] [facility com.apple.system.fs] [errtype IO] [IOType Read] [PBlkNum 57547320] [LBlkNum 67604]
    0 [level 3] [facility com.apple.system.fs] [DevNode root_device] {mountPt /] [Path /private/var/db/dyld/dyld_shared_cache_x86_64]
    And it kept going and going.
    I'm afraid to try anything else. I have no Mac back up in time machine (I know) but I have an external. Is it possible to retrieve the data by wiping the external and using the utility disk to transfer to HD to the external? Is that what people call cloning? Is this physical damage/can i still recover the data/use it and section off the damaged parts and use the spare space?
    Help would be appreciated!

    i/o errors generally mean that a part of the disk cannot be read. That can prevent the disk mounting or prevent the entire disk being read after the error.
    Disk Utility is not great at addressing issues like this & data recovery specialists are the safest (and most expensive) option for recovering data from a disk in this state.
    As others have said it's critical to avoid any use of the disk since if it's a mechanical fault it could seize or finally give up functioning.
    If you are intent on recovering 'on your own & on the cheap' you could look at ddrescue – it clones a disk by copying the data stream whilst ignoring errors from the source disk, the data on the second disk could be 'repairable' with additional tools.
    http://www.gnu.org/software/ddrescue/ddrescue.html
    TestDisk & Photorec are also good when used for the right fault.
    http://www.cgsecurity.org
    These are all *nix tools & require competence at the command line! Just installing can be too much for some non technical users.
    You also need lots of spare disks to move data onto to run the tools.
    Kappy, is CNET Downloads really a good recommendation? They have a habit of bundling other junk with third party app installers. Go straight to the vendors site would be my advice (using 'https' where available).

  • Problem with uploading data from excel using BDC for tcode f-02

    Hi All,
    I am uploading data from excel using BDC for tcode f-02. The problem here is, while recording, the values of some fields are recording twice. I dont know why it's happening so. But if I run my abap program, I have to give those fields twice in my excel sheet. Otherwise data does not upload. But it is not the feasible way. We must give those fields once in excel. Please tell me, how I can solve the issue.
    With regards,
    Rosaline.

    Hi,
      in BDC each and every action is recording. If your press enter in same screen that also recorded once aging may be this is your case repeating field values will appear. we can solve the problem for repeat fields like below.
    suppose in your excel having repeated field X1 X2 X3 the X2 contains repeated field X3 means delete the X3 field.
    Now In your itab having X1 and X2 fields. While in the LOOP the ITAB pass the X2 field to repeated the fields.
    LOOP at ITAB to WA.
    CLEAR bdcdata_wa.
    bdcdata_wa-fnam = 'BDC_CURSOR'.
    bdcdata_wa-fval = 'RM08M-EBELN'.
    APPEND bdcdata_wa TO bdcdata_tab.
    CLEAR bdcdata_wa.
    bdcdata_wa-fnam = 'INVFO-BLDAT'.
    bdcdata_wa-fval = wa-X2." 1st time pass the X2 fields
    APPEND bdcdata_wa TO bdcdata_tab.
    CLEAR bdcdata_wa.
    bdcdata_wa-fnam = 'INVFO-BLDAT'.
    bdcdata_wa-fval = wa-X2." pass the same value to repeated field
    APPEND bdcdata_wa TO bdcdata_tab.
    Endloop.
    Hope you can understand.
    Regards,
    Dhina..

  • Problems with special characters uploading data into oracle database

    Greetings
    I have a problem uploading data into oracle tables from sybase datasource. The data that I want to upload is in Spanish, for example when I have a varchar field with the data 'Consultoría', in oracle table the data upload with interrogation symbols.
    I have my source and target datastores configured as follows.
    Any suggestion? Thank you for your time

    Chack section 10 Locales and Multi-byte Functionality in the SAP Data Services Reference Guide for an exhaustive description of NLS settings.
    As a summary, following settings are required:
    locales in the datastore definitions match the actual locale used in the associated databases
    the locale of the DS engine allows for source to target translation
    the character set in the target database supports storage of accented characters

  • SQL Loader Oracle 10g problem in upload date with time data -- Very urgent.

    Hi
    I am trying to upload data using SQL loader. There are three columns in the table
    defined as DATE. When I tried upload a data like this '2007-02-15 15:10:20', it is not loading time part. The date stored as 02/15/2008' only. There is not time on that. I tried with many different format nothing work. Can please help me ?
    I have also tried with to_date --> to_timestamp it did not work.
    The application is going to be in production, I cannot change DATE to TIME STAMP. This is very urgent.
    LASTWRITTEN "decode(:LASTWRITTEN,'null',Null, to_date(:LASTWRITTEN,'YYYY-MM-DD HH24:Mi:SS'))",
    CREATEDON "decode(:CREATEDON,'null',Null, to_date(:CREATEDON,'YYYY-MM-DD HH24:Mi:SS'))",
    LASTUPDATEDON(21) "decode(:LASTUPDATEDON,'null',Null, to_date(:LASTUPDATEDON(21),'DD/MM/YYYY HH24:MI:SS'))"

    Your problem is most likely in decode - the return type in your expression will be character based on first search value ('null'), so it will be implicitly converted to character and then again implicitly converted to date by loading into date column. At some of this conversions you probably are loosing your time part. You can try instead use cast:
    SQL> desc t
    Name                                      Null?    Type
    LASTWRITTEN                                        DATE
    CREATEDON                                          DATE
    LASTUPDATEDON                                      DATE
    SQL> select * from t;
    no rows selected
    SQL> !cat t.ctl
    LOAD DATA
    INFILE *
    INTO TABLE T
    TRUNCATE
    FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"' TRAILING NULLCOLS
    LASTWRITTEN
    "decode(:LASTWRITTEN,'null',cast(Null as date),
      to_date(:LASTWRITTEN,'YYYY-MM-DD HH24:MI:SS'))",
    CREATEDON
    "decode(:CREATEDON,'null',cast(Null as date),
      to_date(:CREATEDON,'YYYY-MM-DD HH24:MI:SS'))",
    LASTUPDATEDON
    "decode(:LASTUPDATEDON,'null',cast(Null as date),
      to_date(:LASTUPDATEDON,'DD/MM/YYYY HH24:MI:SS'))"
    BEGINDATA
    2007-02-15 15:10:20,null,null
    null,2007-02-15 15:10:20,null
    null,null,15/02/2007 15:10:20
    SQL> !sqlldr userid=scott/tiger control=t.ctl log=t.log
    SQL*Loader: Release 10.2.0.3.0 - Production on Fri Feb 29 00:20:07 2008
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Commit point reached - logical record count 3
    SQL> select * from t;
    LASTWRITTEN         CREATEDON           LASTUPDATEDON
    15.02.2007 15:10:20
                        15.02.2007 15:10:20
                                            15.02.2007 15:10:20Best regards
    Maxim

  • Does anyone have a suggestion for a device that I can upload data to from an iPod when there is no wi-fi available? I'm using iForm to collect data and I need to get it uploaded to a database.

    can anyone recommend a device to upload data from an iPod when no wi-fi is available? I am using iForm to collect data in the field and I want to be able to upload it periodically.

    Hi there,  I'm myseld using the Application data-field in order to collect mobile forms OFFLINE.
    I can collect as many mobile form as i want BUT, of course, need to be online to sync the data from mobile to their cloud.
    Hope that helps.
    Otherwise, would probably need to plug ur idevice and look for the application database with such tool as iConnector.

Maybe you are looking for

  • Posting Cost of Goods sold to PA

    We have a requirement to post COGS to COPA. We have costing based pa active. Cost element categry 01 requires a cost object and I have made it 12. What is the based practice to get a contribution margin from COPA. ? Can COGS be posted as a G/L accoun

  • HT204370 TV series not fully downloaded.

    I have some 4 episodes of a TV series, with some 16 (?) still not fully downloaded. iTunes used to restart the download each day but has ceased trying to download the rest of the series. How do I re-start this download please?  Thanks. Tim

  • Relational access to aw

    Hello, I am evaluating, how one can access a cube via SQL. I generated Views for any dimension and cubes with the procedures in package DBMS_AWM (CREATE_AWDIMENSION_ACCESS_FULL, CREATE_AWCUBE_ACCESS_FULL) I don't understand, what I can do with the vi

  • Standard purchasing organisation

    hi pl guide me in defining and assignment of standard purchasing organisation

  • Using calendar object on prompt

    I'm having prompt with two calendar objects - FROM and TO dates selection for setting report's time frame. How can I show error message when user enter invalid date (typing directly in text box) or in case user select dates where FROM is after TO dat