Internal table max records

Dear all,
a very simple question. What is the maximum of records during runtime in an internal table.
kind regards
Wolfgang

An internal table can contain max of 2GB data with it.
But by applying some patches this limit can increase upto 4 GBs.
You can get information about it on https://service.sap.com
Regards,
Roshani

Similar Messages

  • Internal table maximum records when occurs 0

    hi experts,
    i am using the internal table upload data,
    at a time it can hold only 10000 recods only ?
    how can i capture more than this.
    thanks&regards,
    srinivas

    Try this way.
    Create a structure with TYPES statement,
    Create internal Table & work area with DATA statement.
    Eg:-
    TYPES : BEGIN OF ty_itab,
                    field1 TYPE mara-matnr,
                    field2 TYPE mara-mtart,
                  END OF ty_itab.
    DATA : it_itab TYPE TABLE OF ty_itab,
                wa_itab TYPE ty_itab.
    Now fill the records into that internal table.
    When you want to read use
    LOOP AT it_ita INTO wa_itab.
    ENDLOOP.
    Regards
    Bala Krishna

  • Internal table - move record to first record in table

    How can a move a record already in an internal table to the first record in the table? There is no appropriate sort that would make it the first record.

    Assuming the record is in the header:
    delete itab.
    insert itab index 1.
    That should be - assuming sy-index already points to the record you want to move.
    Rob
    Message was edited by: Rob Burbank

  • External table max record length check

    This question is regarding fixed length input file.
    I am checking to see if it is possible to add a check to verify the max length of a record when defining an external table.
    For example, if I am expecting a fixed length file with max record/row length of 100, is it possible to reject lines in the
    file that are more than 100 characters long?
    Thanks.

    What you can do is something like:
    DROP TABLE TBL_EXT
    CREATE TABLE TBL_EXT(
                         VAL       VARCHAR2(4),
                         INDICATOR VARCHAR2(1)
      ORGANIZATION EXTERNAL(
                            TYPE ORACLE_LOADER
                            DEFAULT DIRECTORY TEMP
                            ACCESS PARAMETERS (
                                               FIELDS TERMINATED BY ','
                                               OPTIONALLY ENCLOSED BY '"'
                                               MISSING FIELD VALUES ARE NULL
                                               REJECT ROWS WITH ALL NULL FIELDS
                                                VAL       POSITION(1:4),
                                                INDICATOR POSITION(5:5) CHAR NOTRIM
                            LOCATION ('tbl_ext.txt')
    SELECT  *
      FROM  TBL_EXT
      WHERE INDICATOR IS NULL
    {code}
    Now tbl_ext.txt:
    {code}
    X
    XX
    XXX
    XXXX
    XXXX    XXXXXX
    XXXX    <-- this line has trailing spaces
    XXX
    XX
    X
    {code}
    Now:
    {code}
    SQL> CREATE TABLE TBL_EXT(
      2                       VAL       VARCHAR2(4),
      3                       INDICATOR VARCHAR2(1)
      4                      )
      5    ORGANIZATION EXTERNAL(
      6                          TYPE ORACLE_LOADER
      7                          DEFAULT DIRECTORY TEMP
      8                          ACCESS PARAMETERS (
      9                                             FIELDS TERMINATED BY ','
    10                                             OPTIONALLY ENCLOSED BY '"'
    11                                             MISSING FIELD VALUES ARE NULL
    12                                             REJECT ROWS WITH ALL NULL FIELDS
    13                                             (
    14                                              VAL       POSITION(1:4),
    15                                              INDICATOR POSITION(5:5) CHAR NOTRIM
    16                                             )
    17                                            )
    18                          LOCATION ('tbl_ext.txt')
    19                         )
    20  /
    Table created.
    SQL> SELECT  *
      2    FROM  TBL_EXT
      3    WHERE INDICATOR IS NULL
      4  /
    VAL  I
    X
    XX
    XXX
    XXXX
    XXX
    XX
    X
    7 rows selected.
    SQL> As you can see, lines 'XXXX XXXXXX' and 'XXXX    ' were not selected since WHERE INDICATOR IS NULL for these rows results in FALSE.
    SY.

  • Internal table to XLS to email

    Hi,
    A lot of postings here and on other SAP communities are talking about email and attachment issues. But a proper answer to my problem i haven't found yet.
    Problem : i'm having an internal table (with text, amount, currencies, dates, so different formats) and i want to send it as a 'real' excel file (not as tab delimited or csv file, but as real excel with the correct formats) to an email receiver. The columns with amount and currencies should work correctly after opening the file in Excel.
    The main problem is to convert the internal table to an binary internal table (max record length 255) of type excel. By the way, i also need it in background.
    I don't know if the MIME format is binary, but a convert from internal table to MIME (corresponding to the excel attachment) is also possible ?
    regards,
    Hans
    [email protected]

    Sorry for the late answer.
    You don't need a WAS java stack to run a java programm on your server.
    Follow these steps:
    1) Install a java runtime environment (jre) on the filesystem of your server (take care of rights for executing)
    2) Write a java programm on your pc, that uses an excel library mentioned before. It should get a source filename as parameter. Deploy it to your server. Write a batch command to execute the program like this "java your_program your_parameter"
    3) Extract your tabulary data from within abap and write it to a csv - file (comma separated value) on your server
    4) Send an event from within abap (uh oh)
    5) On event, call a batch command from within your server OS and run the java program with the filename you created before (uh oh).
    As you can see, it's is not easy to do that, but it should work. In my opinion, it is a very ugly way to solve the problem.
    I don't know, if abap supports a SPAWN routine like C or C++. This could be an easier way to call a program on your server from within abap.
    On a WAS 640 there is a java stack if you to install it. There you can implement a java based utility service (servlet) that converts your data to excel.
    Another opinion: Use another j2ee servlet server (i.e. apache tomcat, works fine, no license fee). You can install it on your sap server or on another maschine.
    Good luck and kind regards,
    Andreas

  • Division of internal table records

    Dear all
    How can I observe that how many record my internal table got record and how can I divide into by lines
    for ex.
              SELECT SINGLE pvprs FROM ckmlcr INTO sum_pvprs-pvprs
                WHERE poper EQ s_poper AND
                   kalnr = itab2-kalnr AND
                   bdatj = itab2-bdatj AND
                   curtp = itab2-curtp.
              IF sy-subrc = 0.
                APPEND sum_pvprs.
    I want to get arithmetic range of this sum_pvprs-pvprs
    Actually I want to get number of lines and their summations
    pvprs1= 10 pvprs=20 pvprs=30 and then
    after I got this results 102030 = 60 /3 =20 I need this operation.
    All the best
    Message was edited by: yusuf tunay çilesiz

    I am not sure what do you mean by arithmetic range...if you mean min and max numbers you can use the below logic.
    SELECT SINGLE pvprs FROM ckmlcr INTO sum_pvprs-pvprs
    WHERE poper EQ s_poper AND
    kalnr = itab2-kalnr AND
    bdatj = itab2-bdatj AND
    curtp = itab2-curtp.
    IF sy-subrc = 0.
    APPEND sum_pvprs.
    1. you can simply sort the sum_pvprs internal table...on pvprs first ascending and than descending to get the min and max numbers by reading the first record of the internal table.
    REad table sum_pvprs index 1.
    2. you can have two variables lmin and lmax and initialise the same before you append statement.
    if sum_pvprs-pvprs > lmax.
      lmax  = sum_pvprs-pvprs.
    endif.
    if sum_pvprs-pvprs < lmin.
      lmin  = sum_pvprs-pvprs.
    endif.
    <u><b>Sum and Average.</b></u>
    SELECT SINGLE pvprs FROM ckmlcr INTO sum_pvprs-pvprs
    WHERE poper EQ s_poper AND
    kalnr = itab2-kalnr AND
    bdatj = itab2-bdatj AND
    curtp = itab2-curtp.
    IF sy-subrc = 0.
    <b>l_sum = sum_pvprs-pvprs + l_sum.</b>
    APPEND sum_pvprs.
    ENDSELECT.
    <b>DESCRIBE TABLE sum_pvprs LINES lrec.
    lavg = l_sum / lrec.</b>
    Message was edited by: Anurag Bankley

  • How to update Records from Internal table to u2018Zu2019 table?

    Hi Friends,
    How to update Records from Internal table to u2018Zu2019 table.
    I have records in Internal table , that records want to update on u2018Zmarau2019 Table.
    ( my internal table & u2018 Zu2019 table structures are same.)
    Thanking you.
    Regards,
    Subash

    Hi,
    loop at internal table.
    modify <Z- table > from values < internal table Workarea>.
    if sy-subrc = 0.
      COMMIT work.
    else.
      ROLLBACK waork.
    endif.
    endloop.
    or
    UPDATE <Z- table > from table < internal table Workarea>.
    if sy-subrc = 0.
      COMMIT work.
    else.
      ROLLBACK waork.
    endif.
    Prabhudas

  • Store the vital info from the absence quota record in an internal table

    Hi experts,
    I want to detrmine if the Absence record’s (PA2001 rec) deduction from date (PA2001-BEGDA) and absence to date (PA2001-ENDDA) are permissible for the validity period of the Absence Quota record (the PA2006 rec).  If the quota’s deduction from date, PA2006-DESTA, is greater than the PA2001-BEGDA, we then need to identify this absence quota record for change and change the deduction from date, PA2006-DESTA, to be the same as PA2001-BEGDA.  Store the vital info from the absence quota record in an internal table and record the new date that the deduction from date that needs to be changed to.  The changes will be made via a BDC session.
    Please help me out...
    Thanks,
    Vicky

    This looks possible if we code it in 'dynamic action' table, but the BDC may not read it during run time.
    Do you still have this issue?
    Thanks
    Narasimha

  • Internal table record checking (Urgent)

    Hi Experts,
    I have an internal table having records. I want to check each record of the table with every other record to find out if there exist same record for more then one key field.
    Can anybody help me to place the logic for how i can check the records with each record? Like
    lifnr     banks
    1         12
    2         34
    3         12
    4         12
    5          76
    I want to find out 1,3 and 4.
    Thanks a ton in advance

    Hi Moni,
    IF in my First Reply the Second technique was working then this should solve your Problem:
    DATA:
      w_index TYPE i,
      w_lines TYPE i,
      w_duplicate(10) TYPE c.
    DESCRIBE itab LINES w_lines.
    LOOP AT itab INTO wa.
      w_index = sy-tabix + 1.
      DO. 
      READ TABLE itab INTO wa1 INDEX w_index.
        IF w_index <= w_lines.
          IF wa-banks EQ wa1-banks.
            CONCATENATE w_duplicate wa1-lifnr INTO w_duplicate SEPARATED BY SPACE.
            wa-duplicate = w_duplicate.
            MODIFY itab FROM wa.
          ENDIF.
        ELSE.
          EXIT.
        ENDIF.
       ADD 1 TO w_index.
      ENDDO.
    ENDLOOP.
    LOOP AT itab INTO wa.
      write:
        / wa-lifnr,
          wa-banks,
          wa-duplicates.
    ENDLOOP.
    ELSE try the below code it is same as above except one more Internal Table is used:
    DATA:
      w_index        TYPE i,
      w_lines        TYPE i,
      jtab            LIKE itab,
      w_duplicate(10) TYPE c.
    DESCRIBE itab LINES w_lines.
    LOOP AT itab INTO wa.
      w_index = sy-tabix + 1.
      DO. 
      READ TABLE jtab INTO wa1 INDEX w_index.
        IF w_index <= w_lines.
          IF wa-banks EQ wa1-banks.
            CONCATENATE w_duplicate wa1-lifnr INTO w_duplicate SEPARATED BY SPACE.
            wa-duplicate = w_duplicate.
            MODIFY itab FROM wa.
          ENDIF.
        ELSE.
          EXIT.
        ENDIF.
       ADD 1 TO w_index.
      ENDDO.
    ENDLOOP.
    LOOP AT itab INTO wa.
      write:
        / wa-lifnr,
          wa-banks,
          wa-duplicates.
    ENDLOOP.
    Regards,
    Sunil.

  • How to know the internal table's last record

    Dear friends,
    Just I want to know my internal table last records, Ex:
    I am having the records in my internal table like this:
    Itab-col1
    1
    2
    3
    4
    5
    6
    7
    8
    9
    I want to know and print the last record, it maybe n number of records in my itab.
    If I used at last within a loop but it dosn't work its taking the all *** in header.
    How to know which is the last record in my internal table.
    Thanks,
    Sridhar.

    hi,
    sridher reddy
    1st describe ur table i.e read the number of entries in the table .....
    data : count type i.
    DESCRIBE TABLE <table name > LINES count.
    READ TABLE <table name > INDEX count.
    write : <table name>-<fieldname>.......... .
    by this way u can print the last record of your table

  • How to prepare excels  based on records of internal table.

    Hi abapers,
    I have a scenario as follows:
    In my internal table the records are as follows.
    col1   col2        col3
    1        a1          b1
    2        a2          b1
    3        a3          b2
    4        a4          b3.
    Now want i need is i have to break the records on the basis of  col3 . All b1 rows  are to be taken and dumped in a excel. b2 rows are to be taken and dumped in an excel and similarly for b3. And the name of excel will should be b1, b2 , b3 respectively.
    How do i go for the case?
    Help would be appreciated..
    Regards,
    Navin C
    Edited by: navin.c on Jun 12, 2009 7:41 AM

    put col3 as the first field in your itab.
    TYPES:BEGIN OF ty3,
    col3(3) TYPE c,
    col2(3) TYPE c,
    col1(3) TYPE c,
    END OF ty3.
    DATA:itab3 TYPE TABLE OF ty3.
    DATA:it_xl TYPE TABLE OF ty3.
    DATA:wa3 TYPE ty3.
    DATA:file_name TYPE string.
    SORT itab3 BY col3.
    LOOP AT itab3 INTO wa3.
      APPEND wa3 TO it_xl.
      AT END OF col3.
        READ TABLE itab3 INTO wa3 INDEX sy-tabix.
        CHECK sy-subrc = 0.
        file_name  = wa3-col3.
        PERFORM download_xl USING file_name.
        REFRESH it_xl.
      ENDAT.
    ENDLOOP.
    *&      Form  download_xl
    *       text
    *      -->P_FILE     text
    FORM download_xl USING p_file type any.
      DATA:lv_path TYPE string VALUE 'c:\'.
      CONCATENATE lv_path  p_file '.xls' INTO p_file.
      CONDENSE p_file NO-GAPS.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          filename              = p_file
          filetype              = 'DAT'
          write_field_separator = '#'
        TABLES
          data_tab              = it_xl.
    ENDFORM.                    "download_xl

  • FM to download internal table to excel

    Hi all,
         I want to download my internal table into excel sheet. For this i am using FM
    <b>GUI_DOWNLOAD</b>. But in my internal table each record is of around <b>400</b> char. length. I think because of this the downloaded <b>content is not proper</b> i.e. in junk format. Please sugest some solution for this.
    Regards,
    Vinod.

    Hi Vinod,
    Try this program.Just copy and paste this program....
    REPORT zpck_download_to_excel .
    INCLUDE ole2incl.
    DATA: w_cell1 TYPE ole2_object,
               w_cell2 TYPE ole2_object.
    *--- Ole data Declarations
    DATA: h_excel TYPE ole2_object,      " Excel object
          h_mapl TYPE ole2_object,       " list of workbooks
          h_map TYPE ole2_object,        " workbook
          h_zl TYPE ole2_object,         " cell
          h_f TYPE ole2_object,          " font
          gs_interior TYPE ole2_object,  " Pattern
          worksheet TYPE ole2_object,
          h_cell TYPE ole2_object,
          h_cell1 TYPE ole2_object,
          range TYPE ole2_object,
          h_sheet2 TYPE ole2_object,
          h_sheet3 TYPE ole2_object,
          gs_font TYPE ole2_object,
          flg_stop(1) TYPE c.
    Internal table Declaration
    DATA : t_excel_t076m LIKE t076m OCCURS 0 WITH HEADER LINE.
    TYPES: data1(1500) TYPE c,
           ty TYPE TABLE OF data1.
    DATA: it TYPE ty WITH HEADER LINE,
          it_2 TYPE ty WITH HEADER LINE.
    DATA: rec TYPE sy-tfill,
          deli(1) TYPE c,
          l_amt(18) TYPE c.
    DATA: BEGIN OF hex,
            tab TYPE x,
          END OF hex.
    DATA: l_rc TYPE i.
    FIELD-SYMBOLS: <fs> .
    CONSTANTS cns_09(2) TYPE n VALUE 09.
    ASSIGN deli TO <fs> TYPE 'X'.
    hex-tab = cns_09.
    <fs> = hex-tab.
    DATA gv_sheet_name(20) TYPE c .
    M A C R O Declaration
    DEFINE ole_check_error.
      if &1 ne 0.
        message e002(zz) with &1.
        exit.
      endif.
    END-OF-DEFINITION.
    Fetching Data
    SELECT * FROM t076m INTO TABLE t_excel_t076m.
    LOOP AT t_excel_t076m.
      CONCATENATE
              t_excel_t076m-parart
              t_excel_t076m-konto
              t_excel_t076m-mwart
              t_excel_t076m-mwsatz
              t_excel_t076m-land1
              t_excel_t076m-mwskz
              INTO it
              SEPARATED BY deli.
      APPEND it.
      CLEAR it.
    ENDLOOP.
    IF h_excel-header = space OR h_excel-handle = -1.
    start Excel
      CREATE OBJECT h_excel 'EXCEL.APPLICATION'.
    ENDIF.
    *--- get list of workbooks, initially empty
    CALL METHOD OF h_excel 'Workbooks' = h_mapl.
    SET PROPERTY OF h_excel 'Visible' = 1.
    add a new workbook
    CALL METHOD OF h_mapl 'Add' = h_map.
    Name of the T076
    gv_sheet_name = 'T076M'.
    GET PROPERTY OF h_excel 'ACTIVESHEET' = worksheet.
    SET PROPERTY OF worksheet 'Name' = gv_sheet_name .
    CALL METHOD cl_gui_frontend_services=>clipboard_export
      IMPORTING
        data = it[]
      CHANGING
        rc = l_rc
      EXCEPTIONS
        cntl_error = 1
        error_no_gui = 2
        OTHERS = 4.
    Get the First row and col
    CALL METHOD OF h_excel 'Cells' = w_cell1
      EXPORTING
        #1 = 1
        #2 = 1.
    Get the 255 row and col
    CALL METHOD OF h_excel 'Cells' = w_cell2
      EXPORTING
        #1 = 5000
        #2 = 6.
    Select the Data
    CALL METHOD OF h_excel 'Range' = range
      EXPORTING
        #1 = w_cell1
        #2 = w_cell2.
    CALL METHOD OF range 'Select'.
    CALL METHOD OF worksheet 'Paste'.
    *--- disconnect from Excel
    FREE OBJECT h_zl.
    FREE OBJECT h_mapl.
    FREE OBJECT h_map.
    FREE OBJECT h_excel.
    Hope it helps you.
    Reward points if helpful.
    Regards,
    Chitra.

  • Set operations on Internal tables.

    Hi,
      Last week i had to enhance a program that has a internal table with some records. I need to find populate a table with the records in the internal table. But before populating i must find out the difference in the records (i.e) the extra records in the internal table compared with the records in the database table and then i have to append those records in the internal table again and then insert the internal table records into database table. while doing it i need to create another internal table with records in database table and then loop at it to find the extra records and rest of the logic goes on.
      At this point of time it clicked in my mind "WHY DON'T WE HAVE SET OPERATIONS ON TWO INTERNAL TABELS(UNION, INTERSECTION, MINUS)".
      Now i am doing some study how to implemnt it. Before that i want to find out whether that functionality exists in ABAP or anybody of youo gurus have done similar work on it.
    Pls help me in proceeding with my work.

    Hi Arul,
    There is no special aided SET operations upon internal tables in ABAP. Concerning your particular task I would say that you can try INSERT statement for each record in your internal table without preliminary comparing them with DB table. If there is a record in DB table with the same key then sy-subrc after INSERT will be non zero (actually 4) and no real insert would occur. So, only those records would be inserted which have no counterpart in DB table.
    Best regards, Sergei

  • FROM EXCEL FILE TO INTERNAL TABLE

    HI GURU'S,
    i'm using the following code to conver the excel file into internal table.
    CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
        EXPORTING
         I_FIELD_SEPERATOR          = 'X'
        I_LINE_HEADER              =
          I_TAB_RAW_DATA             = IT_TAB_RAW_DATA
          I_FILENAME                 = P_FILE
        TABLES
          I_TAB_CONVERTED_DATA       = IT_MM01
       EXCEPTIONS
         CONVERSION_FAILED          = 1
         OTHERS                     = 2
    What is the exact format for the to send the Excel File.
    My requirement is the Excel file contains the several fields , that should be stored as a records in the internal table
    My problem is when i send the data in the excel file as one column, i'm getting all the data in the first column of the Internal Table.
    If i send the data in the excel file as a record it is not filling the internal table.
    what is the problem??/
    if the Excel files contain multiple records is it able to convert the data into internal table records.
    Regards,
    Adi.

    **Internal Table to hold the records in the text file
    Hello Adi,
    Put the fields in excel in the same format in which u want in ur internal table(here record)
    U can refer the following code.
    data: begin of record occurs 0,
          General Data
    data element: BUKRS
            bukrs_001(004), " Company Code
    data element: EKORG
            ekorg_002(004), " Purchase Orgn
    data element: KTOKK
            ktokk_003(004), " Account Group
        end of record.
    Internal Table
    data:it_excel like table of alsmex_tabline with header line.
    **SELECTION-SCREEN**
    selection-screen begin of  block blk.
    parameters: p_file like rlgrap-filename default 'c:\vendor_creation.xls'
    selection-screen end of block blk.
    A T   S E L E C T I O N - S C R E E N   O U T P U T
    ***************START*********************** F4 Help for field p_file
    at selection-screen on value-request for p_file.
    call function 'KD_GET_FILENAME_ON_F4'
    exporting
       program_name        = syst-repid
       dynpro_number       = syst-dynnr
      FIELD_NAME          = ' '
      STATIC              = ' '
      MASK                = ' '
      changing
        file_name           = p_file
    EXCEPTIONS
      MASK_TOO_LONG       = 1
      OTHERS              = 2
    if sy-subrc <>  0.
    message e006(zhnc).
    endif.
    S T A R T - O F - S E L E C T I O N
    start-of-selection.
    data : vf_index type i.
    data : vf_start_col type i value '1',      "start column
             vf_start_row type i value '4',    "start row
             vf_end_col   type i value '200',  "maximum column
             vf_end_row   type i value '2500', "maximum row
             p_text(20).                       "stores error messages
    */ Work Area
    data: wa_intern like it_excel.
    */ Field symbol
    field-symbols : <fs>.
    *********Fn Module to convert the excel file data into internal table
    call function 'ALSM_EXCEL_TO_INTERNAL_TABLE'
      exporting
        filename                      =  'c:\vendor_creation.xls'
        i_begin_col                   =  vf_start_col
        i_begin_row                   =  vf_start_row
        i_end_col                     =  vf_end_col
        i_end_row                     =  vf_end_row
      tables
        intern                        = it_excel
    exceptions
       inconsistent_parameters       = 1
       upload_ole                    = 2
       others                        = 3.
    if sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
      if it_excel[] is initial.
        p_text = 'No Data Uploaded'.
      else.
      sort it_excel by row col.
          loop at it_excel.
          move : it_excel-col to vf_index.
          assign component vf_index of structure record to <fs>.
          move : it_excel-value to <fs>.
          at end of row.
            append record.
            clear record.
          endat.
          endloop.
      endif.
    In case of any problem u  can revert back.
    Aastha

  • Compare 2 internal tables

    Hi all,
    I have 2 internal tables containing records from 2 different database tables.
    How can i compare the 2 internal tables and produce result that the record exists in one table
    but not in the second table.
    Thanks,
    Reddy.

    Re: Comparing Internal Tables
    loop at table1.
    read table table2 where pmkey = pmkey2.
    IF SY-SUBRC = 0.
    delete table1.
    ENDIF.
    endloop.
    The above code removes the data from new table...

Maybe you are looking for

  • Automator Rename Finder Items NOT working in Leopard

    I used to be able to Replace Text in filenames, as you would expect with Automator, now my old or new Automator actions don't work for this, whether I run them as a Finder plugin or from the Automator Run button... Anyone else have this problem, or b

  • Export to excel problem

    My code is: DECLARE      rr varchar(20);      ss varchar(20);      oo varchar(20); appid pls_integer; convid pls_integer; x number; nm number:=1; rowcol varchar(20); cursor mm is select * from rawticket_voip; BEGIN appid :=dde.app_begin('C:\Program F

  • Why does my email inbox say I have unread messages, when I know for a fact that I don't?

    I know it probably shouldn't bother me, but I can't stand the little red figure notification bubble on my apps. Therefore, I always read all of my emails and update my apps on time to avoid any red bubbles. Yet, what i don't understand is why my mail

  • Characters chopped off when using 'ps -ef'

    Hello all: When I monitor a java process, I use this commond: ps -ef | grep MyJavaServiceit appears that MyJavaService has a long jar file list prepended as the classpath, the above command didn't show all the file names on the console - it's chopped

  • Why can't I get Aperture to open on a second account on the same computer?

    I have two accounts on mt Mac Pro, one will open Aperture, the other will not as it says I need to 'set permissions'. I opened Aperture on the primary account and looked for ways of setting permissions, but couldn;t find any. Any advice anyone can of