Runtime Error In OneStandard Program

Below program giving short dump.
please tell me
data itab like bkpf occurs 0 With header line.
*select * from bkpf into table itab order by primary key.
tables bkpf.
select-options zpdate for bkpf-budat.
Select * from bkpf into table itab
       WHERE  bukrs  = 1800
       AND    bstat  in (SPACE, 'A' , 'B' , 'D')
       AND    budat IN zpdate
       AND    STBLG = ''
       order by primary key.
loop at itab.
  write : / itab-belnr,itab-budat.
endloop.

Check the internal table u have declared.
DATA: itab TYPE STANDARD TABLE OF bkpf WITH HEADER LINE.
As u r selecting * from table make sure ur itab should include the whole structure.
Try this code its workign firn for me without any dump.
REPORT YJJTEST1 .
tables bkpf.
DATA: itab TYPE STANDARD TABLE OF bkpf WITH HEADER LINE.
select-options zpdate for bkpf-budat.
Select * from bkpf into table itab
WHERE bukrs = 'ITC1'
AND bstat in (SPACE, 'A' , 'B' , 'D')
AND budat IN zpdate
AND STBLG = ''
order by primary key.
<b>As u r looping and displaying only two fields u can declare itab with only two fields</b>
In taht case use
<b>SELECT belnr budat FROM bkpf INTO itan
  .................</b>
endloop
Reward if u find helpful.
Message was edited by:
        Judith Jessie Selvi

Similar Messages

  • RUNTIME ERROR IN GENERATED PROGRAM. Overflow converting ''

    Hi,
    While executing the below code i am getting the error
    " RUNTIME ERROR IN GENERATED PROGRAM. Overflow converting ' ' am new to ABAP , can anyone kindly help me where i have went wrong ? .
    IF ( V_DO_CDS_NAME_MAIN <> '' ).
        ABAP.
            DATA: ref_it_tab TYPE REF TO data,
                  ref_wa TYPE REF TO data.
            FIELD-SYMBOLS: <fs_itab> TYPE ANY TABLE.
            FIELD-SYMBOLS: <fs_wa> TYPE ANY.
            FIELD-SYMBOLS: <fs_field> TYPE ANY.
            CREATE DATA ref_it_tab TYPE STANDARD TABLE OF (V_DO_CDS_NAME_MAIN) WITH NON-UNIQUE DEFAULT KEY.
            ASSIGN ref_it_tab->* TO <fs_itab>.
            SELECT * FROM (V_DO_CDS_NAME_MAIN) INTO TABLE <fs_itab> where C1 = V_WORK_ITEM_ID_MAIN.
            CREATE DATA ref_wa LIKE LINE OF <fs_itab>.
            ASSIGN ref_wa->* TO <fs_wa>.
            loop at <fs_itab> assigning <fs_wa>.
                assign component 'CLIENT' of structure <fs_wa> to <fs_field>.
                V_CLIENT = <fs_field>.
                assign component 'C0' of structure <fs_wa> to <fs_field>.
                V_C0 = <fs_field>.
                assign component 'C1' of structure <fs_wa> to <fs_field>.
                V_C1 = <fs_field>.
                assign component 'C2' of structure <fs_wa> to <fs_field>.
                V_C2 = <fs_field>.
                assign component 'C3' of structure <fs_wa> to <fs_field>.
                V_C3 = <fs_field>.
                assign component 'C4' of structure <fs_wa> to <fs_field>.
                V_C4 = <fs_field>.
                assign component 'C5' of structure <fs_wa> to <fs_field>.
                V_C5 = <fs_field>.
                assign component 'C6' of structure <fs_wa> to <fs_field>.
                V_C6 = <fs_field>.
                assign component 'C7' of structure <fs_wa> to <fs_field>.
                V_C7 = <fs_field>.
                assign component 'C8' of structure <fs_wa> to <fs_field>.
                V_C8 = <fs_field>.
                assign component 'MESSAGE_ID' of structure <fs_wa> to <fs_field>.
                V_MESSAGE_ID = <fs_field>.
                assign component 'TIMESTAMP' of structure <fs_wa> to <fs_field>.
                V_TIMESTAMP = <fs_field>.
                assign component 'EXTRACTKEY' of structure <fs_wa> to <fs_field>.
                V_EXTRACTKEY = <fs_field>.
                assign component 'STATEID' of structure <fs_wa> to <fs_field>.
                V_STATEID = <fs_field>.
                assign component 'DEVICE_ID' of structure <fs_wa> to <fs_field>.
                V_DEVICE_ID = <fs_field>.
            ENDLOOP.
        ENDABAP.
    ENDIF.

    Hi Mubeen,
    While Copying the cotes have come closer otherwise its working fine , i was able to find the error .
    There are ten predefined ABAP data types. There are 100 possible type combinations between these elementary data types. ABAP supports automatic type conversion and length adjustment for all of them except type D (date) and type T (time) fields which cannot be converted into each other.
    I commented the TimeStamp part where i had given the ABAP Type as D and it started working .
    But now i want to display the content of  "TimeStamp"  field but i am not able to do so .
    This is the format in which it has to be displayed 2009.011.915.3353.
    Which ABAPTYPE i need to use ?.
    i am able to display in this format 20090119153353
    regards
    Harsha

  • When I open Firefox I have to try several times because a Runtime Error with the program C:\Windows\System32\regsvr32.exe

    when I open Firefox I have to try several times because a Runtime Error with the program C:\Windows\System32\regsvr32.exe

    '''Try the Firefox Safe Mode''' to see how it works there. The Safe Mode is a troubleshooting mode, which disables most add-ons.''
    ''(If you're not using it, switch to the Default theme.)''
    * You can open the Firefox 4.0+ Safe Mode by holding the '''Shift''' key when you use the Firefox desktop or Start menu shortcut.
    * Or use the Help menu item and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Don't select anything right now, just use "Continue in Safe Mode."''
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shift key) to open it again.''
    '''''If it is good in the Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one.
    Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''

  • Runtime error in print program of a smartform

    Hi,
    While trying to execute the print program of a smartform I am getting the following runtime error.
    The reason for the exception is:
    The call to the function module "/1BCDWB/SF00000288" is incorrect:
    In the function module interface, you can specify only
    fields of a specific type and length under "IT_BOOKINGS".
    Although the currently specified field
    "IT_BOOKINGS" is the correct type, its length is incorrect.
    In the form interface of the smartform under tables parameters I have declared like this.
    IT_BOOKINGS      LIKE      SBOOK
    IT_SCHEDULE      LIKE      SPFLI
    Can anyone tell me why do we get this error?
    Regards,
    Hema

    Hello,
    program to call smartform is really simple :
    -> function SSF_FUNCTION_MODULE_NAME give you the name of the function link to your sapscript.
    -> function WFMC_PREPARE_SMART_FORM help your to prepare your options to your smartform.
    -> function xxx  to call your smartform (find with the first function).
    Sometimes you have to play with values of NAST (for ex) to find the language (set in control_parameters) or for example if you want to print without display (when it ask you for print / print preview  and the name of the print device) .....
    Frédéric

  • Runtime error in Standard program "SAPMV45A"

    Hi Expert,
    i am getting problem in BDC , While creating the (sales order) VAO1 ,dump is occurs in standard program SAPMV45A. Because of in FM "Pricing_Dialog_Tabstrips" is incorrect and TAXI_TABSTRIP_C and TAXI_TABSTRIP_ITEM" specified here is a different field type.This is standard program we can not change field type. Kindly provide any OSS notes for this or any other solution.
    STANDARD PROGAM - SAPMV45A
    INCLUDE PROGRAM     - MV45AF0F_FCODE_PKO4
    ERROR  - Runtime Error CALL_FUNCTION_CONFLICT_TYPE has occurred
    Kindly help me, Its very uigent
    Thanks & Regards
    Md.MahaboobKhan

    Hi Archana ,
    Check is there any Inactive Versions in ur Systems ?
    useful tcodes are SPAU /SPDD for tables
    Regards
    prabhu

  • Runtime error R6034 c:\program files\itunes\itunes.exe.

    On january 25, 2014 I installed new version of itunes 11.1.4 and error occured:  itunes was not installed correctly. Please reintall itunes. Error 7 (windows error) 1114.
    Runtime Error:  program c:\files\itunes\itunes.exe.  R6034 An application has made an attempt to load the C runtime library incorrectly.  Please contact the applications support team for more information.
    I continue to get this errors and to reinstall itunes.  I do not know if the cause is microsoft visual C++ or itunes installation has a bug that caused the problem.
    Anyone know how to fix this problem.  Cannot download lates version of Itunes.
    Thanks

    Click here and follow the instructions. You may need to completely remove and reinstall iTunes and all related components, or run the process multiple times; this won't normally affect its library, but that should be backed up anyway.
    (99261)

  • HT1925 I downloaded the latest version of Itunes last night.  I uninstalled all the apple products in order but the new version won't load.  I keep getting a runtime error R6034 ProgramC:\Program files\Itunes/itunes.exe made attempt to load C runtime libr

    Can't get the latest vesion of Itunes to download correctly.  I keep getting a runtime error R6034.  I tried uninstalling all the apple components in the order given. anyone having any good advice to solve my 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.

  • Runtime Errors SYSTEM_RUDI_INVALID main program /CRYSTAL/PUBLISHER

    Hello,
    we try to publish reports with transaction /CRYSTAL/RPTADMIN.
    If we publish only one report in dialog we don't have problem. Also if we publish a few report in background.
    But if we try to publish more than one report in dialog (publish (F8) or overwrite (F6) we get a runtime error SYSTEM_RUDI_INVALID.
    Extraction from the error:
    Short text
    Invalid addressig handle "RUDI_NULL".
    What happened?
    Error in the SAP kernel.
    The current ABAP "SAPLSH3A" program had to be terminated because the
    ABAP processor detected an internal system error.
    Error analysis
    Invalid runtime object addressed.
    How to correct the error
    The internal system error cannot be fixed by ABAP means only.
    You may be able to find a solution in the SAP note system. If you have
    access to the SAP note system, try searching for the following terms:
    "SYSTEM_RUDI_INVALID" " "
    "SAPLSH3A" or "LSH3AU06"
    "LOGONDATA_GET_A"
    Information on where terminated
    Termination occurred in the ABAP program "SAPLSH3A" - in "LOGONDATA_GET_A".
    The main program was "/CRYSTAL/PUBLISH_WORKER ".
    In the source code you have the termination point in line 1
    of the (Include) program "LSH3AU06".
    We've got a Netweaver 7.02 BW system with Kernel 7.20 PL 86
    We found several notes with the error SYSTEM_RUDI_INVALID, which all are related to kernel patches. But nothing which match to our problem.
    Any ideas?
    Best regards
    Petra Wöritz

    Hi,
    I would suggest you open a message with support so that they can take a look at the system.
    Ingo

  • When trying to download jave have runtime error progran c:/program files/mozella\firefox exe R6205 - pure virtual function call

    I have been having problems logging in and had to go to system set not quite knowing what I am doing I sent and changed to configure default, then when I went in my plugin crashed so I tried to update java again an got the above area message,Runtime error program c:/ program files\mozilla\firefox\firefox exe R6205 -pure virtual function call. I also tried to update my driver but as soon as they started checking updates mozilla shut down

    Try checking this guide on [http://www.pcperformancetools.com/runtimeerrors.htm
    runtime error download] It discusses step-by-step instructions on how to diagnose and repair windows runtime problems. They also got a free tool to clean-out and repair corrupt associations in the Windows Registry automatically.

  • 'OBJECTS_OBJREF_NOT_ASSIGNED_NO' Runtime Error in abap program

    When my dubugger goes on this line..it gives me Runtime error'
    'OBJECTS_OBJREF_NOT_ASSIGNED_NO'
    CX_SY_REF_IS_INITIAL
    Code :
    CALL METHOD determine_budget_values->determine_budget_values
      EXPORTING
         plvar  = '.:'
         butyp  = 'BU'
         begda  = '20060101'  "'01.01.2006'
         endda  = '20061231'  "'31.12.2006'
         kcurr  = 'X'
         budot  = 'BU'
         budid  = '50012433'  "objektid
         oldam  = 1000
         oldcu  = 'USD'
         oldno  = 10
         oldsu  = 'USD'
      IMPORTING
        NEWAM  = newam
        NEWCU  = newcu.
      NEWNO  =
      NEWSU  =
    Thanx in advance....Its very urgent..

    Thanks a lott...for u r rhelp///
    but one thing i would like to know after executing properly this method....will my HRP1520 will get those new values of budget of i will have to code it in Method ..specifically.
    i m sending code for Method...
    method IF_EX_HRECM00_BDG0001~DETERMINE_BUDGET_VALUES.
      DATA: BEGIN OF fs_budgets               ,
              objid(8) TYPE n                 ,             " Object Id
              flag     TYPE c                 ,             " Monetary/Non Monetary
              newam    TYPE CHAR22            ,             " Budgeted Amount,
              newcu    TYPE CHAR05            ,             " Currency Key,
            END OF fs_budgets                 ,
            t_budgets LIKE TABLE OF fs_budgets.
      DATA: w_sobid   TYPE hrp1001-sobid      ,             " Org. Unit
            w_file    TYPE rlgrap-filename    .             " File Name
      DATA: t_orgunit      TYPE hap_t_hrsobid    ,          " Id of Org. unit
            t_suborgunits  TYPE hap_t_hrsobid    ,          " Ids of Sub Org Units
            fs_orgunit     LIKE LINE OF t_orgunit.          " Work Area of orgunit
      REFRESH: t_orgunit,
               t_suborgunits.
      CLEAR  : fs_orgunit..
    The Budget values are stored in the file 'BUDGETS' on the App Server*
    This data will be read from the App Server                          *
      w_file = 'BUDGETS'.
      OPEN DATASET w_file FOR INPUT IN TEXT MODE ENCODING DEFAULT.
    Fetching the corresponding Org Unit for the Budget Id               *
      SELECT sobid                         " Org. Unit
        FROM hrp1001
        INTO w_sobid
       WHERE plvar EQ '01'
         AND otype EQ 'BU'
         AND objid EQ  budid
         AND rsign EQ 'B'
         AND relat EQ '300'
         AND istat EQ '1'
         AND begda LE  endda
         AND endda GE  begda.
      ENDSELECT.                           " SELECT sobid
      IF sy-subrc EQ 0.
        fs_orgunit-plvar = '01'.
        fs_orgunit-otype = 'O'.
        fs_orgunit-sobid = w_sobid.
        APPEND fs_orgunit TO t_orgunit.
        CLEAR  fs_orgunit.
    Fetching the Sub Org units for a given Org unit                     *
        CALL FUNCTION 'HRHAP_SEL_OBJECTS_OF_EVAL_PATH'
          EXPORTING
            T_OBJECTS_BASE   =  t_orgunit
            EVALUATION_PATH  = 'ORGEH'
            FROM_DATE        =  begda
            TO_DATE          =  endda
          IMPORTING
            T_OBJECTS        =  t_suborgunits.
      ENDIF.                               " IF sy-subrc EQ 0.
      CLEAR newam.
    Accumulating the budget values of all the Sub org units for a given *
    Org unit and populating the fields 'newam' and 'newcu'.             *
      LOOP AT t_suborgunits INTO fs_orgunit.
        CLOSE DATASET w_file.
        OPEN DATASET w_file FOR INPUT IN TEXT MODE ENCODING DEFAULT.
        DO.
          READ DATASET w_file INTO fs_budgets.
          IF sy-subrc EQ 0.
            IF fs_budgets-objid EQ fs_orgunit-sobid.
              ADD fs_budgets-newam TO newam.
              newcu = fs_budgets-newcu.
              EXIT.
            ENDIF.
          ELSE.
            EXIT.
          ENDIF.                           " IF sy-subrc EQ 0.
        ENDDO.                             " DO
      ENDLOOP.                             " LOOP AT t_suborgunits
    Giving default values for the Budget Amount and Currency if they are*
    containing Initial values                                           *
      IF newam IS INITIAL.
        newam = 0.
      ENDIF.                               " IF newam IS INITIAL.
      IF newcu IS INITIAL.
        newcu = 'USD'.
      ENDIF.                               " IF newcu IS INITIAL.
      CLOSE DATASET w_file.
    endmethod.
    After this code will i require to code anything specific to get this newam(new amount) uploaded to HRP1520 infotype or automatically it will upload if i write above mentioned code only...
    Please revert......thanx  a lot

  • COMPUTE_BCD_OVERFLOW Runtime Error in 'Z' Program

    Hi Gurus,
    In one of my report, i am getting this error:
    Run Time Error: Compute_BCD_Overflow
    Exception              CX_SY_ARITHMETIC_OVERFLOW
    Short text
        Overflow during the arithmetical operation (type P) in program
    Error analysis
        An exception occurred that is explained in detail below.
        The exception, which is assigned to class 'CX_SY_ARITHMETIC_OVERFLOW', was not
         caught in
        procedure "OUTPUT_DATA" "(FORM)", nor was it propagated by a RAISING clause.
        Since the caller of the procedure could not have anticipated that the
        exception would occur, the current program is terminated.
        The reason for the exception is:
        An overflow was discovered in an ongoing arithmetical operation with
        operands of type P. Possible causes are:
        1. The result field of type P is too small for the result.
        2. The result or a intermediate result has more than 31 decimal places.
    I searched a lot on SCN but most of the solutions are for standard SAP programs and SAP has provided notes for that.
    I am pasting a part of subroutine. Below is subroutine in which error is coming:
    FORM output_data .
       gt_data1_copy = gt_data1.
       SORT gt_data2 BY article site sloc.
       SORT gt_data1_copy BY article site sloc.
       LOOP AT gt_data1 INTO gwa_data1.
         READ TABLE gt_data2 INTO gwa_data2 WITH KEY article = gwa_data1-article
                                                     site = gwa_data1-site
                                                     sloc = gwa_data1-sloc BINARY SEARCH.
         IF sy-subrc = 0.
           gwa_output-soh_qty = gwa_data2-soh_qty.
           gwa_output-count_qty = gwa_data2-count_qty.
           gwa_output-var_qty = gwa_data2-var_qty.
           gwa_output-var_value = gwa_data2-var_qty * gwa_data2-map. "Error is coming at this point.
                 "Here I am multiplying variance quantity to Moving average price(MAP) to get variance value.
         ENDIF.
    endloop.
    endform.
    Request your help.
    Appreciate Your Help in Advance.
    Regards,
    Pankaj

    Hi Nabheet,
    Thanks for your reply.
    ok..I ll try by keeping this as of type quantity.
    data : var_value type mseg-menge.
    Hope this will work fine.Actually this reports takes too much time. I ll run this in background and get back to you with result.
    Regards,
    Pankaj

  • Runtime error in my program

    *& Report  ZGSCREEN                                                    *
    REPORT  ZGSCREEN no standard page heading
    tables :zgtable,sscrfields.
    data:begin of itable occurs 0,
         mandt like zgtable-mandt,
         trackid like zgtable-trackid,
         artist like zgtable-artist,
         end of itable.
    selection-screen begin of block block1 with frame title txt1.
    parameters:trackid(15) type n, *I changed from trackid like zgtable-trackid
               artist(30) type c.
    selection-screen skip 5.
    selection-screen begin of line.
    selection-screen pushbutton (20) but1 user-command but1.
    selection-screen position 25.
    selection-screen pushbutton (8) but2 user-command but2.
    selection-screen position 38.
    selection-screen pushbutton (10) but3 user-command but3.
    selection-screen position 55.
    selection-screen pushbutton (10) but4 user-command but4.
    selection-screen end of line.
    selection-screen end of block block1.
    initialization.
    but1 = 'Save to Dbase'.
    but2 = 'Clear'.
    but3 = 'Update'.
    but4 = 'Exit'.
    at selection-screen.
    *move 800 to itable-mandt.
    move trackid to itable-trackid.
    move artist to itable-artist.
    append itable.
    if sscrfields-ucomm eq'BUT1'.
      insert zgtable from itable.
      commit work.
    endif.
    if sscrfields-ucomm eq 'BUT4'.
    leave program.
    endif.
    The problem it that my program is working well now.I added a record Trackid:2 Artist:Gopi Kumaran and clicked 'save to database',it saved.Then again changed trackid 2 to 3 and Gopi kumaran to A R Rehman,clicked 'save to database' (without quiting the screen).I get a run time error 'The ABAP/4 Open SQL array insert results in duplicate database records'.I dont know why.That is first time the record is adding,if i repeat it without quitting the screen the error is coming.Anyhow I tried commenting 'move 800 to itable-mandt'.The error says duplicate record.I dont know why.

    Hi Gopi.,
    Try this.
    Whenever you insert values to the table, you have enqueue and dequeue the table .
    **- Lock the table for updation
      CALL FUNCTION 'ENQUEUE_E_TABLEE'
        EXPORTING
          mode_rstable   = 'E'
          tabname        = 'ZGTABLE'
        EXCEPTIONS
          foreign_lock   = 1
          system_failure = 2
          OTHERS         = 3.
    IF sy-subrc <> 0.
    ENDIF.
    **- Updating the values in the afterbilled table.
      MODIFY zgtable FROM TABLE itable.
      COMMIT WORK.
    **- Unlock the table after Updation.
      CALL FUNCTION 'DEQUEUE_E_TABLEE'
        EXPORTING
          mode_rstable = 'E'
          tabname      = 'ZGTABLE'.
    Reward If Useful.
    Regards,
    Chitra.

  • Runtime Errors         ITAB_DUPLICATE_KEY ABAP Program           CL_BSP_WD_REPOSITORY==========CP

    We are doing the CRM Upgrade from EHp1 to EHp3
    after running the TC: WCF_CC as post upgrade activity
    Enhancement Set      ZXXX  and UI Component BP_ADDR  i got a short dump while trying to open the views in the component workbench as following
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "CL_BSP_WD_REPOSITORY==========CP" had to be
         terminated because it has    come across a statement that unfortunately cannot be executed.
    Error analysis
        An attempt was made to insert an entry into table
         "\CLASS=CL_BSP_WD_REPOSITORY\METHOD=CREATE_INSTANCE_FROM_XML\DATA=LT_VIEWS".
         Updating
        unique table key "PRIMARY_KEY" resulted in a duplicate entry however. The key
         in
        question could be either the primary key or a secondary key.
        The key components of the duplicate entry have the values "{BP_A;X}" " " " "
        With primary keys, termination can occur during block insert
        operations. The can affect numerious statements, for example
        (1) MOVE
        (2) INSERT/APPEND ... LINES OF ... INTO/TO
        (3) SELECT ... INTO/APPENDING ...
        With secondary keys, termination can also occur due to a single record
        insert operation. In particular, the following modifying statements can
        cause the system to terminate due to duplicate key values as soon as
        the key is used again (delayed update):
     Please advice me how to solve it

    Hello Madhuri,
    Can you please deactivate your enhancement via setting user parameter WCF_IGNORE_ENHANCEMT =A using transaction code SU3? Then retest the issue? If it's works, then the error is happening due to your enhancement.
    If the error persist please check if note 1941320 can be applied in your system.
    thanks
    Willie

  • HT1751 Hi I am unable to open my iTunes at all. A box stating "Runtime Error appears with Program C:/Program Files (x86) iTunes/iTunes R6034 shows up, please help

    I am unable to open my iTunes. A box appears "Run time Error" Program C:/Program Files (x86) iTunes/iTunes
    Please help me

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • Runtime Error (My VC++ program not responding)

    I wrote a VC++ program to send out voltage output to controller. The call function is like shown below:
    volt(double Vx, double Vy);
    I am using SingleAO in my VI and not DAQmx because the controller doesnt support it.
    When my program runs, it is okay but after awhile it doesnt respond. My program calling the function is a loop.
    My questions are:
    1) Is there a max number of function can be called?
    2) Any possible reason why my program hangs?
    Thanks

    Hi jw81,
    Without seeing all of your code, it is difficult to say why you are getting the error.
    My first question would be why wouldn't your controller support NI-DAQmx? Since you are programming in C, all you would need to do is download NI-DAQ 7.3 and install it. With NI-DAQ 7.3, you will be given a C API to program NI-DAQmx. You can get NI-DAT 7.3 here:
    http://digital.ni.com/softlib.nsf/websearch/BEC182021CEB566C86256EEE00696562?opendocument&node=132060_US
    If you still wish to program in Traditional NI-DAQ I would suggest you start with one of the shipping examples. See if you can get them to work. If not, let me know which example you are using and what error you are getting.
    Traditional C examples: C:\Program Files\National Instruments\NI-DAQ\Examples\VisualC
    -Sal

Maybe you are looking for

  • Error while running Ztransaction !

    Hi Friends,     In one requirement i need to copy the program of standard t-code MD06 and i have to assign a custom t-code(zmd06). but while running ZMD06, i got the following error.   "Argument ZMD06 not in Table T450N ". even I copied the field val

  • Suddenly many tracks from external drive mislabeled / replaced.

    I have my library on an external hard drive. This evening I noticed that many songs (hundreds at least) are suddenly mislabelled - that is: one song plays as another. I click on an album to play a particular track and a completely different song play

  • Not able to clear entries at Advance a/c

    Hello Experts i am facing problem in F-32 user has done  down payment clearing  in F-32  at 29/02/2009 1000000 in EURO (Do No.1100029324) now he is trying to clear down payment in F-32  with referenec of Do No.1100029324 in EURO Here EURO amount will

  • Bordercontainer into .jpg file using php

    hi i have done one bordercontaine using flex 4. that bordercontainer contain one image and label i want to store that bordercontainer into jpg using php file I give my mxml file and php newflexphp.mxml <?xml version="1.0" encoding="utf-8"?> <s:Applic

  • Searching Archived Messages

    Hi Frnds, Is there any way to filter the archived messages.. When i got for sxmb_moni and archived xmls(using archive),i could see only message id's .. i want to search the messages of a particular interface in the archive.. Can we search it like tha